mirror of
https://github.com/id-Software/GtkRadiant.git
synced 2026-03-20 08:59:32 +01:00
The GtkRadiant sources as originally released under the GPL license.
This commit is contained in:
14
setup/openurl.sh
Normal file
14
setup/openurl.sh
Normal file
@@ -0,0 +1,14 @@
|
||||
#!/bin/sh
|
||||
# use this script to customize the way the engine should open URLs
|
||||
|
||||
for test_browser in mozilla netscape
|
||||
do
|
||||
browser=`which $test_browser`
|
||||
if [ "x$browser" != "x" ]
|
||||
then
|
||||
$browser -remote "openURL($1,new-window)" || $browser "$1"
|
||||
exit
|
||||
fi
|
||||
done
|
||||
|
||||
xterm -e lynx "$1"
|
||||
Reference in New Issue
Block a user