#!/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" ;; *) exec /usr/bin/xdg-open "$@" ;; esac