My dotfiles. Period.

i3status.conf 1016B

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