Multiple copies of TenFourFox
Hi Cameron,
I would like to run two copies of TenFourFox simultaneously each running with its own profile from a single activation click.
Currently I do some renaming via "Show package contents" and choose the profile appropriate to each named TFF.
Is it possible to run two, or more, copies of TenFourFox by directing each copy to its own profile folder?
Ged
Keyboard shortcuts
Generic
? | Show this help |
---|---|
ESC | Blurs the current field |
Comment Form
r | Focus the comment reply box |
---|---|
^ + ↩ | Submit the comment |
You can use Command ⌘
instead of Control ^
on Mac
Support Staff 1 Posted by Chris (chtrusch... on 17 Jul, 2021 09:51 PM
>>Is it possible to run two, or more, copies of TenFourFox by directing each copy to its own profile folder?
I don't see an obvious way how to do that. Once you start TenFourFox (no matter what you named the application, the executible is always 'firefox') the profile manager will look at Application Support/Firefox/profiles.ini, and then procede according to what it finds there. The state is either 'start with last profile' or 'choose profile'.
You could make an AppleScript app for each copy and start the browser from there. The script might do something like this:
- set variable $ to name of current TFF copy
- write Application Support/Firefox/profile.ini StartWithLastProfile=1
- write Application Support/Firefox/profile.ini Profile $ append 'Default=1'
- start Applications/$/Contents/MacOS/firefox
Support Staff 2 Posted by Cameron Kaiser on 17 Jul, 2021 10:11 PM
You can run them with different profile folders, but not (easily -- I guess you could write an AppleScript to do this) one click from the Finder. Something like entering
/Applications/TenFourFoxG5.app/Contents/MacOS/firefox -p profile_name &
as a command in the Terminal will start a profile calledprofile_name
. You need to have this profile already created; you can manage profiles with/Applications/TenFourFoxG5.app/Contents/MacOS/firefox -P
(a capitalP
this time). Obviously change the name of the application to what you're using (TenFourFox7450.app
, etc.).You can have multiple TenFourFoxes running at the same time with different profile folders; they won't interfere with each other. This is part of how foxboxes work, in fact.
3 Posted by Ged on 06 Oct, 2021 09:15 AM
Many thanks Cameron for that information. I am currently running with what amounts to your second option and I think that will have to do the job for me. I have renamed copies of TFF and have created several profiles to suit the work required. We just have to ensure we select the profile matching the renamed TFF to make sense of the activity currently running. As you mention foxboxes it seems to me that may be a better way for me to go as some options only talk to one site.