Advertisement
HiImTye

.i3/i3status.conf

Apr 6th, 2014
148
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 0.82 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.  # colours
  12.  color_good =     "#00aaff"
  13.  color_degraded = "#0099cc"
  14.  color_bad =      "#cc8800"
  15.  interval =       1
  16. }
  17.  
  18. order += "cpu_temperature 0"
  19. order += "ethernet enp3s0"
  20. order += "ipv6"
  21.  
  22. cpu_temperature 0 {
  23.         format = "CPU %degrees°C"
  24.     max_threshold = 90
  25.         path = "/sys/devices/platform/coretemp.0/temp2_input"
  26. }
  27.  
  28. ethernet enp3s0 {
  29.         # if you use %speed, i3status requires root privileges
  30.         format_up = "%ip"
  31.         format_down = "down"
  32. }
  33.  
  34. tztime local {
  35.         format = "%Y-%m-%d %H:%M"
  36. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement