remove redundant parts

Signed-off-by: fbt <fbt@fleshless.org>
This commit is contained in:
Jack L. Frost 2018-08-01 19:59:02 +03:00
parent 509f11cd87
commit bdfa690762
1 changed files with 5 additions and 4 deletions

View File

@ -1,6 +1,7 @@
#!syntax bash #!syntax bash
# Configuration file for sx-open # 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. # Note that as sx-open checks the regexes in order, they should be placed in order from specific to less so.
# Regexes imply '^$'
# Disable desktop notifications # Disable desktop notifications
#cfg notify false #cfg notify false
@ -23,10 +24,10 @@
# Or you can specify a regex for the entire uri: # Or you can specify a regex for the entire uri:
# uri <cmd> <regex>[ <regex> ...] # uri <cmd> <regex>[ <regex> ...]
#uri steam '^steam:' #uri steam 'steam:'
#uri browser '^(https?|ftp):' #uri browser '(https?|ftp):'
# Mime types for filesystem targets: # Mime types for filesystem targets:
# mime <cmd> <regex>[ <regex> ...] # mime <cmd> <regex>[ <regex> ...]
#mime sxiv '^image/' #mime sxiv 'image/'
#mime libreoffice '^application/msword$' #mime libreoffice 'application/msword'