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

# Get unread count
pgrep -x newsboat >/dev/null \
	|| newsboat -x print-unread >~/.cache/unread

unread=$(cut -f1 -d' ' ~/.cache/unread)

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