blob: 13ab4a8510eb1f4b87f4877fd974f462dc9794f5 (
plain) (
blame)
1
2
3
4
5
6
|
#!/bin/sh
# entr command to run `queueandnotify` when newsboat queue is changed
[ "$(pgrep -x $(basename $0) | wc -l)" -gt 2 ] && exit
echo ~/.local/share/newsboat/queue | entr -p queueandnotify 2>/dev/null
|