dotfiles/.config/waybar/custom_newsboat.sh

13 lines
228 B
Bash
Raw Normal View History

2023-03-07 18:15:21 +00:00
#!/bin/sh
while :; do
until newsboat -x reload >/dev/null; do
sleep 1;
done
until unread="$(newsboat -x print-unread)"; do
sleep 1;
done
echo "$unread" | awk '{ print $1 }'
2024-01-25 01:32:03 +00:00
sleep 60
2023-03-07 18:15:21 +00:00
done