diff options
Diffstat (limited to '.config/firefox')
-rw-r--r-- | .config/firefox/chrome/userChrome.css | 1 | ||||
-rw-r--r-- | .config/firefox/user.js | 19 |
2 files changed, 20 insertions, 0 deletions
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); |