Advertisement
gravitiq

Untitled

Oct 16th, 2024
12
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.44 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 = 1
  12. color_good = "#2AA198"
  13. color_bad = "#586E75"
  14. color_degraded = "#DC322F"
  15. }
  16.  
  17. # order += "ipv6"
  18. order += "ethernet _first_"
  19. order += "cpu_usage"
  20. # order += "disk /home"
  21. order += "battery all"
  22. # order += "load"
  23. order += "memory"
  24. order += "wireless _first_"
  25. order += "tztime local"
  26.  
  27. cpu_usage {
  28. format = " %usage "
  29. }
  30.  
  31. cpu_temperature 0 {
  32. format = " %degrees С"
  33.  
  34. # верхний порог температуры, при достижении которого
  35. # вывод окрасится красныcм,
  36. # и формат изменится на format_above_threshold
  37. max_threshold = "80"
  38. format_above_threshold = " %degrees"
  39. path = "/sys/class/thermal/thermal_zone0/temp"
  40. }
  41.  
  42. wireless _first_ {
  43. # шаблон вывода, можно дополнить
  44. # наименованием подключения %essid
  45. # и ip адресом %ip
  46. format_up = " [ %essid ] %frequency %quality"
  47. format_down = "W: down"
  48. }
  49.  
  50. load {
  51. format = " load %1min "
  52. # max_threshold = 0.3
  53. }
  54.  
  55. disk "/" {
  56. # format = " hdd %avail "
  57. format = " ⛁ %avail "
  58. }
  59.  
  60. ethernet _first_ {
  61. # if you use %speed, i3status requires root privileges
  62. format_up = " lan: %ip %speed "
  63. format_down = ""
  64. }
  65.  
  66. battery all {
  67. # format = "%status %percentage %remaining %emptytime"
  68. format = " %percentage %status "
  69. format_down = "No battery"
  70.  
  71. last_full_capacity = true
  72. integer_battery_capacity = true
  73.  
  74. # status_chr = ""
  75. status_chr = "⚡"
  76.  
  77. # status_bat = "bat"
  78. # status_bat = "☉"
  79. #status_bat = " "
  80. status_bat = "-"
  81.  
  82. # status_unk = "?"
  83. status_unk = ""
  84.  
  85. # status_full = ""
  86. status_full = "⚡"
  87.  
  88. low_threshold = 15
  89.  
  90. threshold_type = time
  91. }
  92.  
  93. memory {
  94. format = "%available"
  95. threshold_degraded = "1G"
  96. format_degraded = "MEMORY < %available"
  97. }
  98.  
  99. tztime local {
  100. # format = "%Y-%m-%d %H:%M:%S"
  101. format = " %d.%m.%Y %H:%M:%S "
  102. }
  103.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement