config 1.8 KB

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