The aptly named.
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.

52 lines
963 B

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