My dotfiles. Period.

i3status.conf 1.0KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  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 += "load"
  13. order += "cpu_usage"
  14. order += "disk /home"
  15. order += "volume master"
  16. order += "tztime local"
  17. battery 0 {
  18. format = "%status %percentage %remaining"
  19. format_down = "፧B0"
  20. status_chr = "⚇C0"
  21. status_bat = "⚡B0"
  22. status_full = "☻F0"
  23. path = "/sys/class/power_supply/BAT%d/uevent"
  24. low_threshold = 30
  25. threshold_type = percentage
  26. hide_seconds = true
  27. integer_battery_capacity = true
  28. }
  29. tztime local {
  30. format = "%Y-%m-%d %H:%M"
  31. }
  32. disk "/home" {
  33. format = "~:%avail"
  34. }
  35. volume master {
  36. format = "♪%volume"
  37. format_muted = "♪--%%"
  38. device = "default"
  39. mixer = "Master"
  40. mixer_idx = 0
  41. }