config 1.6 KB

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