config 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687
  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 = 20
  46. threshold_type = time
  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. path = "/sys/class/thermal/thermal_zone5/temp"
  57. }
  58. disk "/" {
  59. format = "%avail"
  60. low_threshold = 100
  61. threshold_type = gbytes_avail
  62. }
  63. volume master {
  64. format = "♪ %volume"
  65. format_muted = "♪× (%volume)"
  66. device = "default"
  67. mixer = "Master"
  68. mixer_idx = 0
  69. }
  70. path_exists VPN {
  71. format_down = ""
  72. format = "⛢ %title"
  73. path = "/proc/sys/net/ipv4/conf/tun0"
  74. }