From 7150565b512b80339e86ed7632baef1a31ac8a40 Mon Sep 17 00:00:00 2001 From: Vidhu Kant Sharma Date: Wed, 9 Dec 2020 08:24:49 +0530 Subject: fixed temp. not showing up for Shallow weather --- scripts/weather | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'scripts') 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 -- cgit v1.2.3