From cc2c630be319d0b6b5a500b40243ea5dcb3623bc Mon Sep 17 00:00:00 2001 From: Thorin-Oakenpants Date: Sat, 4 Dec 2021 09:05:01 +0000 Subject: [PATCH] Destroyed 2.3 Concurrent Profiles (markdown) --- 2.3-Concurrent-Profiles.md | 57 -------------------------------------- 1 file changed, 57 deletions(-) delete mode 100644 2.3-Concurrent-Profiles.md diff --git a/2.3-Concurrent-Profiles.md b/2.3-Concurrent-Profiles.md deleted file mode 100644 index 2e5cdbf..0000000 --- a/2.3-Concurrent-Profiles.md +++ /dev/null @@ -1,57 +0,0 @@ -Once you have set up multiple profiles, either for an [installed](https://github.com/arkenfox/user.js/wiki/2.1-Multiple-Profiles) or [portable](https://github.com/arkenfox/user.js/wiki/2.2-Multiple-Profiles-%5BFirefox-Portable%5D) Firefox, you can use them one at at time (the default), or run them concurrently. - -Use the above links to learn about using the switches - * `-no-remote` (installed) - * `AllowMultipleInstances=true` (portable) - -These switches allow multiple profiles, multiple firefoxes, and even different firefox releases, to run simultaneously. You can even run portable and installed versions side by side. Every profile loaded must use `-no-remote` or `AllowMultipleInstances=true` as applicable. - -### :small_orange_diamond: Example - -Here is a sample `\AppData\Roaming\Mozilla\Firefox\profiles.ini` and it's matching Profile Manager -```ini -[General] -StartWithLastProfile=1 - -[Profile0] -Name=medium -IsRelative=0 -Path=D:\UserData\Firefox\Profiles\medium - -[Profile1] -Name=relaxed -IsRelative=0 -Path=D:\UserData\Firefox\Profiles\relaxed - -[Profile2] -Name=hardened -IsRelative=0 -Path=D:\UserData\Firefox\Profiles\hardened -``` - -![](https://github.com/arkenfox/user.js/blob/master/wikipiki/concurrent01.png) - -Here are four corresponding shortcuts -```js -"C:\Program Files\Mozilla Firefox\firefox.exe" -no-remote -p "medium" -"C:\Program Files\Mozilla Firefox\firefox.exe" -no-remote -p "hardened" -"C:\Program Files\Mozilla Firefox\firefox.exe" -no-remote -p "relaxed" -"C:\Program Files\Mozilla Firefox\firefox.exe" -p -``` -And here are all three profiles running concurrently, with both normal and private browsing mode windows. To help distinguish each profile visually, it is recommended to assign each one a theme. - -![](https://github.com/arkenfox/user.js/blob/master/wikipiki/concurrent02.png) - -### :small_orange_diamond: Caveats - -In FF52 and lower Fixed in FF53+ see [854126](https://bugzilla.mozilla.org/show_bug.cgi?id=854126), if you start Firefox in "normal mode" (i.e not in Private Browsing (PB) mode), PB mode windows (`File>New Private Window`), do not utilize the current theme, but do display the PB mode purple mask icon. Because of this it is also recommended that you add something extra - e.g. this could be familiar bookmarks on the bookmark toolbar such as banking sites in a hardened version. In the example, the bookmarks shown are simply renamed links to `about:config`. - -If you start Firefox in `Always use private browsing mode` (and this is true of any profile, concurrent or not), the PB mode purple mask icon is never shown, and *all* windows are in PB mode, even those opened with `File>New Window` as compared to `File>New Private Window`. The good news is that the themes *are* applied. - -When running profiles with `AllowMultipleInstances=true` (portable), external commands (such as clicking links in emails, double-clicking URL shortcuts, etc) will fail. Even profiles with `-no-remote` (installed) may fail - it depends on your system and the default browser registration. - -![](https://github.com/arkenfox/user.js/blob/master/wikipiki/concurrent03.png) - -![](https://github.com/arkenfox/user.js/blob/master/wikipiki/concurrent04.png) - -Note: you can still drag and drop shortcuts and paste links, you just can't use system integration to launch from an external application. \ No newline at end of file