Skip to content
Snippets Groups Projects
Commit b37bf4ec authored by nkour's avatar nkour
Browse files

common/helpers also does exo-open

parent d63d78be
No related branches found
No related tags found
No related merge requests found
......@@ -404,6 +404,8 @@ def launch_browser_mailer(kind, uri):
command = 'gnome-open'
elif gajim.config.get('openwith') == 'kfmclient exec':
command = 'kfmclient exec'
elif gajim.config.get('openwith') == 'exo-open':
command = 'exo-open'
elif gajim.config.get('openwith') == 'custom':
if kind == 'url':
command = gajim.config.get('custombrowser')
......@@ -429,6 +431,8 @@ def launch_file_manager(path_to_open):
command = 'gnome-open'
elif gajim.config.get('openwith') == 'kfmclient exec':
command = 'kfmclient exec'
elif gajim.config.get('openwith') == 'exo-open':
command = 'exo-open'
elif gajim.config.get('openwith') == 'custom':
command = gajim.config.get('custom_file_manager')
if command == '': # if no app is configured
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment