all repos — dotfiles @ 58546a4fd3c355caf6d47ce0ec165203a9fbb7a0

linux dotfiles

bin/cron/newsboat-cron

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
#!/bin/sh

ping -q -c 1 8.8.8.8 >/dev/null || exit
count=0
echo -e '\uf2f1' > $HOME/.config/newsboat/unread && pkill -SIGRTMIN+10 i3blocks 
count=$(newsboat -x "reload" && newsboat -x "print-unread" | cut -d ' ' -f1)

if [ $count -gt 0 ]
then
    echo $count > $HOME/.config/newsboat/unread
    pkill -SIGRTMIN+10 i3blocks
    notify-send "$count unread RSS feeds"
elif [ $count -eq 0 ]
then
    echo $count > $HOME/.config/newsboat/unread
    pkill -SIGRTMIN+10 i3blocks
fi