remove unnecessary UNIX time conversion in weather

This commit is contained in:
Alexander Bocken 2021-07-14 21:53:16 +02:00
parent 87ab129d80
commit e846eeeec3
Signed by: Alexander
GPG Key ID: 1D237BE83F9B05E8

View File

@ -1,6 +1,6 @@
#!/bin/sh
meteobluelink="https://www.meteoblue.com/en/weather/forecast/multimodel/zurich_switzerland_2657896"
multimodel_path="$XDG_DATA_HOME/$(date +%s)_multimodel.png"
multimodel_path="$XDG_DATA_HOME/$(date -I)_multimodel.png"
last_downloaded_path="$(for file in "$XDG_DATA_HOME"/*_multimodel.png; do
echo "$file"
@ -9,8 +9,7 @@ last_downloaded="$(echo "${last_downloaded_path%_multimodel.png}" | awk 'BEGIN{F
if [ "$last_downloaded" = "*" ]; then
FLAG_download=true
else
day_last_downloaded="$( date -d @"$last_downloaded" -I)"
if [ "$(date -I)" != "$day_last_downloaded" ]; then
if [ "$(date -I)" != "$last_downloaded" ]; then
echo "Last report is from another day, downloading for today..."
rm "$XDG_DATA_HOME"/*_multimodel.png
FLAG_download=true