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

16 lines
219 B
Bash

#!/bin/sh
url="your url here"
unread=$(curl -sf "$url" | jq '.["data"]["children"] | length')
case "$unread" in
''|*[!0-9]*)
unread=0
esac;
if [ "$unread" -gt 0 ]; then
echo "#1 $unread"
else
echo "#2"
fi