Advertisement
Guest User

Untitled

a guest
Apr 26th, 2017
102
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.02 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. output_format = "i3bar"
  11. colors = true
  12. # color_separator = "#dedede"
  13.  
  14. color_good = "#07bd00"
  15. color_degraded = "#bd0071"
  16. color_bad = "#bd0000"
  17.  
  18. ## Brighter colours:
  19. # color_good = "#2cde00"
  20. # color_degraded = "#de0085"
  21. # color_bad = "#de0000"
  22.  
  23. interval = 5
  24. }
  25.  
  26. order += "wireless wlan0"
  27. order += "ethernet eth0"
  28. order += "disk /"
  29. order += "battery 1"
  30. order += "load"
  31. order += "cpu_temperature 1"
  32. order += "cpu_temperature 2"
  33. order += "volume master"
  34. order += "tztime local"
  35.  
  36.  
  37.  
  38. wireless wlan0 {
  39. format_up = "W: (%quality at %essid, %bitrate) %ip"
  40. format_down = "W: down"
  41. }
  42.  
  43. ethernet eth0 {
  44. # if you use %speed, i3status requires root privileges
  45. # "setcap cap_net_admin=ep $(which i3status)"
  46. format_up = "E: %ip (%speed)"
  47. format_down = "E: down"
  48. }
  49.  
  50. disk "/" {
  51. format = " %used/%total"
  52. prefix_type = custom
  53. low_threshold = 20
  54. threshold_type = percentage_avail
  55. }
  56.  
  57. battery 1 {
  58. # power consumption (in Watt): %consumption
  59. # time when empty: %emptytime
  60. format = "%status %percentage %remaining"
  61. format_down = "No battery"
  62.  
  63. status_chr = "🔌 CHR"
  64. status_bat = "🔋 "
  65. status_full = "🔋 FULL"
  66.  
  67. threshold_type = time
  68. low_threshold = 30
  69.  
  70. hide_seconds = true
  71. integer_battery_capacity = true
  72. }
  73.  
  74. load {
  75. format = "CPU: %1min/1m"
  76. }
  77.  
  78. cpu_temperature 1 {
  79. path = "/sys/class/hwmon/hwmon0/temp1_input"
  80. format = "Radio: %degrees °C"
  81. }
  82.  
  83. cpu_temperature 2 {
  84. # Doesn't work.
  85. path = "/sys/class/thermal/thermal_zone0/temp"
  86. format = "CPU: %degrees °C"
  87. }
  88.  
  89. volume master {
  90. format = " %volume"
  91. format_muted = " %volume"
  92. device = "default"
  93. mixer = "Master"
  94. mixer_idx = 0
  95. }
  96.  
  97. tztime local {
  98. format = "%H:%M:%S"
  99. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement