summaryrefslogtreecommitdiffstats
path: root/pts-core/scripts/launch-browser.sh
blob: ab88b08991704c14d56457c668717e89b0386bd5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#!/bin/sh

if [ pts`which epiphany` != pts ]
then
	epiphany "$1"
elif [ pts`which firefox` != pts ]
then
	firefox "$1"
elif [ pts`which mozilla` != pts ]
then
	mozilla "$1"
else
	"URL: $1"
fi