blob: 274f12d08d72bd24303a4f71842461a68016ad3d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
#!/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
|