handle missing weather data
This commit is contained in:
parent
93364f4be7
commit
f012b3ea4a
23
dwmstatus.sh
23
dwmstatus.sh
|
@ -4,16 +4,19 @@ while true; do
|
|||
time=`date +"🕑 %d.%m. %H:%M"`
|
||||
|
||||
weatherdata=`cat weatherdump`
|
||||
current=`echo "$weatherdata" | jq -r '.current_condition | .[0]'`
|
||||
temp=`echo "$current" | jq -r '.temp_C'`
|
||||
weatherDesc=`echo "$current" | jq -r '.weatherDesc | .[0].value'`
|
||||
wind=`echo "$current" | jq -r '.windspeedKmph'`
|
||||
astronomy=`echo "$weatherdata" | jq -r '.weather | .[0] .astronomy | .[0]'`
|
||||
moonphase=`echo "$astronomy" | jq -r '.moon_phase'`
|
||||
sunrise=`echo "$astronomy" | jq -r '.sunrise'`
|
||||
sunset=`echo "$astronomy" | jq -r '.sunset'`
|
||||
weather="🌡 $temp°C $weatherDesc $wind""km/h Daylight $sunrise-$sunset, Moon $moonphase"
|
||||
|
||||
if [ -z "$weatherdata" ]; then
|
||||
weather="No weather data..."
|
||||
else
|
||||
current=`echo "$weatherdata" | jq -r '.current_condition | .[0]'`
|
||||
temp=`echo "$current" | jq -r '.temp_C'`
|
||||
weatherDesc=`echo "$current" | jq -r '.weatherDesc | .[0].value'`
|
||||
wind=`echo "$current" | jq -r '.windspeedKmph'`
|
||||
astronomy=`echo "$weatherdata" | jq -r '.weather | .[0] .astronomy | .[0]'`
|
||||
moonphase=`echo "$astronomy" | jq -r '.moon_phase'`
|
||||
sunrise=`echo "$astronomy" | jq -r '.sunrise'`
|
||||
sunset=`echo "$astronomy" | jq -r '.sunset'`
|
||||
weather="🌡 $temp°C $weatherDesc $wind""km/h Daylight $sunrise-$sunset, Moon $moonphase"
|
||||
fi
|
||||
xsetroot -name "$weather $time "
|
||||
sleep 10
|
||||
done
|
||||
|
|
Loading…
Reference in New Issue
Block a user