aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xfirefox-profile5
1 files changed, 3 insertions, 2 deletions
diff --git a/firefox-profile b/firefox-profile
index 9a24a69..7d40d5e 100755
--- a/firefox-profile
+++ b/firefox-profile
@@ -1,3 +1,4 @@
+#!/bin/bash
#
# Wrapper around firefox
#
@@ -8,7 +9,7 @@ if ! which firefox &> /dev/null; then
fi
if [ ! -z "$1" ]; then
- iceweasel -p $1 -new-instance &
+ firefox -p $1 -new-instance &
else
- iceweasel --profilemanager -new-instance
+ firefox --profilemanager -new-instance
fi