config 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465
  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. integer_battery_capacity = true
  31. hide_seconds = true
  32. format_down = "×"
  33. status_chr = "⍐"
  34. status_bat = "⍗"
  35. status_unk = "⍰"
  36. status_full = "⌼"
  37. path = "/sys/class/power_supply/BAT%d/uevent"
  38. low_threshold = 10
  39. }
  40. tztime local {
  41. format = "%a %-d %b <%V> %H:%M"
  42. }
  43. load {
  44. format = "%1min"
  45. }
  46. disk "/" {
  47. format = "%avail"
  48. }
  49. volume master {
  50. format = "♪ %volume"
  51. format_muted = "♪× (%volume)"
  52. device = "default"
  53. mixer = "Master"
  54. mixer_idx = 0
  55. }