Advertisement
Guest User

Untitled

a guest
Jan 24th, 2020
161
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.05 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 = false
  11. interval = 1
  12. }
  13.  
  14. #order += "ipv6"
  15. #order += "wireless _first_"
  16. order += "ethernet _first_"
  17. #order += "battery all"
  18. #order += "disk /"
  19. #order += "load"
  20. order += "memory"
  21. order += "tztime local"
  22.  
  23. wireless _first_ {
  24. format_up = "W: (%quality at %essid) %ip"
  25. format_down = "W: down"
  26. }
  27.  
  28. ethernet _first_ {
  29. format_up = "  %ip "
  30. format_down = "  No Internet "
  31. }
  32.  
  33. battery all {
  34. format = "%status %percentage %remaining"
  35. }
  36.  
  37. disk "/" {
  38. format = "%avail"
  39. }
  40.  
  41. load {
  42. format = "%1min"
  43. }
  44.  
  45. memory {
  46. format = "  %used "
  47. threshold_degraded = "1G"
  48. format_degraded = "MEMORY < %available"
  49. }
  50.  
  51. tztime local {
  52. format = "  %A, %B %d %Y | %l:%M %p "
  53. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement