dots

my dotfiles
git clone https://git.awy.one/dots
Log | Files | Refs | Submodules | README | LICENSE

newsup (460B) - View raw


 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
#!/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=/run/user/1000
export WAYLAND_DISPLAY=wayland-1

pgrep -f newsraft$ && /usr/bin/wlrctl window focus title:newsraft && /usr/bin/wlrctl keyboard type R && exit

echo "🔃" >/tmp/newsupdate
pkill -RTMIN+6 ".*blocks|waybar"
/usr/bin/newsraft -e reload-all
rm -f /tmp/newsupdate
pkill -RTMIN+6 ".*blocks|waybar"