mirror of
https://github.com/Ponce/slackbuilds
synced 2024-11-18 22:06:04 +01:00
153516fb03
Signed-off-by: Matteo Bernardini <ponce@slackbuilds.org> Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
15 lines
303 B
Bash
15 lines
303 B
Bash
#!/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
|