aboutsummaryrefslogtreecommitdiff
path: root/dot-config/yambar/scripts/newsboat
blob: fa50b80cc1f05de20fcddd20de6846f57b78797e (plain)
1
2
3
4
5
6
7
8
#!/bin/sh

# Get unread count
pgrep -x newsboat || newsboat -x print-unread >~/.cache/unread
unread=$(cut -f1 -d' ' ~/.cache/unread)

# Display unread count
printf "unread|int|%s\n\n" "$unread"