config 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475
  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 = 20
  40. threshold_type = time
  41. }
  42. tztime local {
  43. format = "%a %-d %b <%V> %H:%M"
  44. }
  45. load {
  46. format = "%1min"
  47. }
  48. disk "/" {
  49. format = "%avail"
  50. low_threshold = 100
  51. threshold_type = gbytes_avail
  52. }
  53. volume master {
  54. format = "♪ %volume"
  55. format_muted = "♪× (%volume)"
  56. device = "default"
  57. mixer = "Master"
  58. mixer_idx = 0
  59. }
  60. path_exists VPN {
  61. format_down = ""
  62. format = "⛢ %title"
  63. path = "/proc/sys/net/ipv4/conf/tun0"
  64. }