1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
#!/bin/sh # Courtesy of https://drewdevault.com/2019/12/30/dotfiles.html case "${1%%:*}" in http|https|*.pdf) exec qutebrowser "$1" ;; mailto) exec aerc "$1" ;; gemini) exec amfora "$1" ;; *) exec /usr/bin/xdg-open "$@" ;; esac