remove sun-rise/set
This commit is contained in:
parent
12a3347c90
commit
527723a524
1 changed files with 1 additions and 14 deletions
|
@ -87,18 +87,5 @@ if [ -n "$current" ] && [ -n "$forecast" ]; then
|
||||||
trend=""
|
trend=""
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
echo "$(get_icon "$current_icon") $current_temp$SYMBOL $trend $(get_icon "$forecast_icon") $forecast_temp$SYMBOL"
|
||||||
sun_rise=$(echo "$current" | $JQ ".sys.sunrise")
|
|
||||||
sun_set=$(echo "$current" | $JQ ".sys.sunset")
|
|
||||||
now=$($DATE +%s)
|
|
||||||
|
|
||||||
if [ "$sun_rise" -gt "$now" ]; then
|
|
||||||
daytime=" $(get_duration "$((sun_rise-now))")"
|
|
||||||
elif [ "$sun_set" -gt "$now" ]; then
|
|
||||||
daytime=" $(get_duration "$((sun_set-now))")"
|
|
||||||
else
|
|
||||||
daytime=" $(get_duration "$((sun_rise-now))")"
|
|
||||||
fi
|
|
||||||
|
|
||||||
echo "$(get_icon "$current_icon") $current_temp$SYMBOL $trend $(get_icon "$forecast_icon") $forecast_temp$SYMBOL $daytime"
|
|
||||||
fi
|
fi
|
||||||
|
|
Loading…
Reference in a new issue