#!/bin/sh # A wrapper for xdg-open to catch certain cases not caught by mimeapps.list case "${1%%:*}" in http|https|*.html) exec qutebrowser "$1" ;; *.FCStd) exec freecad "$1" ;; *.pdf) exec zathura "$1" ;; mailto) exec st -e bash -i -c "mail $1" ;; *) exec /usr/bin/xdg-open "$@" ;; esac