Arctis

Untitled

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