My dotfiles. Period.

i3status.conf 1.8KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980
  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. }
  11. order += "battery 0"
  12. order += "battery 1"
  13. order += "load"
  14. order += "cpu_usage"
  15. order += "disk /var/lib/libvirt/images"
  16. order += "disk /"
  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. battery 1 {
  34. format = "%status%percentage"
  35. format_down = "✕"
  36. status_unk = ""
  37. status_chr = "↑"
  38. status_bat = "↓"
  39. status_full = ""
  40. path = "/sys/class/power_supply/BAT%d/uevent"
  41. low_threshold = 5
  42. threshold_type = percentage
  43. hide_seconds = true
  44. integer_battery_capacity = true
  45. }
  46. tztime local {
  47. format = "%Y-%m-%d %H:%M"
  48. }
  49. disk "/var/lib/libvirt/images/" {
  50. format = "virt:%avail"
  51. threshold_type = "gbytes_avail"
  52. low_threshold = 2
  53. }
  54. disk "/" {
  55. format = "/:%avail"
  56. threshold_type = "gbytes_avail"
  57. low_threshold = 2
  58. }
  59. disk "/home" {
  60. format = "~:%avail"
  61. threshold_type = "gbytes_avail"
  62. low_threshold = 2
  63. }
  64. volume master {
  65. format = "♪%volume"
  66. format_muted = "♩--%%"
  67. device = "default"
  68. mixer = "Master"
  69. mixer_idx = 0
  70. }