config 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374
  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 += "path_exists VPN"
  17. order += "volume master"
  18. order += "battery 0"
  19. order += "tztime local"
  20. wireless _first_ {
  21. format_up = "⌔ %essid%quality %bitrate %ip"
  22. format_down = "⌔×"
  23. }
  24. ethernet _first_ {
  25. # if you use %speed, i3status requires root privileges
  26. format_up = "⇵ %speed %ip"
  27. format_down = "⇵×"
  28. }
  29. battery 0 {
  30. format = "%status %percentage %remaining"
  31. integer_battery_capacity = true
  32. hide_seconds = true
  33. format_down = "×"
  34. status_chr = "⍐"
  35. status_bat = "⍗"
  36. status_unk = "⍰"
  37. status_full = "⌼"
  38. path = "/sys/class/power_supply/BAT%d/uevent"
  39. low_threshold = 10
  40. }
  41. tztime local {
  42. format = "%a %-d %b <%V> %H:%M"
  43. }
  44. load {
  45. format = "%1min"
  46. }
  47. disk "/" {
  48. format = "%avail"
  49. low_threshold = 100
  50. threshold_type = gbytes_avail
  51. }
  52. volume master {
  53. format = "♪ %volume"
  54. format_muted = "♪× (%volume)"
  55. device = "default"
  56. mixer = "Master"
  57. mixer_idx = 0
  58. }
  59. path_exists VPN {
  60. format_down = ""
  61. format = "⛢ %title"
  62. path = "/proc/sys/net/ipv4/conf/tun0"
  63. }