1
0
mirror of https://github.com/yokoffing/Betterfox.git synced 2026-06-12 15:40:48 +05:30

Updated Common Overrides (markdown)

yokoffing
2024-12-17 14:17:14 -05:00
parent c1b22b7e5b
commit 3c1f88951a
+3 -18
@@ -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);