From e4411fd7ac62656dbd17c337409b8127229fe5bd Mon Sep 17 00:00:00 2001 From: David Schroeder Date: Sun, 14 May 2023 22:28:18 -0500 Subject: [PATCH] Update powerwall.sh --- powerwall.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/powerwall.sh b/powerwall.sh index 36ebc199..75c19f64 100755 --- a/powerwall.sh +++ b/powerwall.sh @@ -59,7 +59,7 @@ CHECKTEMPSENSOR(){ #echo "$temp_c -> $temp_f" if [ $(bc -l <<< "$temp_f >= $temp_warn") -eq 1 ] && [ $(bc -l <<< "$temp_f < $temp_crit") -eq 1 ]; then - echo -en "${idsCL[LightMagenta]}WARNING ($temp_f°F)${idsCL[Default]}" + echo -en "${idsCL[Yellow]}WARNING ($temp_f°F)${idsCL[Default]}" elif [ $(bc -l <<< "$temp_f >= $temp_crit") -eq 1 ]; then echo -en "${idsCL[Red]}CRITICAL ($temp_f°F)${idsCL[Default]}" else