My dotfiles. Period.

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566
  1. # i3status configuration file.
  2. # see "man i3status" for documentation.
  3. # It is important that this file is edited as UTF-8.
  4. # The following line should contain a sharp s:
  5. # ß
  6. # If the above line is not correctly displayed, fix your editor first!
  7. general {
  8. colors = true
  9. interval = 5
  10. output_format = i3bar
  11. }
  12. # order += "battery 0"
  13. order += "load"
  14. order += "cpu_usage"
  15. order += "disk /"
  16. order += "disk /home.sync"
  17. order += "disk /home"
  18. # order += "volume master"
  19. order += "tztime local"
  20. # battery 0 {
  21. # format = "%status%percentage"
  22. # format_down = "✕"
  23. # status_unk = ""
  24. # status_chr = "↑"
  25. # status_bat = "↓"
  26. # status_full = ""
  27. # path = "/sys/class/power_supply/BAT%d/uevent"
  28. # low_threshold = 30
  29. # threshold_type = percentage
  30. # hide_seconds = true
  31. # integer_battery_capacity = true
  32. # }
  33. tztime local {
  34. format = "(w%V,d%u) %Y-%m-%d %H:%M"
  35. }
  36. disk "/" {
  37. format = "/:%avail"
  38. threshold_type = "gbytes_avail"
  39. low_threshold = 2
  40. }
  41. disk "/home.sync" {
  42. format = "s:%avail"
  43. threshold_type = "gbytes_avail"
  44. low_threshold = 2
  45. }
  46. disk "/home" {
  47. format = "~:%avail"
  48. threshold_type = "gbytes_avail"
  49. low_threshold = 2
  50. }
  51. volume master {
  52. format = "♪%volume"
  53. format_muted = "♩--%%"
  54. device = "default"
  55. mixer = "Master"
  56. mixer_idx = 0
  57. }