Created
April 12, 2026 14:33
-
-
Save Shoozza/5e23b4c665d2c5542cd16a977258a03f to your computer and use it in GitHub Desktop.
snappy firefox scrollwheel
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| This makes firefox scroll behavoir snappier (similar to chrome/edge) | |
| Reference: https://www.reddit.com/r/firefox/comments/3p0q4y/deleted_by_user/ | |
| In about:config settings change the values from initial to snappy. | |
| initial values: | |
| #general.smoothScroll.mouseWheel.durationMaxMS = 150 | |
| #general.smoothScroll.mouseWheel.durationMinMS = 150 | |
| #mousewheel.acceleration.factor = 10 | |
| #mousewheel.min_line_scroll_amount = 5 | |
| snappy values: | |
| general.smoothScroll.mouseWheel.durationMaxMS = 50 | |
| general.smoothScroll.mouseWheel.durationMinMS = 25 | |
| mousewheel.acceleration.factor = 4 | |
| mousewheel.min_line_scroll_amount = 4 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment