config 1.6 KB

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