Adds mailto to linkhandler

This commit is contained in:
Jonathan Hodgson 2021-02-13 20:18:58 +00:00
parent 4fc3d50c1f
commit 940c4e89f9

View file

@ -13,6 +13,7 @@ case "$url" in
*//*.youtube.*/*) open-youtube "$url"; exit 0 ;;
*"//videos.*"*) open-youtube "$url"; exit 0 ;;
*"//xkcd.com/"*) xkcd "$url"; exit 0 ;;
"mailto:"*) neomutt "$url"; exit 0 ;;
*) $browser "$url"; exit 0 ;;
#*) notify-send "$url"; exit ;;
esac