Hi All,
I need to disable most of the "More Gestures" (third tab of System Pref>Trackpad ) for MN Online Assessments.
I have tried a custom Config Profile/user level which I created by uploading the trackpad plist,
but while I was able to save it, it would not deploy.
The rest of my profiles appear to be working, and the test computer is receiving all other expected profiles.
MCX Settings in this area specifically say 10.6 only
So I'm trying to package using Composer>Monitor File System Changes
The files it appears to effect are
~/Library/Preferences/ByHost/.GlobalPreferences.xxxxxxxx.plist
~/Library/Preferences/com.apple.driver.AppleBluetoothMultitouch.trackpad.plist
~/Library/Preferences/.GlobalPreferences.plist
I have tried packaging and deploying every combination of these files
Deploy via login policy with: FEU, FUT, Fix ByHost Files
The settings are not applying on my target computer (and not after logging out and back in)
On my package creator computer with all desired boxes Unchecked,
and my target computer where the setting failed to take effect
I get the following in Terminal: (bot identical)
And same whether Mission Control> "Swipe up with three Fingers" is checked or not checked:
defaults read com.apple.driver.AppleBluetoothMultitouch.trackpad
{
Clicking = 1;
DragLock = 0;
Dragging = 0;
HIDScrollZoomModifierMask = 262144;
TrackpadCornerSecondaryClick = 0;
TrackpadFiveFingerPinchGesture = 0;
TrackpadFourFingerHorizSwipeGesture = 0;
TrackpadFourFingerPinchGesture = 2;
TrackpadFourFingerVertSwipeGesture = 0;
TrackpadHandResting = 1;
TrackpadHorizScroll = 1;
TrackpadMomentumScroll = 1;
TrackpadPinch = 1;
TrackpadRightClick = 1;
TrackpadRotate = 1;
TrackpadScroll = 1;
TrackpadThreeFingerDoubleTapGesture = 0;
TrackpadThreeFingerDrag = 0;
TrackpadThreeFingerHorizSwipeGesture = 0;
TrackpadThreeFingerVertSwipeGesture = 2;
TrackpadTwoFingerDoubleTapGesture = 1;
USBMouseStopsTrackpad = 0;
UserPreferences = 1;
migrationDone = 1;
version = 4;
}
I found this: Credit: (github.com/mathiasbynens)
which seems somewhat in the same realm, (and NEEDLESSLY COMPLEX to fricking check a box!!!)
# Trackpad: swipe between pages with three fingers
defaults write NSGlobalDomain AppleEnableSwipeNavigateWithScrolls -bool true
defaults -currentHost write NSGlobalDomain com.apple.trackpad.threeFingerHorizSwipeGesture -int 1
defaults write com.apple.driver.AppleBluetoothMultitouch.trackpad TrackpadThreeFingerHorizSwipeGesture -int 1
Anybody have other ideas?
Thanks much!
Sandy