Don
I need a quick way to enable or disable a setting and I can't for the life of me figure out how to do it.
The setting is Three Finger Drag which is now buried in the Accessibility preferences. I need to turn it on when I use some CAD apps so I can do a middle click and drag with the touchpad. I then want it off when I'm not using CAD apps as it interferes with some of the gestures I use in BTT.
I've tried making a script that uses defaults but even though I can get it to run and change the setting, it doesn't actually cause the setting to be enabled. This is my script:
defaults write com.apple.driver.AppleBluetoothMultitouch.trackpad TrackpadThreeFingerDrag -bool true
defaults write com.apple.AppleMultitouchTrackpad TrackpadThreeFingerDrag -bool true
I tried messing with PlistBuddy
/usr/LibExec/PlistBuddy -c "Set :TrackpadThreeFingerDrag.plist bool true" com.apple.driver.AppleBluetoothMultitouch.trackpad.plist
Doesn't work either.
Any ideas?
The setting is Three Finger Drag which is now buried in the Accessibility preferences. I need to turn it on when I use some CAD apps so I can do a middle click and drag with the touchpad. I then want it off when I'm not using CAD apps as it interferes with some of the gestures I use in BTT.
I've tried making a script that uses defaults but even though I can get it to run and change the setting, it doesn't actually cause the setting to be enabled. This is my script:
defaults write com.apple.driver.AppleBluetoothMultitouch.trackpad TrackpadThreeFingerDrag -bool true
defaults write com.apple.AppleMultitouchTrackpad TrackpadThreeFingerDrag -bool true
I tried messing with PlistBuddy
/usr/LibExec/PlistBuddy -c "Set :TrackpadThreeFingerDrag.plist bool true" com.apple.driver.AppleBluetoothMultitouch.trackpad.plist
Doesn't work either.
Any ideas?