From b77d5b2b5b72eec4d9d256df329e93addea66403 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sergio=20La=C3=ADn?= Date: Fri, 10 May 2024 23:51:46 +0200 Subject: [PATCH] =?UTF-8?q?=F0=9F=92=AC=20comments(browser):=20smoothfox?= =?UTF-8?q?=20unsued=20options?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .config/browser/user.js | 40 ++++++++++++++++++++-------------------- 1 file changed, 20 insertions(+), 20 deletions(-) diff --git a/.config/browser/user.js b/.config/browser/user.js index b8d962c8..c61fed0f 100644 --- a/.config/browser/user.js +++ b/.config/browser/user.js @@ -291,19 +291,19 @@ user_pref("default-browser-agent.enabled", false); ****************************************************************************************/ // credit: https://github.com/black7375/Firefox-UI-Fix // only sharpen scrolling -user_pref("apz.overscroll.enabled", true); // DEFAULT NON-LINUX -user_pref("mousewheel.min_line_scroll_amount", 10); // 10-40; adjust this number to your liking; default=5 -user_pref("general.smoothScroll.mouseWheel.durationMinMS", 80); // default=50 -user_pref("general.smoothScroll.currentVelocityWeighting", "0.15"); // default=.25 -user_pref("general.smoothScroll.stopDecelerationWeighting", "0.6"); // default=.4 +// user_pref("apz.overscroll.enabled", true); // DEFAULT NON-LINUX +// user_pref("mousewheel.min_line_scroll_amount", 10); // 10-40; adjust this number to your liking; default=5 +// user_pref("general.smoothScroll.mouseWheel.durationMinMS", 80); // default=50 +// user_pref("general.smoothScroll.currentVelocityWeighting", "0.15"); // default=.25 +// user_pref("general.smoothScroll.stopDecelerationWeighting", "0.6"); // default=.4 /**************************************************************************************** * OPTION: INSTANT SCROLLING (SIMPLE ADJUSTMENT) * ****************************************************************************************/ // recommended for 60hz+ displays -user_pref("apz.overscroll.enabled", true); // DEFAULT NON-LINUX -user_pref("general.smoothScroll", true); // DEFAULT -user_pref("mousewheel.default.delta_multiplier_y", 275); // 250-400; adjust this number to your liking +// user_pref("apz.overscroll.enabled", true); // DEFAULT NON-LINUX +// user_pref("general.smoothScroll", true); // DEFAULT +// user_pref("mousewheel.default.delta_multiplier_y", 275); // 250-400; adjust this number to your liking /**************************************************************************************** * OPTION: SMOOTH SCROLLING * @@ -320,18 +320,18 @@ user_pref("mousewheel.default.delta_multiplier_y", 300); // 250-400; adjust this // credit: https://github.com/AveYo/fox/blob/cf56d1194f4e5958169f9cf335cd175daa48d349/Natural%20Smooth%20Scrolling%20for%20user.js // recommended for 120hz+ displays // largely matches Chrome flags: Windows Scrolling Personality and Smooth Scrolling -user_pref("apz.overscroll.enabled", true); // DEFAULT NON-LINUX -user_pref("general.smoothScroll", true); // DEFAULT -user_pref("general.smoothScroll.msdPhysics.continuousMotionMaxDeltaMS", 12); -user_pref("general.smoothScroll.msdPhysics.enabled", true); -user_pref("general.smoothScroll.msdPhysics.motionBeginSpringConstant", 600); -user_pref("general.smoothScroll.msdPhysics.regularSpringConstant", 650); -user_pref("general.smoothScroll.msdPhysics.slowdownMinDeltaMS", 25); -user_pref("general.smoothScroll.msdPhysics.slowdownMinDeltaRatio", 2.0); -user_pref("general.smoothScroll.msdPhysics.slowdownSpringConstant", 250); -user_pref("general.smoothScroll.currentVelocityWeighting", 1.0); -user_pref("general.smoothScroll.stopDecelerationWeighting", 1.0); -user_pref("mousewheel.default.delta_multiplier_y", 300); // 250-400; adjust this number to your liking +// user_pref("apz.overscroll.enabled", true); // DEFAULT NON-LINUX +// user_pref("general.smoothScroll", true); // DEFAULT +// user_pref("general.smoothScroll.msdPhysics.continuousMotionMaxDeltaMS", 12); +// user_pref("general.smoothScroll.msdPhysics.enabled", true); +// user_pref("general.smoothScroll.msdPhysics.motionBeginSpringConstant", 600); +// user_pref("general.smoothScroll.msdPhysics.regularSpringConstant", 650); +// user_pref("general.smoothScroll.msdPhysics.slowdownMinDeltaMS", 25); +// user_pref("general.smoothScroll.msdPhysics.slowdownMinDeltaRatio", 2.0); +// user_pref("general.smoothScroll.msdPhysics.slowdownSpringConstant", 250); +// user_pref("general.smoothScroll.currentVelocityWeighting", 1.0); +// user_pref("general.smoothScroll.stopDecelerationWeighting", 1.0); +// user_pref("mousewheel.default.delta_multiplier_y", 300); // 250-400; adjust this number to your liking /**************************************************************************** * END: BETTERFOX *