config 1.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  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 = 1
  10. }
  11. order += "disk /"
  12. order += "disk /home"
  13. order += "wireless _first_"
  14. order += "ethernet _first_"
  15. order += "cpu_usage"
  16. order += "battery all"
  17. order += "tztime local"
  18. wireless _first_ {
  19. format_up = "W:%quality|%essid|%ip"
  20. format_down = "W: down"
  21. }
  22. ethernet _first_ {
  23. # if you use %speed, i3status requires root privileges
  24. format_up = "E: %ip|%speed"
  25. format_down = "E: down"
  26. }
  27. battery all {
  28. format = "%status %percentage %remaining"
  29. integer_battery_capacity = true
  30. }
  31. tztime local {
  32. format = "%Y-%m-%d %H:%M:%S"
  33. }
  34. cpu_usage {
  35. format = "CPU %usage"
  36. max_threshold = 90
  37. degraded_threshold = 75
  38. }
  39. disk "/" {
  40. format = "ROOT %avail"
  41. }
  42. disk "/home" {
  43. format = "HOME %avail"
  44. }