Another copy of my dotfiles. Because I don't completely trust GitHub.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

19 lines
973 B

  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' | # First remove linebreaks and mutt sidebars:
  4. grep -aEo "$urlregex" | # grep only urls as defined above.
  5. uniq | # Ignore neighboring duplicates.
  6. sed "s/\(\.\|,\|;\|\!\\|\?\)$//;
  7. s/^www./http:\/\/www\./")" # xdg-open will not detect url without http
  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 -w "$WINDOWID" -i -p 'Follow which url?' -l 10)"
  12. echo "$chosen" | setsid xargs -n 1 xdg-open >/dev/null 2>&1 & ;;
  13. c) echo "$urls" | dmenu -w "$WINDOWID" -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