commit 06fb70a6cbff9513c6e0db5f050a4cde7e2ab453
parent bad0b625a65e2e758d47a4f0a21eea0321f59838
Author: Luke Smith <luke@lukesmith.xyz>
Date: Mon, 25 May 2020 20:28:19 -0400
autocreate dir and show price before getting chart
Diffstat:
1 file changed, 4 insertions(+), 4 deletions(-)
diff --git a/.local/bin/statusbar/price b/.local/bin/statusbar/price
@@ -7,15 +7,17 @@
[ -z "$3" ] && exit 1
interval="@7d" # History contained in chart preceded by '@' (7d = 7 days)
-
-# Directory where currency info is stored.
dir="${XDG_DATA_HOME:-$HOME/.local/share}/crypto-prices"
pricefile="$dir/$1"
chartfile="$dir/$1-chart"
+[ -d "$dir" ] || mkdir -p "$dir"
+
[ "$(stat -c %x "$pricefile" 2>/dev/null | cut -d' ' -f1)" != "$(date '+%Y-%m-%d')" ] &&
{ ping -q -c 1 1.1.1.1 >/dev/null 2>&1 && curl -s "rate.sx/1$1" > "$pricefile" || exit ;}
+printf "$3$%0.2f" "$(cat "$pricefile")"
+
[ "$(stat -c %x "$chartfile" 2>/dev/null | cut -d' ' -f1)" != "$(date '+%Y-%m-%d')" ] &&
{ ping -q -c 1 1.1.1.1 >/dev/null 2>&1 && curl -s "rate.sx/$1$interval" > "$chartfile" || exit ;}
@@ -30,5 +32,3 @@ case $BLOCK_BUTTON in
$uptime</b>" ;;
6) "$TERMINAL" -e "$EDITOR" "$0" ;;
esac
-
-printf "$3$%0.2f" "$(cat "$pricefile")"