Arctis

i3status

Jan 6th, 2015
344
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.51 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 = "#838871" #some neon blue
  12. color_degraded = "#6d715e"
  13. color_bad = "#2d2d2d"
  14. output_format = i3bar
  15. interval = 1
  16. }
  17.  
  18. #order += "ipv6"
  19. order += "disk /"
  20. order += "disk /home"
  21. #order += "run_watch DHCP"
  22. #order += "run_watch VPN"
  23. order += "wireless wlp4s0"
  24. order += "ethernet enp5s0f1"
  25. order += "battery 1"
  26. #order += "load"
  27. #order += "tztime local"
  28. order += "volume master"
  29. order += "tztime local"
  30.  
  31. wireless wlp4s0 {
  32. format_up = "☑ (%quality at %essid)"
  33. #format_up = "W: %quality"
  34. format_down = "☐ down"
  35. }
  36.  
  37. ethernet enp5s0f1 {
  38. # if you use %speed, i3status requires root privileges
  39. format_up = "☑ %ip (%speed)"
  40. format_down = "☐ down"
  41. }
  42.  
  43. battery 1 {
  44. format = "%status %percentage %remaining"
  45. #format = "B: %percentage"
  46. }
  47.  
  48. run_watch DHCP {
  49. pidfile = "/var/run/dhclient*.pid"
  50. }
  51.  
  52. run_watch VPN {
  53. pidfile = "/var/run/vpnc/pid"
  54. }
  55.  
  56. tztime local {
  57. format = "⌚ %H:%M"
  58. }
  59.  
  60. load {
  61. format = "%1min"
  62. }
  63.  
  64. disk "/" {
  65. format = "%avail"
  66. }
  67. disk "/home" {
  68. format = "%avail"
  69. }
  70. volume master {
  71. format = "☊ %volume"
  72. device = "default"
  73. mixer = "Master"
  74. mixer_idx = 0
  75. }
Advertisement
Add Comment
Please, Sign In to add comment