#!/bin/sh set -eux case "$1" in *.ico|*.jpg|*.jpeg|*.png) feh "$1" ;; https://www.youtube.com/watch*) vlc "$1" ;; http*|*.svg|*.html) firefox "$1" ;; *.pdf) zathura "$1" ;; *.flac|*.ogg|*.mkv) vlc "$1" ;; *) /run/current-system/sw/bin/xdg-open "$1" ;; esac