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

Fast Nov 2022 (#81)

* sessionstore.interval
This commit is contained in:
yokoffing
2022-10-16 14:33:57 -04:00
committed by GitHub
parent 2969c59c44
commit 63c758c2c4
+19 -16
View File
@@ -7,23 +7,22 @@
* To make a change to preferences, you will have to edit the user.js file. * To make a change to preferences, you will have to edit the user.js file.
*/ */
/**************************************************************************** /****************************************************************************************
* FasterFox * * Fastfox *
* "Non ducor duco." * * "Non ducor duco" *
* priority: speedy browsing * * priority: speedy browsing *
* version: September 2022 * * version: November 2022 *
* url: https://github.com/yokoffing/Better-Fox * * url: https://github.com/yokoffing/Betterfox *
***************************************************************************/ ***************************************************************************************/
/**************************************************************************** /****************************************************************************************
* * * *
* [NOTE] For best performance on older hardware, you will need to test * * [NOTE] For best performance on older hardware, you will need to test *
* these settings individually, especially Webrender. * * these settings individually, especially Webrender. *
* * * *
****************************************************************************/ ****************************************************************************************/
// PREF: force enable all Webrender prefs // PREF: force enable all Webrender prefs
// DISABLING WILL NOT BE SUPPORTED SOON | https://groups.google.com/a/mozilla.org/g/dev-platform/c/__ZtiiEn0u0/m/fbTlD-I4AAAJ?pli=1
// [1] https://hacks.mozilla.org/2017/10/the-whole-web-at-maximum-fps-how-webrender-gets-rid-of-jank/ // [1] https://hacks.mozilla.org/2017/10/the-whole-web-at-maximum-fps-how-webrender-gets-rid-of-jank/
// [2] https://wiki.mozilla.org/Platform/GFX/WebRender_Where // [2] https://wiki.mozilla.org/Platform/GFX/WebRender_Where
// [3] https://www.reddit.com/r/firefox/comments/fo1jwz/make_firefox_faster/flhh5l2/ // [3] https://www.reddit.com/r/firefox/comments/fo1jwz/make_firefox_faster/flhh5l2/
@@ -31,31 +30,35 @@
// PREF: if your hardware doesn't support Webrender, you can fallback to Webrender's software renderer // PREF: if your hardware doesn't support Webrender, you can fallback to Webrender's software renderer
// [NOTE] Both preferences need to be "true" if you're using the software renderer. // [NOTE] Both preferences need to be "true" if you're using the software renderer.
// DISABLING WILL NOT BE SUPPORTED SOON | https://groups.google.com/a/mozilla.org/g/dev-platform/c/__ZtiiEn0u0/m/fbTlD-I4AAAJ?pli=1
// [1] https://www.ghacks.net/2020/12/14/how-to-find-out-if-webrender-is-enabled-in-firefox-and-how-to-enable-it-if-it-is-not/ // [1] https://www.ghacks.net/2020/12/14/how-to-find-out-if-webrender-is-enabled-in-firefox-and-how-to-enable-it-if-it-is-not/
//user_pref("gfx.webrender.software", true); //user_pref("gfx.webrender.software", true);
// PREF: Lazy Image Loading // PREF: Lazy Image Loading
// https://www.ghacks.net/2020/02/15/firefox-75-gets-lazy-loading-support-for-images/ // https://www.ghacks.net/2020/02/15/firefox-75-gets-lazy-loading-support-for-images/
user_pref("dom.image-lazy-loading.enabled", true); // default //user_pref("dom.image-lazy-loading.enabled", true); // DEFAULT
// PREF: control how tabs are loaded when a session is restored. // PREF: control how tabs are loaded when a session is restored
// true=Tabs are not loaded until they are selected (default) // true=Tabs are not loaded until they are selected (default)
// false=Tabs begin to load immediately. // false=Tabs begin to load immediately.
user_pref("browser.sessionstore.restore_on_demand", true); // default //user_pref("browser.sessionstore.restore_on_demand", true); // DEFAULT
//user_pref("browser.sessionstore.restore_pinned_tabs_on_demand", true); //user_pref("browser.sessionstore.restore_pinned_tabs_on_demand", true);
user_pref("browser.sessionstore.restore_tabs_lazily", true); // default //user_pref("browser.sessionstore.restore_tabs_lazily", true); // DEFAULT
// PREF: disable preSkeletonUI on startup // PREF: disable preSkeletonUI on startup
// May set to "true" if your hardware is very old. // May set to "true" if your hardware is very old.
//user_pref("browser.startup.preXulSkeletonUI", false); //user_pref("browser.startup.preXulSkeletonUI", false);
// PREF: set the minimum interval between session save operations
// Increasing this can help on older machines and some websites, as well as reducing writes
// [1] https://bugzilla.mozilla.org/1304389
//user_pref("browser.sessionstore.interval", 30000); // [DEFAULT: 15000]
// PREF: JPEG XL image format // PREF: JPEG XL image format
user_pref("image.jxl.enabled", true); user_pref("image.jxl.enabled", true);
// PREF: about:home startup cache // PREF: about:home startup cache
// A cache for the initial about:home document that is loaded by default at startup. // A cache for the initial about:home document that is loaded by default at startup
// The purpose of the cache is to improve startup performance. // The purpose of the cache is to improve startup performance
//user_pref("browser.startup.homepage.abouthome_cache.enabled", true); //user_pref("browser.startup.homepage.abouthome_cache.enabled", true);
// PREF: CSS Masonry Layout // PREF: CSS Masonry Layout