From df9ac237602b1e4c2c3aee9f8979774830b12c7a Mon Sep 17 00:00:00 2001 From: Oliver Smith Date: Mon, 10 Aug 2020 10:29:57 +0200 Subject: [PATCH] src/prefs.js: less animations, one click urlbar select MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Thanks to Matej Ľach for suggesting these preferences in: https://gitlab.com/postmarketOS/pmaports/-/merge_requests/1488 --- src/prefs.js | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/src/prefs.js b/src/prefs.js index 2afdae6..a21fa95 100644 --- a/src/prefs.js +++ b/src/prefs.js @@ -20,3 +20,12 @@ pref('browser.newtabpage.enabled', false); // Allow UI customizations with userChrome.css and userContent.css pref('toolkit.legacyUserProfileCustomizations.stylesheets', true); + +// Select the entire URL with one click +pref('browser.urlbar.clickSelectsAll', true); + +// Disable cosmetic animations, save CPU +pref('toolkit.cosmeticAnimations.enabled', false); + +// Disable download animations, save CPU +pref('browser.download.animateNotifications', false);