15 lines
355 B
Bash
Executable File
15 lines
355 B
Bash
Executable File
#!/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"
|