Procházet zdrojové kódy

Customize tresholds for temperature

Warning above 50 and critical above 70
DricomDragon před 4 roky
rodič
revize
c3002a3262

+ 1 - 0
Install/Templates/home/config/regolith/i3xrocks/conf.d/40_temp

@@ -2,4 +2,5 @@
 #
 # Displays temp data
 [temp]
+command=$HOME/.config/regolith/i3xrocks/scripts/$BLOCK_NAME
 interval=30

+ 2 - 2
Install/Templates/home/config/regolith/i3xrocks/scripts/temp

@@ -9,10 +9,10 @@ LABEL_ICON=${label_icon:-$(xrescat i3xrocks.label.thermometer )}
 LABEL_COLOR=${label_color:-$(xrescat i3xrocks.label.color "#7B8394")}
 TEMP=$(sensors | awk -F '(\\+|\\.)' '/(Core|Tdie)/ {sum+= $2; count++} END { printf "%d\n", sum/count}')
 
-if [[ ${TEMP} -gt 90 ]]
+if [[ ${TEMP} -gt 70 ]]
 then
     COLOR=${critical_color:-$(xrescat i3xrocks.critical.color "#BF616A")}
-elif [[ ${TEMP} -gt 70 ]]
+elif [[ ${TEMP} -gt 50 ]]
 then
     COLOR=${warning:-$(xrescat i3xrocks.warning "#EBCB8B")}
 else