Advertisement
addy-dclxvi

Original i3status

Aug 1st, 2017
75
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.94 KB | None | 0 0
  1. # i3status configuration file.
  2. # see "man i3status" for documentation.
  3.  
  4. # It is important that this file is edited as UTF-8.
  5. # The following line should contain a sharp s:
  6. # ß
  7. # If the above line is not correctly displayed, fix your editor first!
  8.  
  9. general {
  10. colors = true
  11. interval = 5
  12. }
  13.  
  14. order += "ipv6"
  15. order += "disk /"
  16. order += "wireless _first_"
  17. order += "ethernet _first_"
  18. order += "battery all"
  19. order += "load"
  20. order += "tztime local"
  21.  
  22. wireless _first_ {
  23. format_up = "W: (%quality at %essid) %ip"
  24. format_down = "W: down"
  25. }
  26.  
  27. ethernet _first_ {
  28. # if you use %speed, i3status requires root privileges
  29. format_up = "E: %ip (%speed)"
  30. format_down = "E: down"
  31. }
  32.  
  33. battery all {
  34. format = "%status %percentage %remaining"
  35. }
  36.  
  37. tztime local {
  38. format = "%Y-%m-%d %H:%M:%S"
  39. }
  40.  
  41. load {
  42. format = "%1min"
  43. }
  44.  
  45. disk "/" {
  46. format = "%avail"
  47. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement