config 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  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 += "load"
  12. order += "disk /"
  13. order += "ipv6"
  14. order += "wireless _first_"
  15. order += "ethernet _first_"
  16. order += "volume master"
  17. order += "battery 0"
  18. order += "tztime local"
  19. wireless _first_ {
  20. format_up = "⌔ (%quality at %essid) %ip"
  21. format_down = "⌔×"
  22. }
  23. ethernet _first_ {
  24. # if you use %speed, i3status requires root privileges
  25. format_up = "⇵ %ip (%speed)"
  26. format_down = "⇵×"
  27. }
  28. battery 0 {
  29. format = "%status %percentage %remaining"
  30. hide_seconds = true
  31. format_down = "×"
  32. status_chr = "⍐"
  33. status_bat = "⍗"
  34. status_unk = "⍰"
  35. status_full = "⌼"
  36. path = "/sys/class/power_supply/BAT%d/uevent"
  37. low_threshold = 10
  38. }
  39. tztime local {
  40. format = "%a %-d %b <%V> %H:%M"
  41. }
  42. load {
  43. format = "%1min"
  44. }
  45. disk "/" {
  46. format = "%avail"
  47. }
  48. volume master {
  49. format = "♪ %volume"
  50. format_muted = "♪× (%volume)"
  51. device = "default"
  52. mixer = "Master"
  53. mixer_idx = 0
  54. }