sx-open/sx-open.cfg

22 lines
391 B
Bash

# Configuration file for sx-open
# Note that as sx-open checks the regexes in order, they should be placed in order from specific to less so.
declare -A uri_handlers
declare -A mime_handlers
declare -A filename_handlers
uri_handlers=(
["steam"]='^steam://.+'
["browser"]='.+'
)
filename_handlers=(
["javaws"]='^kvm.+?\.cgi$'
)
mime_handlers=(
["sxiv"]='image/.+'
)
# vim: syntax=sh