From 0d2b513c31f8f285f2f72643aca20d253a91abf1 Mon Sep 17 00:00:00 2001 From: Loek Le Blansch Date: Wed, 29 May 2024 22:03:43 +0200 Subject: add firefox config + userchrome (WIP) --- .config/firefox/chrome/userChrome.css | 1 + .config/firefox/user.js | 19 +++++++++++++++++++ 2 files changed, 20 insertions(+) create mode 100644 .config/firefox/chrome/userChrome.css create mode 100644 .config/firefox/user.js (limited to '.config/firefox') diff --git a/.config/firefox/chrome/userChrome.css b/.config/firefox/chrome/userChrome.css new file mode 100644 index 0000000..79d803c --- /dev/null +++ b/.config/firefox/chrome/userChrome.css @@ -0,0 +1 @@ +/* this works */ diff --git a/.config/firefox/user.js b/.config/firefox/user.js new file mode 100644 index 0000000..310c7b1 --- /dev/null +++ b/.config/firefox/user.js @@ -0,0 +1,19 @@ +// smooth scrolling +user_pref("general.smoothScroll", true); +user_pref("mousewheel.default.delta_multiplier_y", 75); +user_pref("general.smoothScroll.msdPhysics.enabled", true); +user_pref("general.smoothScroll.msdPhysics.continuousMotionMaxDeltaMS", 12); +user_pref("general.smoothScroll.msdPhysics.motionBeginSpringConstant", 600); +user_pref("general.smoothScroll.msdPhysics.regularSpringConstant", 650); +user_pref("general.smoothScroll.msdPhysics.slowdownMinDeltaMS", 25); +user_pref("general.smoothScroll.msdPhysics.slowdownMinDeltaRatio", "2"); +user_pref("general.smoothScroll.msdPhysics.slowdownSpringConstant", 250); +user_pref("general.smoothScroll.currentVelocityWeighting", "1"); +user_pref("general.smoothScroll.stopDecelerationWeighting", "1"); + +// enable chrome/userChrome.css +user_pref("toolkit.legacyUserProfileCustomizations.stylesheets", true); + +// enable userChrome debugging +user_pref("devtools.chrome.enabled", true); +user_pref("devtools.debugger.remote-enabled", true); -- cgit v1.2.3