aboutsummaryrefslogtreecommitdiff
path: root/firefox-profile
blob: 9a24a69bbae1f31ac4c354cba947a6b4876dd11f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#
# Wrapper around firefox
#

if ! which firefox &> /dev/null; then
  echo "Please install firefox"
  exit 1
fi

if [ ! -z "$1" ]; then
  iceweasel -p $1 -new-instance &
else
  iceweasel --profilemanager -new-instance
fi