newsup (669B)
1 #!/bin/sh 2 3 # Set as a cron job to check for new RSS entries for newsboat. 4 # If newsboat is open, sends it an "R" key to refresh. 5 pid=$(pgrep -x Hyprland) 6 var="DBUS_SESSION_BUS_ADDRESS" 7 export DBUS_SESSION_BUS_ADDRESS=$(grep -E -z "$var" "/proc/$pid/environ" | sed 's/DBUS_SESSION_BUS_ADDRESS=//') 8 9 /usr/bin/notify-send "📰 Updating RSS feeds..." 10 11 pgrep -f newsboat$ && /usr/bin/xdotool key --window "$(/usr/bin/xdotool search --name "^newsboat$")" R && exit 12 13 echo 🔃 > /tmp/newsupdate 14 pkill -RTMIN+6 "${STATUSBAR:-waybar}" 15 /usr/bin/newsboat -x reload 16 rm -f /tmp/newsupdate 17 pkill -RTMIN+6 "${STATUSBAR:-waybar}" 18 /usr/bin/notify-send "📰 RSS feed update complete."