diff options
Diffstat (limited to '.local/bin/rssadd')
-rwxr-xr-x | .local/bin/rssadd | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/.local/bin/rssadd b/.local/bin/rssadd new file mode 100755 index 0000000..8822fc5 --- /dev/null +++ b/.local/bin/rssadd @@ -0,0 +1,9 @@ +#!/bin/sh +! echo "$1" | grep "https*://\S\+\.[A-Za-z]\+\S*" >/dev/null && + notify-send "That doesn't look like a full URL." && exit +RSSFILE="$HOME/.config/newsboat/urls" +if awk '{print $1}' "$RSSFILE" | grep "^$1$" >/dev/null; then + notify-send "You already have this RSS feed." +else + echo "$1" >> "$RSSFILE" && notify-send "RSS feed added." +fi |