1
Fork 0
mirror of https://github.com/RGBCube/ncc synced 2025-07-28 02:27:44 +00:00

feat: disable 3-4 finger horizontal swiping & make 4 finger vertical swiping open mission control on darwin

This commit is contained in:
RGBCube 2025-04-13 19:00:35 +03:00
parent c4888c276b
commit a6293bb144
Signed by: RGBCube
SSH key fingerprint: SHA256:CzqbPcfwt+GxFYNnFVCqoN5Itn4YFrshg1TrnACpA5M

View file

@ -31,6 +31,14 @@ in {
NSAutomaticQuoteSubstitutionEnabled = false;
};
system.defaults.CustomSystemPreferences."com.apple.AppleMultitouchTrackpad" = {
TrackpadThreeFingerVertSwipeGesture = 0; # Four finger swipe up for mission control.
# Disable 3 finger horizontal stuff.
TrackpadFourFingerHorizSwipeGesture = 0;
TrackpadThreeFingerHorizSwipeGesture = 0;
};
system.defaults.CustomSystemPreferences."com.apple.Accessibility".ReduceMotionEnabled = 1;
system.defaults.universalaccess.reduceMotion = true;