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

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

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