Advertisement
ignitionigel

Void Laptop Cyber: .config/i3/i3status.conf

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