From a63a203e3a26bf5008a4c87b2f057cbe1e62c598 Mon Sep 17 00:00:00 2001 From: Luke Smith Date: Wed, 2 Jan 2019 11:11:38 -0500 Subject: [PATCH] weather report update fix --- .scripts/statusbar/weather | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.scripts/statusbar/weather b/.scripts/statusbar/weather index 5024681..f3699ee 100755 --- a/.scripts/statusbar/weather +++ b/.scripts/statusbar/weather @@ -1,5 +1,5 @@ #!/bin/sh -[ "$(stat -c %y .weatherreport | awk '{print $1}')" != "$(date '+%Y-%m-%d')" ] && getforecast +[ "$(stat -c %y /tmp/weatherreport | awk '{print $1}')" != "$(date '+%Y-%m-%d')" ] && getforecast case $BLOCK_BUTTON in 1) $TERMINAL -e less -S /tmp/weatherreport ;;