17 lines
311 B
Bash
17 lines
311 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
|
|
|
|
uri_handlers=(
|
|
["steam"]='^steam://.+'
|
|
["browser"]='.+'
|
|
)
|
|
|
|
mime_handlers=(
|
|
["sxiv"]='image/.+'
|
|
)
|
|
|
|
# vim: syntax=sh
|