diff options
author | Michael Kühnel <mail@michael-kuehnel.de> | 2015-03-06 08:59:29 +0100 |
---|---|---|
committer | Mathias Bynens <mathias@qiwi.be> | 2015-03-06 09:56:25 +0100 |
commit | 58b68ea33259d091cb8ce4aa1cf22d5dd6e03873 (patch) | |
tree | 37622a6c8d15915840b7f1a0f81a8fd73d34ec76 | |
parent | f646752640dcf1ec9cb453f913dd65ba622fd800 (diff) | |
download | dotfiles-58b68ea33259d091cb8ce4aa1cf22d5dd6e03873.tar.gz dotfiles-58b68ea33259d091cb8ce4aa1cf22d5dd6e03873.tar.bz2 dotfiles-58b68ea33259d091cb8ce4aa1cf22d5dd6e03873.zip |
.osx: Disable swipe navigation in Chrome for mouse users
Closes #508.
-rwxr-xr-x | .osx | 6 |
1 files changed, 5 insertions, 1 deletions
@@ -702,10 +702,14 @@ defaults write com.apple.messageshelper.MessageController SOInputLineSettings -d defaults write com.google.Chrome ExtensionInstallSources -array "https://gist.githubusercontent.com/" "http://userscripts.org/*" defaults write com.google.Chrome.canary ExtensionInstallSources -array "https://gist.githubusercontent.com/" "http://userscripts.org/*" -# Disable the all too sensitive backswipe +# Disable the all too sensitive backswipe on trackpads defaults write com.google.Chrome AppleEnableSwipeNavigateWithScrolls -bool false defaults write com.google.Chrome.canary AppleEnableSwipeNavigateWithScrolls -bool false +# Disable the all too sensitive backswipe on Magic Mouse +defaults write com.google.Chrome AppleEnableMouseSwipeNavigateWithScrolls -bool false +defaults write com.google.Chrome.canary AppleEnableMouseSwipeNavigateWithScrolls -bool false + # Use the system-native print preview dialog defaults write com.google.Chrome DisablePrintPreview -bool true defaults write com.google.Chrome.canary DisablePrintPreview -bool true |