Last active
February 25, 2020 00:21
-
-
Save Zenexer/81b76b7bf99b1ea1946446dbd6b88c82 to your computer and use it in GitHub Desktop.
Fix Firefox's smooth scrolling to have the same snappy feel as Chrome, as well as some other tweaks.
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
# Apply these in about:config. | |
# Fix Firefox's smooth scrolling to have the same snappy feel as Chrome | |
general.smoothScroll.mouseWheel.durationMaxMS = 200 | |
general.smoothScroll.mouseWheel.durationMinMS = 100 | |
# Disable Pocket | |
extensions.pocket.enabled = false | |
# Enable ESNI and DoH | |
# https://wiki.mozilla.org/Trusted_Recursive_Resolver | |
# Test at https://netops.is/ | |
network.security.esni.enabled = true | |
network.trr.mode = 3 | |
network.trr.uri = https://cloudflare-dns.com/dns-query | |
network.trr.custom_uri = https://cloudflare-dns.com/dns-query | |
network.trr.bootstrapAddress = 1.1.1.1 | |
network.dns.skipTRR-when-parental-control-enabled = false |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment