newsup fixes for notify-send if newsboat open

This commit is contained in:
Luke Smith 2018-12-18 14:23:36 -05:00
parent 1478dca4f4
commit 1283445b22
2 changed files with 6 additions and 8 deletions

View file

@ -1,18 +1,16 @@
#!/bin/sh #!/bin/sh
# Set as a cron job to check for new RSS entries for newsboat. # Set as a cron job to check for new RSS entries for newsboat.
# Note that newsboat cannot be opened during the sync and this # If newsboat is open, sends it an "R" key to refresh.
# sync cannot run while another instance of newsboat is open.
ping -q -t 1 -c 1 `ip r | grep -m 1 default | cut -d ' ' -f 3` >/dev/null || exit ping -q -t 1 -c 1 `ip r | grep -m 1 default | cut -d ' ' -f 3` >/dev/null || exit
note "Updating RSS feeds..." "$PIX/rss.gif" /usr/bin/notify-send -i "$PIX/rss.gif" "Updating RSS feeds..."
pgrep -x newsboat >/dev/null && /usr/bin/xdotool key --window "$(/usr/bin/xdotool search --name newsboat)" R && exit
echo 🔃 > ~/.config/newsboat/.update echo 🔃 > ~/.config/newsboat/.update
pkill -RTMIN+6 i3blocks pkill -RTMIN+6 i3blocks
/usr/bin/newsboat -x reload /usr/bin/newsboat -x reload
rm -f ~/.config/newsboat/.update rm -f ~/.config/newsboat/.update
pkill -RTMIN+6 i3blocks pkill -RTMIN+6 i3blocks
/usr/bin/notify-send -i "$PIX/rss.gif" "RSS feed update complete."
note "RSS feed update complete." "$PIX/rss.gif"

View file

@ -15,4 +15,4 @@ case $BLOCK_BUTTON in
<b>Note:</b> Only one instance of newsboat (including updates) may be running at a time." ;; <b>Note:</b> Only one instance of newsboat (including updates) may be running at a time." ;;
esac esac
echo "$(newsboat -x print-unread | awk '{ print $1}' | sed s/^0$//g)$(cat ~/.config/newsboat/.update 2>/dev/null)" cat ~/.config/newsboat/.update 2>/dev/null || echo "$(newsboat -x print-unread | awk '{ print $1}' | sed s/^0$//g)$(cat ~/.config/newsboat/.update 2>/dev/null)"