mirror of
https://github.com/blendogames/quadrilateralcowboy.git
synced 2024-11-10 06:41:36 +00:00
18 lines
271 B
Bash
18 lines
271 B
Bash
|
#!/bin/sh
|
||
|
# opening URLs into your favorite web browser
|
||
|
# feel free to tweak this to your needs
|
||
|
|
||
|
if [ x`which firefox` != x ]
|
||
|
then
|
||
|
firefox "$1"
|
||
|
elif [ x`which mozilla` != x ]
|
||
|
then
|
||
|
mozilla "$1"
|
||
|
elif [ x`which opera` != x ]
|
||
|
then
|
||
|
opera "$1"
|
||
|
else
|
||
|
xterm -e lynx "$1"
|
||
|
fi
|
||
|
|