edge-frfox
edge-frfox copied to clipboard
Edge like smooth scrolling
This recommends tweaks that make the smooth scrolling more like edge
general.smoothScroll.currentVelocityWeighting: 0
general.smoothScroll.mouseWheel.durationMaxMS: 250
general.smoothScroll.stopDecelerationWeighting; 0.82
mousewheel.min_line_scroll_amount: 25
general.smoothScroll.msdPhysics.enabled: = true
Source: https://www.reddit.com/r/firefox/comments/mj6g9a/firefox_smooth_scroll_like_edge/
I have found better settings I will update this soon
IMHO best set is based on reddit (but now I cannot find it original source) CC @bmFtZQ
user_pref("general.smoothScroll", true);
user_pref("general.smoothScroll.currentVelocityWeighting", "0.15");
user_pref("general.smoothScroll.mouseWheel.durationMaxMS", 250);
user_pref("general.smoothScroll.mouseWheel.durationMinMS", 250);
user_pref("general.smoothScroll.msdPhysics.enabled", true);
user_pref("general.smoothScroll.msdPhysics.motionBeginSpringConstant", 400);
user_pref("general.smoothScroll.msdPhysics.regularSpringConstant", 600);
user_pref("general.smoothScroll.msdPhysics.slowdownMinDeltaMS", 120);
user_pref("general.smoothScroll.other.durationMaxMS", 500);
user_pref("general.smoothScroll.pages.durationMaxMS", 350);
user_pref("general.smoothScroll.stopDecelerationWeighting", "0.8");
user_pref("mousewheel.min_line_scroll_amount", 22);