mimeapps cleanup; rss added

This commit is contained in:
Luke Smith
2019-03-12 21:20:17 -04:00
parent b74f98ede6
commit 1acd5c6218
9 changed files with 18 additions and 13 deletions

9
.scripts/tools/rssadd Executable file
View File

@@ -0,0 +1,9 @@
#!/bin/sh
! echo "$1" | grep "https*://\S\+\.[A-Za-z]\+\S*" >/dev/null &&
notify-send -i "$PIX/rss.svg" "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 -i "$PIX/rss.svg" "You already have this RSS feed."
else
echo "$1" >> "$RSSFILE" && notify-send -i "$PIX/rss.svg" "RSS feed added."
fi