mirror of
https://github.com/TTimo/doom3.gpl.git
synced 2026-03-20 08:59:42 +01:00
hello world
This commit is contained in:
17
neo/sys/linux/setup/image/openurl.sh
Normal file
17
neo/sys/linux/setup/image/openurl.sh
Normal file
@@ -0,0 +1,17 @@
|
||||
#!/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
|
||||
|
||||
Reference in New Issue
Block a user