]> git.xonotic.org Git - xonotic/netradiant.git/blobdiff - setup/openurl.sh
the historic move: getting rid of all visual studio project stuff, now that the mingw...
[xonotic/netradiant.git] / setup / openurl.sh
diff --git a/setup/openurl.sh b/setup/openurl.sh
deleted file mode 100644 (file)
index d374a76..0000000
+++ /dev/null
@@ -1,14 +0,0 @@
-#!/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"