2014-09-25 13:26:15 +00:00
|
|
|
# Configuration file for sx-open
|
2014-09-25 13:50:08 +00:00
|
|
|
# Note that as sx-open checks the regexes in order, they should be placed in order from specific to less so.
|
2014-09-25 13:26:15 +00:00
|
|
|
|
|
|
|
declare -A uri_handlers
|
|
|
|
declare -A mime_handlers
|
2014-11-21 10:48:09 +00:00
|
|
|
declare -A filename_handlers
|
2014-09-25 13:26:15 +00:00
|
|
|
|
|
|
|
uri_handlers=(
|
|
|
|
["steam"]='^steam://.+'
|
|
|
|
["browser"]='.+'
|
|
|
|
)
|
|
|
|
|
2014-11-21 10:48:09 +00:00
|
|
|
filename_handlers=(
|
|
|
|
["javaws"]='^kvm.+?\.cgi$'
|
|
|
|
)
|
|
|
|
|
2014-09-25 13:26:15 +00:00
|
|
|
mime_handlers=(
|
|
|
|
["sxiv"]='image/.+'
|
|
|
|
)
|
|
|
|
|
|
|
|
# vim: syntax=sh
|