From bad0b625a65e2e758d47a4f0a21eea0321f59838 Mon Sep 17 00:00:00 2001 From: Luke Smith Date: Mon, 25 May 2020 20:23:06 -0400 Subject: [PATCH] new crypto statusbar script for individual ammounts and historical chart --- .local/bin/statusbar/price | 34 ++++++++++++++++++++++++++++++++++ 1 file changed, 34 insertions(+) create mode 100755 .local/bin/statusbar/price diff --git a/.local/bin/statusbar/price b/.local/bin/statusbar/price new file mode 100755 index 0000000..325f977 --- /dev/null +++ b/.local/bin/statusbar/price @@ -0,0 +1,34 @@ +#!/bin/sh + +# Usage: +# price +# price bat "Basic Attention Token" 🦁 +# When the name of the currency is multi-word, put it in quotes. + +[ -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" + +[ "$(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 ;} + +[ "$(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 ;} + +case $BLOCK_BUTTON in + 1) setsid "$TERMINAL" -e less -Sf "$chartfile" ;; + 3) uptime="$(date -d "$(stat -c %x "$dir")" '+%D at %T' | sed "s|$(date '+%D')|Today|")" + notify-send "$3 $2 module" "\- Exact price: \$$(cat "$price") +- Left click for chart of changes. +- Middle click to update. +- Shows 🔃 if updating prices. +- Last updated: + $uptime" ;; + 6) "$TERMINAL" -e "$EDITOR" "$0" ;; +esac + +printf "$3$%0.2f" "$(cat "$pricefile")"