aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xscripts/weather2
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/weather b/scripts/weather
index f960d040..7d7d6a36 100755
--- a/scripts/weather
+++ b/scripts/weather
@@ -3,7 +3,7 @@
get_current_temp() {
if [ $stat = "Smoke" ]; then
temp=$(curl wttr.in | grep °C | awk 'NR==1 {print $4 "°C"}' | sed -r "s/\x1B\[(([0-9]+)(;[0-9]+)*)?[m,K,H,f,J]//g")
- elif [ $stat = "Haze" ] || [ $stat = "Fog" ]; then
+ elif [ $stat = "Haze" ] || [ $stat = "Fog" ] || [ $stat = "Shallow" ]; then
temp=$(curl wttr.in | grep °C | awk 'NR==1 {print $9 "°C"}' | sed -r "s/\x1B\[(([0-9]+)(;[0-9]+)*)?[m,K,H,f,J]//g")
fi