i3status.conf 916 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  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 = "#88b090"
  11. color_bad = "#383530"
  12. output_format = "i3bar"
  13. }
  14. order += "disk /"
  15. order += "ethernet eth0"
  16. order += "load"
  17. order += "tztime local"
  18. order += "volume master"
  19. ethernet eth0 {
  20. # if you use %speed, i3status requires root privileges
  21. format_up = "E: %ip
  22. (%speed)"
  23. format_down = "E: down"
  24. }
  25. tztime local {
  26. format = "%Y-%m-%d %H:%M:%S"
  27. }
  28. load {
  29. format = "%1min"
  30. }
  31. disk "/" {
  32. format = "%avail"
  33. }
  34. volume master {
  35. format = "♪: %volume"
  36. device = "default"
  37. mixer = "Master"
  38. mixer_idx = 0
  39. }