no ping and other tweaks

This commit is contained in:
Luke Smith 2021-09-24 09:50:24 -04:00
parent 5caaa489ac
commit 60e6128754
No known key found for this signature in database
GPG key ID: 4C50B54A911F6252
3 changed files with 15 additions and 10 deletions

View file

@ -2,8 +2,6 @@
# Syncs repositories and downloads updates, meant to be run as a cronjob.
ping -q -c 1 example.org > /dev/null || exit
notify-send "📦 Repository Sync" "Checking for package updates..."
sudo pacman -Syyuw --noconfirm || notify-send "Error downloading updates.

View file

@ -3,8 +3,6 @@
# Set as a cron job to check for new RSS entries for newsboat.
# If newsboat is open, sends it an "R" key to refresh.
ping -q -c 1 example.org > /dev/null || exit
/usr/bin/notify-send "📰 Updating RSS feeds..."
pgrep -f newsboat$ && /usr/bin/xdotool key --window "$(/usr/bin/xdotool search --name newsboat)" R && exit

View file

@ -11,12 +11,14 @@
currency="${4:-usd}"
interval="@14d" # History contained in chart preceded by '@' (7d = 7 days)
dir="${XDG_DATA_HOME:-$HOME/.local/share}/crypto-prices"
pricefile="$dir/$1"
chartfile="$dir/$1-chart"
pricefile="$dir/$1-$currency"
chartfile="$dir/$1-$currency-chart"
updateprice() { ping -q -c 1 example.org >/dev/null 2>&1 &&
curl -s "$currency.rate.sx/1$1" > "$pricefile" &&
curl -s "$currency.rate.sx/$1$interval" > "$chartfile" ;}
updateprice() { temp="$(mktemp)"
curl -s "$currency.rate.sx/1$1" > "$temp" &&
mv -f "$temp" "$pricefile" &&
curl -s "$currency.rate.sx/$1$interval" > "$temp" &&
mv -f "$temp" "$chartfile" ;}
[ -d "$dir" ] || mkdir -p "$dir"
@ -38,4 +40,11 @@ case $BLOCK_BUTTON in
6) "$TERMINAL" -e "$EDITOR" "$0" ;;
esac
printf "$3%0.2f$currency" "$(cat "$pricefile")"
case "$currency" in
usd) symb="$" ;;
gbp) symb="£" ;;
eur) symb="€" ;;
btc) symb="₿" ;;
esac
printf "$3$symb%0.2f$after" "$(cat "$pricefile")"