i3status.conf 1.7 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. interval = 5
  10. color_good = "#2AA198"
  11. color_bad = "#586E75"
  12. color_degraded = "#DC322F"
  13. }
  14. # order += "ipv6"
  15. order += "weather"
  16. order += "cpu_usage"
  17. order += "disk /"
  18. # order += "disk /home"
  19. order += "wireless _first_"
  20. order += "ethernet _first_"
  21. order += "battery all"
  22. # order += "load"
  23. order += "memory"
  24. order += "tztime local"
  25. cpu_usage {
  26. format = " cpu %usage "
  27. }
  28. load {
  29. format = " load %1min "
  30. # max_threshold = 0.3
  31. }
  32. disk "/" {
  33. # format = " hdd %avail "
  34. format = " ⛁ %avail "
  35. }
  36. ethernet _first_ {
  37. # if you use %speed, i3status requires root privileges
  38. format_up = " lan: %ip %speed "
  39. format_down = " no lan "
  40. }
  41. battery all {
  42. # format = "%status %percentage %remaining %emptytime"
  43. format = " %status %percentage"
  44. format_down = "No battery"
  45. last_full_capacity = true
  46. integer_battery_capacity = true
  47. # status_chr = ""
  48. status_chr = "⚡"
  49. # status_bat = "bat"
  50. # status_bat = "☉"
  51. status_bat = ""
  52. # status_unk = "?"
  53. status_unk = ""
  54. # status_full = ""
  55. status_full = "☻"
  56. low_threshold = 15
  57. threshold_type = time
  58. }
  59. memory {
  60. format = "%used | %available"
  61. threshold_degraded = "1G"
  62. format_degraded = "MEMORY < %available"
  63. }
  64. tztime local {
  65. # format = "%Y-%m-%d %H:%M:%S"
  66. format = " %d.%m. %H:%M "
  67. }