aboutsummaryrefslogtreecommitdiff
path: root/devel/astah-community/files/mozilla
blob: 5ece63ef79c9f50b236348227874064e310a5d4c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
#!/bin/sh

# eliminate own path from PATH (without this, cause a inifinite loop)
PATH=${PATH#$(dirname $0)}

# add your favorite browser in the top of the list
for browser in mozilla linux-mozilla firefox linux-mozillafirebird opera linux-opera
do
    type $browser > /dev/null 2>&1 && exec $browser "$@"
done