Advertisement
pexea12

i3status

Dec 22nd, 2016
149
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.56 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_good = "#BBBBBB"
  12. color_bad = "#EE5D5D"
  13. color_degraded = "#FFFF00"
  14. interval = 5
  15. }
  16.  
  17. # order += "ipv6"
  18. # order += "disk /"
  19. # order += "run_watch DHCP"
  20. # order += "run_watch VPN"
  21. # order += "ethernet _first_"
  22. # order += "load"
  23. order += "volume master"
  24. order += "wireless _first_"
  25. order += "battery 0"
  26. order += "tztime local"
  27.  
  28. wireless _first_ {
  29. format_up = " (%essid %quality)"
  30. format_down = " down"
  31. }
  32.  
  33. battery 0 {
  34. low_threshold = 20
  35. status_chr = " CHR "
  36. status_full = " FULL "
  37. status_bat = " BAT "
  38. format = "%status %percentage %remaining"
  39. }
  40.  
  41. tztime local {
  42. format = " %Y-%m-%d %H:%M"
  43. }
  44.  
  45.  
  46. volume master {
  47. format = " %volume"
  48. format_muted = " Muted (%volume)"
  49. device = "default"
  50. mixer = "Master"
  51. mixer_idx = 0
  52. }
  53.  
  54. run_watch DHCP {
  55. pidfile = "/var/run/dhclient*.pid"
  56. }
  57.  
  58. run_watch VPN {
  59. pidfile = "/var/run/vpnc/pid"
  60. }
  61.  
  62. load {
  63. format = "%1min"
  64. }
  65.  
  66. disk "/" {
  67. format = "%avail"
  68. }
  69.  
  70. ethernet _first_ {
  71. # if you use %speed, i3status requires root privileges
  72. format_up = "E: %ip (%speed)"
  73. format_down = "E: down"
  74. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement