aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMichael Kühnel <mail@michael-kuehnel.de>2015-03-06 08:59:29 +0100
committerMathias Bynens <mathias@qiwi.be>2015-03-06 09:56:25 +0100
commit58b68ea33259d091cb8ce4aa1cf22d5dd6e03873 (patch)
tree37622a6c8d15915840b7f1a0f81a8fd73d34ec76
parentf646752640dcf1ec9cb453f913dd65ba622fd800 (diff)
downloaddotfiles-58b68ea33259d091cb8ce4aa1cf22d5dd6e03873.tar.gz
dotfiles-58b68ea33259d091cb8ce4aa1cf22d5dd6e03873.tar.bz2
dotfiles-58b68ea33259d091cb8ce4aa1cf22d5dd6e03873.zip
.osx: Disable swipe navigation in Chrome for mouse users
Closes #508.
-rwxr-xr-x.osx6
1 files changed, 5 insertions, 1 deletions
diff --git a/.osx b/.osx
index 617dc74..0e67b32 100755
--- a/.osx
+++ b/.osx
@@ -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