From: Silvio Rhatto Date: Thu, 12 Jul 2018 23:31:29 +0000 (-0300) Subject: Fixes for firefox-profile X-Git-Url: https://gitweb.fluxo.info/?a=commitdiff_plain;h=5ed85d2bfb06d95f56d6cb12f197845a05ac2c9f;p=utils-x11.git Fixes for firefox-profile --- 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