diff options
author | Loek Le Blansch <loek@pipeframe.xyz> | 2024-09-01 10:15:30 +0200 |
---|---|---|
committer | Loek Le Blansch <loek@pipeframe.xyz> | 2024-09-01 10:15:30 +0200 |
commit | edf92699e07a00324a7cf06f27eb1350db658df7 (patch) | |
tree | d651680a6e996f4eee7afae2b63b970e579ac687 /.config/firefox/user.js | |
parent | d0a498a80b8cf634ecc69f049111fb1108282b1d (diff) |
various updates
- fcitx5 update (adds config keys, translated comments for some reason)
- firefox userChrome + user.js tweaks
- mbsyncrc SSLType -> TLSType
- copy-subs update
- vimrc update (hexokinase, small tweaks)
- picom shadow exclude tweaks for firefox
- remove whoami module from polybar
- ccpreview tweaks
- panic script does more now
Diffstat (limited to '.config/firefox/user.js')
-rw-r--r-- | .config/firefox/user.js | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/.config/firefox/user.js b/.config/firefox/user.js index 3644cb8..778631e 100644 --- a/.config/firefox/user.js +++ b/.config/firefox/user.js @@ -15,14 +15,12 @@ user_pref("dom.security.https_only_mode_ever_enabled", true); // smooth scrolling user_pref("general.smoothScroll", true); -user_pref("mousewheel.default.delta_multiplier_y", 85); user_pref("general.smoothScroll.msdPhysics.enabled", true); user_pref("general.smoothScroll.msdPhysics.continuousMotionMaxDeltaMS", 12); -user_pref("general.smoothScroll.msdPhysics.motionBeginSpringConstant", 800); -user_pref("general.smoothScroll.msdPhysics.regularSpringConstant", 800); user_pref("general.smoothScroll.msdPhysics.slowdownMinDeltaMS", 25); +user_pref("general.smoothScroll.msdPhysics.motionBeginSpringConstant", 1800); user_pref("general.smoothScroll.msdPhysics.slowdownMinDeltaRatio", "2"); -user_pref("general.smoothScroll.msdPhysics.slowdownSpringConstant", 40); +user_pref("general.smoothScroll.msdPhysics.slowdownSpringConstant", 60); user_pref("general.smoothScroll.currentVelocityWeighting", "1"); user_pref("general.smoothScroll.stopDecelerationWeighting", "1"); |