I’m using Manjaro Linux and have multiple profiles set up in Firefox. Right now, when I click on the Firefox icon in the panel, it only opens my default profile. I then have to go to about:profiles and manually click “Launch profile in new browser” for each additional profile I want to open.
This is a bit tedious. I’m wondering if there’s a way to open all Firefox profiles at once when launching the app.
When starting Firefox with the command line, you can specify the profile you want to open with
-P
So
firefox -P "Joel User"
starts the profile ‘Joel User’.Further reading
Exactly this. Make a launch script that runs over all your profiles and launches them independently
Add
--no-remote
to start different profiles simultaneously.Example:
firefox -P 'Joel User' --no-remote
deleted by creator