diff --git a/Common-Overrides.md b/Common-Overrides.md index 4c85c18..0624f5e 100644 --- a/Common-Overrides.md +++ b/Common-Overrides.md @@ -19,24 +19,6 @@ To enable certain functions, `copy+paste` the appropriate prefs to the `MY OVERR *** -### Theme - -Firefox follows the OS's light or dark [theme](https://support.mozilla.org/en-US/kb/use-themes-change-look-of-firefox#w_managing-themes) for buttons, menus, and windows, but not settings pages and websites. Betterfox overrides this to include settings pages and websites. - -However, you can set Firefox's theme to be the opposite of your OS theme using the options below. - -* `☰` *→ Settings → General → Language and Appearance → Website appearance* - -```javascript -// PREF: preferred color scheme for websites and sub-pages -// 0 = Dark theme -// 1 = Light theme -// 2 = match OS theme [Betterfox default] -user_pref("layout.css.prefers-color-scheme.content-override", 2); -``` - -*** - ### Font improvement Firefox's text rendering on Windows is awful. This makes it better. @@ -60,6 +42,9 @@ We recommend using [Bitwarden](https://addons.mozilla.org/en-US/firefox/addon/bi // PREF: restore login manager user_pref("signon.rememberSignons", true); +// PREF: pop-up to save logins for a new site +user_pref("signon.formlessCapture.enabled", true); + // PREF: restore address and credit card manager user_pref("extensions.formautofill.addresses.enabled", true); user_pref("extensions.formautofill.creditCards.enabled", true);