diff options
author | Boris Grozev <boris@jitsi.org> | 2014-01-15 09:41:23 +0100 |
---|---|---|
committer | Boris Grozev <boris@jitsi.org> | 2014-01-15 09:46:26 +0100 |
commit | 85c52a2753e5023c36c0addc35c725ac30d7adbd (patch) | |
tree | 5824e7f9dce2331c7ef1b011a90cd60d041f48b0 /lib/jitsi-defaults.properties | |
parent | 15cd77cd1181f507c667882a354d2f416890cc70 (diff) | |
download | jitsi-85c52a2753e5023c36c0addc35c725ac30d7adbd.zip jitsi-85c52a2753e5023c36c0addc35c725ac30d7adbd.tar.gz jitsi-85c52a2753e5023c36c0addc35c725ac30d7adbd.tar.bz2 |
Adds the "net.java.sip.communicator.impl.browserlauncher.LINUX_BROWSERS"
property which holds the list of browsers on linux.
It should contain a colon-separated list of browsers to try. Entries are tested using which(1),
so either names of executables in PATH or absolute paths can be used. The first one that works
is used. Example:
net.java.sip.communicator.impl.browserlauncher.LINUX_BROWSERS="chromium-browser:/opt/custom-firefox-install/bin/firefox"
Diffstat (limited to 'lib/jitsi-defaults.properties')
-rw-r--r-- | lib/jitsi-defaults.properties | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/lib/jitsi-defaults.properties b/lib/jitsi-defaults.properties index ac2f01f..c9987ed 100644 --- a/lib/jitsi-defaults.properties +++ b/lib/jitsi-defaults.properties @@ -179,3 +179,16 @@ net.java.sip.communicator.plugin.pluginmanager.SYSTEM_BUNDLES=\ gnu.java.zrtp4j,\ SDES4J,\ log4j + +#a colon-separated list of commands to be tried as browsers on linux +net.java.sip.communicator.impl.browserlauncher.LINUX_BROWSERS=xdg-open\ + :gnome-open\ + :iceweasel\ + :firefox\ + :chromium-browser\ + :google-chrome\ + :opera\ + :konqueror\ + :epiphany\ + :mozilla\ + :netscape |