This shows you the differences between two versions of the page.
Both sides previous revision Previous revision Next revision | Previous revision | ||
tech:app:start [2021/05/18 23:31] rk4n3 |
tech:app:start [2021/10/17 13:46] (current) rk4n3 |
||
---|---|---|---|
Line 375: | Line 375: | ||
First, add a profile by launching firefox like: ''firefox --new-instance -P profilename'' \\ | First, add a profile by launching firefox like: ''firefox --new-instance -P profilename'' \\ | ||
... and add a profile to suit the app you want to run in the minimal window. \\ | ... and add a profile to suit the app you want to run in the minimal window. \\ | ||
+ | Open firefox using the profile, and go to ''about:config'' in the URL bar. \\ | ||
+ | Change the value of ''toolkit.legacyUserProfileCustomizations.stylesheets'' to true. \\ | ||
Then, populate file ''$HOME/.mozilla/firefox/<profileid>.<profilename>/chrome/userChrome.css'' with: \\ | Then, populate file ''$HOME/.mozilla/firefox/<profileid>.<profilename>/chrome/userChrome.css'' with: \\ | ||
<code> | <code> | ||
Line 386: | Line 388: | ||
* !important may be added to force override, but not necessary | * !important may be added to force override, but not necessary | ||
*/ | */ | ||
- | #TabsToolbar {visibility: collapse;} | + | #TabsToolbar {visibility: collapse; !important; } |
- | #navigator-toolbox {visibility: collapse;} | + | #navigator-toolbox {visibility: collapse; !important; } |
#content browser {margin-right: -14px; margin-bottom: -14px;} | #content browser {margin-right: -14px; margin-bottom: -14px;} | ||
</code> | </code> |