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. output_foramt = "i3bar"
  9. colors = true
  10. color_good = "#202020"
  11. color_degraded = "#E5871F"
  12. color_bad = "#C83839"
  13. interval = 5
  14. }
  15. # order += "disk /"
  16. order += "run_watch DHCP"
  17. # order += "run_watch VPN"
  18. order += "wireless _first_"
  19. # order += "ethernet _first_"
  20. order += "battery 0"
  21. order += "load"
  22. order += "tztime local"
  23. wireless _first_ {
  24. format_up = "W: (%quality at %essid) %ip"
  25. format_down = "W: down"
  26. }
  27. ethernet _first_ {
  28. # if you use %speed, i3status requires root privileges
  29. format_up = "E: %ip (%speed)"
  30. format_down = "E: down"
  31. }
  32. battery 0 {
  33. format = "%status %percentage %remaining"
  34. }
  35. run_watch DHCP {
  36. pidfile = "/var/run/dhclient*.pid"
  37. }
  38. run_watch VPN {
  39. pidfile = "/var/run/vpnc/pid"
  40. }
  41. tztime local {
  42. format = "%Y-%m-%d %H:%M:%S"
  43. }
  44. load {
  45. format = "%1min"
  46. }
  47. disk "/" {
  48. format = "%avail"
  49. }