Guest User

Untitled

a guest
Sep 28th, 2016
204
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.26 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. color_degraded = "#555555"
  12. color_good = "#7C00A6"
  13. # color_degraded= "#45005C"
  14. interval = 5
  15. }
  16.  
  17. order += "ipv6"
  18. order += "disk /"
  19. order += "run_watch DHCP"
  20. order += "run_watch VPN"
  21. order += "wireless _first_"
  22. order += "ethernet _first_"
  23. order += "battery 0"
  24. order += "cpu_usage"
  25. order += "load"
  26. order += "tztime local"
  27.  
  28. wireless _first_ {
  29. format_up = "W: (%quality at %essid) %ip"
  30. format_down = "W: down"
  31. }
  32.  
  33. ethernet _first_ {
  34. # if you use %speed, i3status requires root privileges
  35. format_up = "E: %ip (%speed)"
  36. format_down = "E: down"
  37. }
  38.  
  39. battery 0 {
  40. format = "%status %percentage %remaining"
  41. }
  42.  
  43. run_watch DHCP {
  44. pidfile = "/var/run/dhclient*.pid"
  45. }
  46.  
  47. run_watch VPN {
  48. pidfile = "/var/run/vpnc/pid"
  49. }
  50.  
  51. tztime local {
  52. format = "%Y-%m-%d %H:%M:%S"
  53. }
  54.  
  55. cpu_usage {
  56. format = "%usage"
  57. }
  58.  
  59. load {
  60. format = "%1min"
  61. }
  62.  
  63. disk "/" {
  64. format = "%avail"
  65. }
Advertisement
Add Comment
Please, Sign In to add comment