Created
December 5, 2016 21:08
-
-
Save bdunagan/35b7ced1aee755dc452e5d7a6292b87d to your computer and use it in GitHub Desktop.
Terminal: How to Disable Multi-Touch on Apple Magic Mouse
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Launch Terminal. | |
defaults write com.apple.AppleMultitouchMouse MouseMomentumScroll -bool NO | |
defaults write com.apple.AppleMultitouchMouse MouseHorizontalScroll -bool NO | |
defaults write com.apple.AppleMultitouchMouse MouseVerticalScroll -bool NO | |
defaults write com.apple.driver.AppleBluetoothMultitouchMouse MouseMomentumScroll -bool NO | |
defaults write com.apple.driver.AppleBluetoothMultitouchMouse MouseHorizontalScroll -bool NO | |
defaults write com.apple.driver.AppleBluetoothMultitouchMouse MouseVerticalScroll -bool NO | |
# Restart the computer. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment