From 660810a3ec22f038f8e46c955d3dd186004e3403 Mon Sep 17 00:00:00 2001 From: HJ <11689349+yokoffing@users.noreply.github.com> Date: Wed, 4 Oct 2023 10:15:58 -0400 Subject: [PATCH] Delete Smoothfox.js --- Smoothfox.js | 43 ------------------------------------------- 1 file changed, 43 deletions(-) delete mode 100644 Smoothfox.js diff --git a/Smoothfox.js b/Smoothfox.js deleted file mode 100644 index 8702f77..0000000 --- a/Smoothfox.js +++ /dev/null @@ -1,43 +0,0 @@ -/**************************************************************************************** - * Smoothfox * - * "Faber est suae quisque fortunae" * - * priority: better scrolling * - * version: July 2023 * - * url: https://github.com/yokoffing/Betterfox * - ***************************************************************************************/ - -/**************************************************************************************** - * OPTION 1: INSTANT SCROLLING (SIMPLE ADJUSTMENT) * -****************************************************************************************/ -// recommended for 60hz+ displays -user_pref("apz.overscroll.enabled", true); // not DEFAULT on Linux -user_pref("general.smoothScroll", true); // DEFAULT -user_pref("mousewheel.default.delta_multiplier_y", 275); // 250-400; adjust this number to your liking - -/**************************************************************************************** - * OPTION 2: SMOOTH SCROLLING * -****************************************************************************************/ -// recommended for 90hz+ displays -user_pref("apz.overscroll.enabled", true); // not DEFAULT on Linux -user_pref("general.smoothScroll", true); // DEFAULT -user_pref("general.smoothScroll.msdPhysics.enabled", true); -user_pref("mousewheel.default.delta_multiplier_y", 300); // 250-400; adjust this number to your liking - -/**************************************************************************************** - * OPTION 3: NATURAL SMOOTH SCROLLING V3 [MODIFIED] * -****************************************************************************************/ -// recommended for 120hz+ displays -// largely matches Chrome flags: Windows Scrolling Personality and Smooth Scrolling -// from https://github.com/AveYo/fox/blob/cf56d1194f4e5958169f9cf335cd175daa48d349/Natural%20Smooth%20Scrolling%20for%20user.js -user_pref("apz.overscroll.enabled", true); // not DEFAULT on 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