modifications for firefox

This commit is contained in:
rsc 2005-01-04 21:15:55 +00:00
parent 88e348435e
commit 4d0927f596

View file

@ -2,7 +2,7 @@
plumb1()
{
case $BROWSER in
case x-$BROWSER in
# Other browsers here
# ...
*opera*)
@ -14,9 +14,16 @@ plumb1()
*firefox*)
$BROWSER -remote 'openURL('$i',new-tab)'
;;
x-)
# run firefox as default!
firefox -remote 'openURL('$i',new-tab)'
;;
*mozilla*)
$BROWSER -remote 'openURL('$i',new-tab)'
;;
x-*)
$BROWSER -remote 'openURL('$i',new-tab)'
;;
esac
}