chezmoi/dot_dotfiles/polybar/polybar-scripts/polybar-scripts/notification-chess/notification-chess.sh
2020-07-14 15:19:48 +02:00

11 lines
190 B
Bash

#!/bin/sh
username=""
games=$(curl -sf "https://api.chess.com/pub/player/$username/games/to-move" | jq ".[] | length")
if [ "$games" -gt 0 ]; then
echo "#1 $games"
else
echo "#2"
fi