small pixel drawing of a pufferfish dotfiles

bin/xdg-open

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
#!/bin/sh
case "${1%%:*}" in
	http|https)
		exec chromium "$1"
		;;
    *.pdf)
        exec zathura "$1"
        ;;
	mailto)
		exec aerc "$1"
		;;
	*)
		exec /usr/bin/xdg-open "$@"
		;;
esac