]> de.git.xonotic.org Git - xonotic/netradiant.git/blob - setup/openurl.sh
ok
[xonotic/netradiant.git] / setup / openurl.sh
1 #!/bin/sh
2 # use this script to customize the way the engine should open URLs
3
4 for test_browser in mozilla netscape
5 do
6   browser=`which $test_browser`
7   if [ "x$browser" != "x" ]
8   then
9     $browser -remote "openURL($1,new-window)" || $browser "$1"
10     exit
11   fi
12 done
13
14 xterm -e lynx "$1"