config 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273
  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 += "ipv6"
  12. order += "disk /"
  13. # order += "run_watch DHCP"
  14. # order += "run_watch VPN"
  15. order += "wireless _first_"
  16. order += "ethernet _first_"
  17. order += "volume master"
  18. order += "battery 0"
  19. order += "cpu_temperature 0"
  20. order += "load"
  21. order += "tztime local"
  22. wireless _first_ {
  23. format_up = "W: %essid %ip %quality %bitrate"
  24. format_down = "W: down"
  25. }
  26. ethernet _first_ {
  27. # if you use %speed, i3status requires root privileges
  28. format_up = "E: %ip (%speed)"
  29. format_down = "E: down"
  30. }
  31. battery 0 {
  32. format = "%status %percentage %remaining"
  33. }
  34. run_watch DHCP {
  35. pidfile = "/var/run/dhclient*.pid"
  36. }
  37. run_watch VPN {
  38. pidfile = "/var/run/vpnc/pid"
  39. }
  40. tztime local {
  41. format = "%Y-%m-%d %H:%M:%S"
  42. }
  43. load {
  44. format = "%1min %5min"
  45. }
  46. cpu_temperature 0 {
  47. format = "%degrees°C"
  48. path = "/sys/devices/platform/coretemp.0/hwmon/hwmon1/temp1_input"
  49. max_threshold = 80
  50. }
  51. disk "/" {
  52. format = "%avail"
  53. low_threshold = 8
  54. threshold_type = gbytes_avail
  55. }
  56. volume master {
  57. device = pulse
  58. format = "♪ %volume"
  59. format_muted = "♪ %volume" # yellow
  60. }