Advertisement
Mashudi

i3status.conf

Oct 7th, 2017
94
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 2.04 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.         interval = 5
  12.         color_good = "#2AA198"
  13.         color_bad = "#586E75"
  14.         color_degraded = "#DC322F"
  15. }
  16.  
  17. order += "cpu_usage"
  18. order += "cpu_temperature all"
  19. order += "load"
  20. order += "disk /"
  21. order += "wireless _first_"
  22. order += "ethernet _first_"
  23. order += "battery all"
  24. order += "volume master"
  25. order += "tztime local"
  26. # order += "ipv6"
  27.  
  28. cpu_usage {
  29.         format = " cpu  %usage "
  30. }
  31.  
  32. load {
  33.         format = " load %1min "
  34.         # max_threshold = 0.3
  35. }
  36.  
  37. cpu_temperature all {
  38.     format = "T: %degrees °C"
  39.         path = "/sys/devices/platform/coretemp.0/hwmon/hwmon1/temp2_input"
  40. }
  41.  
  42. disk "/" {
  43.         # format = " hdd %avail "
  44.         format = " ⛁ %avail "
  45. }
  46.  
  47. ethernet _first_ {
  48. # if you use %speed, i3status requires root privileges
  49.         format_up = " E: %ip %speed "
  50.         format_down = " no lan "
  51. }
  52.  
  53. wireless _first_ {
  54.     format_up = " W: %ip %quality at %essid, %bitrate"
  55.     format_down = " no wireless "
  56. }
  57.  
  58. battery all {
  59.         # format = "%status %percentage %remaining %emptytime"
  60.         format = " %status %percentage"
  61.         format_down = "No battery"
  62.         last_full_capacity = true
  63.         integer_battery_capacity = true
  64.         # status_chr = ""
  65.         status_chr = "⚡"
  66.         # status_bat = "bat"
  67.         # status_bat = "☉"
  68.         status_bat = ""
  69.         # status_unk = "?"
  70.         status_unk = ""
  71.         # status_full = ""
  72.         status_full = "☻"
  73.         low_threshold = 15
  74.         threshold_type = time
  75. }
  76.  
  77. volume master {
  78.         format = "♪: %volume"
  79.         format_muted = "♪: muted (%volume)"
  80.         device = "default"
  81.         mixer = "Master"
  82.         mixer_idx = 0
  83. }
  84.  
  85. tztime local {
  86.         # format = "%Y-%m-%d %H:%M:%S"
  87.         format = " %d.%m. %H:%M "
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement