16 lines
352 B
Plaintext
16 lines
352 B
Plaintext
|
#!/bin/sh
|
||
|
|
||
|
ping -q -c 1 1.1.1.1 > /dev/null || exit 1
|
||
|
|
||
|
ps ax | grep -q newsboat$ && \
|
||
|
/usr/bin/xdotool key --window \
|
||
|
"$(/usr/bin/xdotool search --name newsboat)" R && exit
|
||
|
|
||
|
echo " " > /tmp/newsupdate
|
||
|
refbar &
|
||
|
/usr/bin/newsboat -x reload
|
||
|
rm -f /tmp/newsupdate
|
||
|
refbar &
|
||
|
|
||
|
newsboat -x print-unread | awk '{ print $1 }' > "$HOME/.cache/news_unread"
|