summaryrefslogtreecommitdiffstats
path: root/games/etlegacy-from-source/files/openurl.sh
blob: 274f12d08d72bd24303a4f71842461a68016ad3d (plain)
#!/bin/sh
# use this script to customize the way the engine should open URLs

for test_browser in firefox seamonkey opera
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"

exit 0