My dotfiles. Period.

i3status.conf 1.4KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  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 /home"
  16. order += "volume master"
  17. order += "tztime local"
  18. battery 0 {
  19. format = "%status %percentage %remaining"
  20. format_down = "፧B0"
  21. status_chr = "⚇C0"
  22. status_bat = "⚡B0"
  23. status_full = "☻F0"
  24. path = "/sys/class/power_supply/BAT%d/uevent"
  25. low_threshold = 30
  26. threshold_type = percentage
  27. hide_seconds = true
  28. integer_battery_capacity = true
  29. }
  30. battery 1 {
  31. format = "%status %percentage %remaining"
  32. format_down = "፧B1"
  33. status_chr = "⚇C1"
  34. status_bat = "⚡B1"
  35. status_full = "☻F1"
  36. path = "/sys/class/power_supply/BAT%d/uevent"
  37. low_threshold = 5
  38. threshold_type = percentage
  39. hide_seconds = true
  40. integer_battery_capacity = true
  41. }
  42. tztime local {
  43. format = "%Y-%m-%d %H:%M"
  44. }
  45. disk "/home" {
  46. format = "~:%avail"
  47. }
  48. volume master {
  49. format = "♪%volume"
  50. format_muted = "♪--%%"
  51. device = "default"
  52. mixer = "Master"
  53. mixer_idx = 0
  54. }