From 0233290c51b5d2f4a0c341a9d731b3237a60bdc2 Mon Sep 17 00:00:00 2001 From: "Archie Hilton (thytom)" Date: Wed, 6 Nov 2019 15:46:58 +0000 Subject: Adjustments to some modules --- modules/cputemp | 18 +++++++++++------- 1 file changed, 11 insertions(+), 7 deletions(-) (limited to 'modules/cputemp') 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 -- cgit v1.2.3