hyprdots

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

rssadd (554B)


      1 #!/bin/sh
      2 
      3 if echo "$1" | grep -q "https*://\S\+\.[A-Za-z]\+\S*" ; then
      4 	url="$1"
      5 else
      6 	url="$(grep -Eom1 '<[^>]+(rel="self"|application/[a-z]+\+xml)[^>]+>' "$1" |
      7 		grep -o "https?://[^\" ]")"
      8 
      9 	echo "$url" | grep -q "https*://\S\+\.[A-Za-z]\+\S*" ||
     10 		notify-send "That doesn't look like a full URL." && exit 1
     11 fi
     12 
     13 RSSFILE="${XDG_CONFIG_HOME:-$HOME/.config}/newsboat/urls"
     14 if awk '{print $1}' "$RSSFILE" | grep "^$url$" >/dev/null; then
     15 	notify-send "You already have this RSS feed."
     16 else
     17 	echo "$url" >> "$RSSFILE" && notify-send "RSS feed added."
     18 fi