all repos — dotfiles @ 35c5660a1f128f66bc137be80192c3c8dc5bd703

linux dotfiles

bin/cron/newsboat-cron (view raw)

 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/.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/.newsboat/unread
    pkill -SIGRTMIN+10 i3blocks
    notify-send "$count unread RSS feeds"
elif [ $count -eq 0 ]
then
    echo $count > $HOME/.newsboat/unread
    pkill -SIGRTMIN+10 i3blocks
fi