st-urlhandler 767 B

1234567891011121314151617181920
  1. #!/bin/sh
  2. urlregex="(((http|https|gopher|gemini|ftp|ftps|git)://|www\\.)[a-zA-Z0-9.]*[:;a-zA-Z0-9./+@$&%?$\#=_~-]*)|((magnet:\\?xt=urn:btih:)[a-zA-Z0-9]*)"
  3. urls="$(sed 's/.*│//g' | tr -d '\n' |
  4. grep -aEo "$urlregex" |
  5. uniq |
  6. sed "s/\(\.\|,\|;\|\!\\|\?\)$//;
  7. s/^www./http:\/\/www\./")"
  8. [ -z "$urls" ] && exit 1
  9. while getopts "hoc" o; do case "${o}" in
  10. h) printf "Optional arguments for custom use:\\n -c: copy\\n -o: xdg-open\\n -h: Show this message\\n" && exit 1 ;;
  11. o) chosen="$(echo "$urls" | dmenu -i -p 'Follow which url?' -l 10)"
  12. setsid xdg-open "$chosen" >/dev/null 2>&1 & ;;
  13. c) echo "$urls" | dmenu -i -p 'Copy which url?' -l 10 | tr -d '\n' | xclip -selection clipboard ;;
  14. *) printf "Invalid option: -%s\\n" "$OPTARG" && exit 1 ;;
  15. esac done