]> gitweb.fluxo.info Git - utils-x11.git/commitdiff
Fixes for firefox-profile
authorSilvio Rhatto <rhatto@riseup.net>
Thu, 12 Jul 2018 23:31:29 +0000 (20:31 -0300)
committerSilvio Rhatto <rhatto@riseup.net>
Thu, 12 Jul 2018 23:31:29 +0000 (20:31 -0300)
firefox-profile

index 9a24a69bbae1f31ac4c354cba947a6b4876dd11f..7d40d5e417b69ff6ba851ec3f0f5db0d36f5472b 100755 (executable)
@@ -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