You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

58 lines
1.1 KiB

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