From e846eeeec345575e9ab0203719307f1062342b6a Mon Sep 17 00:00:00 2001 From: Alexander Bocken Date: Wed, 14 Jul 2021 21:53:16 +0200 Subject: [PATCH] remove unnecessary UNIX time conversion in weather --- .local/bin/statusbar/weather | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/.local/bin/statusbar/weather b/.local/bin/statusbar/weather index b125851..944b603 100755 --- a/.local/bin/statusbar/weather +++ b/.local/bin/statusbar/weather @@ -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