Skip to content

Instantly share code, notes, and snippets.

@Zenexer
Last active February 25, 2020 00:21
Show Gist options
  • Save Zenexer/81b76b7bf99b1ea1946446dbd6b88c82 to your computer and use it in GitHub Desktop.
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.
# 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