fix, again

This commit is contained in:
committer@tuxwarrior
2026-03-04 13:56:50 -05:00
parent 0f40356ece
commit 0295655e50

View File

@@ -23,12 +23,12 @@ temp_file=${temp_file:=/sys/devices/virtual/thermal/thermal_zone3/hwmon6/temp1_i
# to set colour in svg, set `fill="white"` in the file
temperature=$(($(cat ${temp_file}) / 1000))
if [[ ${temperature} -gt ${threshold_1} ]]; then
echo /home/poq/.config/nwg-panel/icons/temperature-full-solid-full.alarm1.svg
echo "${temperature}°C"
elif [[ ${temperature} -gt ${threshold_2} ]]; then
if [[ ${temperature} -gt ${threshold_2} ]]; then
echo /home/poq/.config/nwg-panel/icons/temperature-full-solid-full.alarm2.svg
echo "WARNING: ${temperature}°C"
elif [[ ${temperature} -gt ${threshold_1} ]]; then
echo /home/poq/.config/nwg-panel/icons/temperature-full-solid-full.alarm1.svg
echo "${temperature}°C"
else
echo /home/poq/.config/nwg-panel/icons/temperature-full-solid-full.svg
echo "${temperature}°C"