hyprdots

my dotfiles
git clone https://git.awy.one/hyprdots.git
Log | Files | Refs | README | LICENSE

sb-price (1817B)


      1 #!/bin/sh
      2 
      3 # Usage:
      4 #	price <currency-base currency> <name of currency> <icon> <signal>
      5 #	price bat-btc "Basic Attention Token" 🦁 24
      6 #	This will give the price of BAT denominated in BTC and will update on
      7 #	signal 24.
      8 # When the name of the currency is multi-word, put it in quotes.
      9 
     10 [ -z "$1" ] && exit 1
     11 
     12 url="${CRYPTOURL:-rate.sx}"
     13 target="${1%%-*}"
     14 denom="${1##*-}"
     15 name="${2:-$1}"
     16 icon="${3:-💰}"
     17 case "$denom" in
     18 	"$target"|usd) denom="usd"; symb="$" ;;
     19 	gbp) symb="£" ;;
     20 	eur) symb="€" ;;
     21 	btc) symb="" ;;
     22 esac
     23 interval="@14d"	# History contained in chart preceded by '@' (7d = 7 days)
     24 dir="${XDG_CACHE_HOME:-$HOME/.cache}/crypto-prices"
     25 pricefile="$dir/$target-$denom"
     26 chartfile="$dir/$target-$denom-chart"
     27 filestat="$(stat -c %x "$pricefile" 2>/dev/null)"
     28 
     29 [ -d "$dir" ] || mkdir -p "$dir"
     30 
     31 updateprice() { curl -sf \
     32 	--fail-early "${denom}.${url}/1${target}" "${denom}.${url}/${target}${interval}" \
     33 	--output "$pricefile" --output "$chartfile" ||
     34 	rm -f "$pricefile" "$chartfile" ;}
     35 
     36 [ "${filestat%% *}" != "$(date '+%Y-%m-%d')" ] &&
     37 	updateme="1"
     38 
     39 case $1 in
     40 	1) setsid "$TERMINAL" -e less -Srf "$chartfile" ;;
     41 	2) notify-send -u low "$icon Updating..." "Updating $name price..." ; updateme="1" ; showupdate="1" ;;
     42 	3) uptime="$(date -d "$filestat" '+%D at %T' | sed "s|$(date '+%D')|Today|")"
     43 		notify-send "$icon $name module" "\- <b>Exact price: \$$(cat "$pricefile")</b>
     44 - Left click for chart of changes.
     45 - Middle click to update.
     46 - Shows 🔃 if updating prices.
     47 - <b>Last updated:
     48 	$uptime</b>" ;;
     49 	8) setsid -f "$TERMINAL" -e "$EDITOR" "$0" ;;
     50 esac
     51 
     52 [ -n "$updateme" ] &&
     53 	updateprice "$target" &&
     54 	[ -n "$showupdate" ] &&
     55 	notify-send "$icon Update complete." "$name price is now
     56 \$$(cat "$pricefile")"
     57 
     58 [ -f "$pricefile" ] && printf "%s%s%0.2f" "$icon" "$symb" "$(cat "$pricefile")"