Advertisement
ignitionigel

Void Laptop - Clean : .config/i3/i3status.conf

Feb 22nd, 2019
123
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.73 KB | None | 0 0
  1. ## Uses FontAwesome for icons
  2.  
  3. general {
  4. colors = true
  5. interval = 1
  6. # color_good = "#02c0b0"
  7. color_good = "#ffffff"
  8. color_degraded = "#ffa64d"
  9. color_bad = "#ff3333"
  10. # color_degraded = "#d261f8"
  11. # color_bad = "#f600ff"
  12. }
  13.  
  14. order+= "volume master"
  15. # order += "disk /"
  16. # order += "disk /home"
  17. #order += "brightness"
  18. order += "wireless _first_"
  19. # order += "ethernet _first_"
  20. order += "battery all"
  21. #order += "cpu_temperature 0"
  22. #order += "load"
  23. order += "time"
  24. #order+= "run_watch proxy"
  25.  
  26. #brightness {
  27. #xbacklight -get
  28. #}
  29.  
  30. volume master {
  31. device = "default"
  32. mixer = "Master"
  33. mixer_idx = 0
  34. format = " %volume  "
  35. format_muted = "  "
  36. }
  37.  
  38. wireless _first_ {
  39. #format_up = " %quality %essid "
  40. format_up = " %quality  "
  41. format_down = "  "
  42. }
  43.  
  44. ethernet _first_ {
  45. format_up = "🔌 %ip"
  46. format_down = ""
  47. }
  48.  
  49. battery all {
  50. # format = "%status %percentage %remaining "
  51. format = " %percentage (%remaining) %status "
  52. status_chr = " "
  53. status_bat = ""
  54. status_unk = ""
  55. status_full = ""
  56.  
  57. low_threshold = 11
  58. threshold_type = percentage
  59. integer_battery_capacity = true
  60. last_full_capacity = true
  61. hide_seconds = true
  62. }
  63.  
  64. time {
  65. #format = "  %d/%m  %H:%M "
  66. format = " %H:%M  "
  67. }
  68.  
  69.  
  70. load {
  71. format = " %1min"
  72. }
  73.  
  74. disk "/" {
  75. format = " / %avail"
  76. prefix_type = custom
  77. low_threshold = 10
  78. threshold_type = percentage_avail
  79. }
  80.  
  81. disk "/home" {
  82. format = " /home %avail"
  83. prefix_type = custom
  84. low_threshold = 20
  85. threshold_type = percentage_avail
  86. }
  87.  
  88. cpu_temperature 0 {
  89. format = "  %degrees°C "
  90. }
  91.  
  92. run_watch proxy {
  93. pidfile = "/tmp/proxy.pid"
  94. format="⬤"
  95. format_down="⬤"
  96. color_good = "#4E9A06"
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement