config 1.8 KB

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