From 03c40f935cb96e3ac98b893162da8ab4f134f83e Mon Sep 17 00:00:00 2001 From: Vidhu Kant Sharma Date: Mon, 14 Dec 2020 09:38:14 +0530 Subject: weather script now correctly shows current trmperature under most weather conditions --- scripts/weather | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/weather b/scripts/weather index 7d7d6a36..5aa47413 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" ] || [ $stat = "Shallow" ]; then + else 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