config 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677
  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_good = "#a8c2ed"
  10. color_bad = "#a56d82"
  11. color_degraded = "#c17d97"
  12. interval = 5
  13. }
  14. order += "disk /"
  15. order += "wireless _first_"
  16. order += "ethernet _first_"
  17. order += "battery 0"
  18. order += "load"
  19. order += "volume master"
  20. order += "cpu_temperature 0"
  21. order += "tztime local"
  22. volume master {
  23. format = " ♪: %volume "
  24. device = "default"
  25. mixer = "Master"
  26. mixer_idx = 0
  27. }
  28. wireless _first_ {
  29. format_up = " W: (%quality at %essid) %ip "
  30. format_down = " W: down "
  31. }
  32. ethernet _first_ {
  33. # if you use %speed, i3status requires root privileges
  34. format_up = " E: %ip (%speed) "
  35. format_down = "E Down"
  36. }
  37. battery 0 {
  38. format = " %status %percentage %remaining "
  39. format_down = " No battery "
  40. status_chr = " ⚡ CHR "
  41. status_bat = "BAT "
  42. status_full = " ☻ FULL "
  43. path = "/sys/class/power_supply/BAT%d/uevent"
  44. low_threshold = 10
  45. }
  46. run_watch DHCP {
  47. pidfile = "/var/run/dhclient*.pid"
  48. }
  49. run_watch VPNC {
  50. pidfile = "/var/run/vpnc/pid"
  51. }
  52. tztime local {
  53. format = " %Y-%m-%d %H:%M:%S "
  54. }
  55. load {
  56. format = " %1min "
  57. }
  58. disk "/" {
  59. format = "Free / : %avail "
  60. }
  61. cpu_temperature 0 {
  62. format = " %degrees °C "
  63. path = "/sys/devices/platform/coretemp.0/hwmon/hwmon3/temp1_input"
  64. }