My dotfiles. Period.

i3status.conf 981B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  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 = 10
  25. hide_seconds = true
  26. }
  27. tztime local {
  28. format = "%Y-%m-%d %H:%M"
  29. }
  30. disk "/home" {
  31. format = "~:%avail"
  32. }
  33. volume master {
  34. format = "♪%volume"
  35. format_muted = "♪--%%"
  36. device = "default"
  37. mixer = "Master"
  38. mixer_idx = 0
  39. }