dotfiles icon indicating copy to clipboard operation
dotfiles copied to clipboard

.macos: Try to activate 3-finger feature

Open kud opened this issue 7 years ago • 5 comments

# Trackpad: enable dragging with 3 fingers # not totally efficient yet
defaults -currentHost write NSGlobalDomain com.apple.mouse.tapBehavior -int 2
defaults write NSGlobalDomain com.apple.mouse.tapBehavior -int 2
defaults write com.apple.AppleMultitouchTrackpad Dragging -bool false
defaults write com.apple.driver.AppleBluetoothMultitouch.trackpad Dragging -bool false
defaults write com.apple.AppleMultitouchTrackpad DragLock -bool false
defaults write com.apple.driver.AppleBluetoothMultitouch.trackpad DragLock -bool false
defaults write com.apple.AppleMultitouchTrackpad TrackpadThreeFingerDrag -bool true
defaults write com.apple.driver.AppleBluetoothMultitouch.trackpad TrackpadThreeFingerDrag -bool true

I'm near the end of the command but it doesn't fully work. Any idea?

kud avatar Feb 02 '17 13:02 kud

The following two lines worked well for me:

# Enable 3-finger drag. (Moving with 3 fingers in any window "chrome" moves the window.)
defaults write com.apple.driver.AppleBluetoothMultitouch.trackpad TrackpadThreeFingerDrag -bool true
defaults write com.apple.AppleMultitouchTrackpad TrackpadThreeFingerDrag -bool true

adrw avatar Apr 13 '17 22:04 adrw

@adrw That doesn't seem to work for me (Mojave 10.14.2). Do you know how to get this in Mojave?

yochem avatar Feb 18 '19 20:02 yochem

@yochem try this following two lines?

# Trackpad: use three finger tap to Look up & data detectors
defaults write com.apple.driver.AppleBluetoothMultitouch.trackpad TrackpadThreeFingerTapGesture -int 2
defaults write com.apple.AppleMultitouchTrackpad TrackpadThreeFingerTapGesture -int 2

tshu-w avatar Feb 19 '19 03:02 tshu-w

@Voleking That works for me for the three finger tap gesture! Thanks. But I thought this issue was about dragging windows with three fingers. Enable it without defaults: System Preferences > Accessibility > Mouse & Trackpad > Trackpad options > Enable dragging > three finger drag. Example:

Example

yochem avatar Feb 19 '19 11:02 yochem

Oh, that doesn't seem to work either for three finger tap...

yochem avatar Feb 19 '19 11:02 yochem