summaryrefslogtreecommitdiffstats
path: root/.scripts/cron
diff options
context:
space:
mode:
authorLuke Smith <luke@lukesmith.xyz>2018-12-18 14:23:36 -0500
committerLuke Smith <luke@lukesmith.xyz>2018-12-18 14:23:36 -0500
commit1283445b2268a763bdef273fe2b61bbeab9520b7 (patch)
treea309e767000918f2a4b7f9f332c0c4dbf040bba7 /.scripts/cron
parent1478dca4f48df534681f97ee01bfddd66b80d281 (diff)
downloadeibhear-1283445b2268a763bdef273fe2b61bbeab9520b7.tar.gz
eibhear-1283445b2268a763bdef273fe2b61bbeab9520b7.tar.zst
eibhear-1283445b2268a763bdef273fe2b61bbeab9520b7.zip
newsup fixes for notify-send if newsboat open
Diffstat (limited to '.scripts/cron')
-rwxr-xr-x.scripts/cron/newsup12
1 files changed, 5 insertions, 7 deletions
diff --git a/.scripts/cron/newsup b/.scripts/cron/newsup
index 81c9b01..598cced 100755
--- a/.scripts/cron/newsup
+++ b/.scripts/cron/newsup
@@ -1,18 +1,16 @@
#!/bin/sh
-
# Set as a cron job to check for new RSS entries for newsboat.
-# Note that newsboat cannot be opened during the sync and this
-# sync cannot run while another instance of newsboat is open.
+# If newsboat is open, sends it an "R" key to refresh.
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
pkill -RTMIN+6 i3blocks
-
/usr/bin/newsboat -x reload
rm -f ~/.config/newsboat/.update
pkill -RTMIN+6 i3blocks
-
-note "RSS feed update complete." "$PIX/rss.gif"
+/usr/bin/notify-send -i "$PIX/rss.gif" "RSS feed update complete."