My dotfiles. Period.

i3status.conf 1.6KB

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