aboutsummaryrefslogtreecommitdiff
path: root/modules/cputemp
diff options
context:
space:
mode:
Diffstat (limited to 'modules/cputemp')
-rwxr-xr-xmodules/cputemp18
1 files changed, 11 insertions, 7 deletions
diff --git a/modules/cputemp b/modules/cputemp
index 7563835..da8f183 100755
--- a/modules/cputemp
+++ b/modules/cputemp
@@ -3,19 +3,23 @@
# Gets temperature of the CPU
# Dependencies: lm_sensors
+PREFIX=' '
+FIRE=' '
+
+WARNING_LEVEL=80
+
get_cputemp()
{
# CPU_T=$(cat /sys/devices/platform/coretemp.0/hwmon/hwmon?/temp2_input)
# CPU_TEMP=$(expr $CPU_T / 1000)
- CPU_TEMP="$(sensors | grep temp1 | awk 'NR==1{gsub("+", " "); gsub("\\..", " "); print $2"°C"}')"
+ CPU_TEMP="$(sensors | grep temp1 | awk 'NR==1{gsub("+", " "); gsub("\\..", " "); print $2}')"
+
+ if [ "$CPU_TEMP" -ge $WARNING_LEVEL ]; then
+ PREFIX="$FIRE$PREFIX"
+ fi
- # elif [ "$CPU_TEMP" -le 10 ]; then
- # echo "  $CPU_TEMP"
- # else
- # echo " $CPU_TEMP"
- # fi
- echo " $CPU_TEMP"
+ echo "$PREFIX$CPU_TEMP°C"
}
get_cputemp