aboutsummaryrefslogtreecommitdiff
path: root/.local/bin/cron/newsup
blob: e74fd956c20956a2dfcba0c24d2139d10417602e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#!/bin/sh

# Set as a cron job to check for new RSS entries for newsraft.
# If newsraft is open, sends it an "R" key to refresh.

export XDG_RUNTIME_DIR=/tmp/hyprland
export WAYLAND_DISPLAY=wayland-1

# /usr/bin/notify-send "󰎕 Updating RSS feeds..."

pgrep -f newsraft$ && hyprctl --instance 0 dispatch sendshortcut ,R ,title:newsraft

echo 🔃 > /tmp/newsupdate
pkill -RTMIN+6 "${STATUSBAR:-waybar}"
/usr/bin/newsraft -e reload-all
rm -f /tmp/newsupdate
pkill -RTMIN+6 "${STATUSBAR:-waybar}"
# /usr/bin/notify-send "📰 RSS feed update complete."