From 7d0eef281b4ef00eb17882554e8c0584e11fe10b Mon Sep 17 00:00:00 2001 From: Marcel Bischoff Date: Mon, 7 Mar 2016 14:27:52 +0100 Subject: [PATCH] Add Scroll Gestures to Dock --- README.md | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/README.md b/README.md index bcbe251..bf5e8c7 100644 --- a/README.md +++ b/README.md @@ -441,6 +441,18 @@ defaults delete com.apple.dock && \ killall Dock ``` +#### Scroll Gestures +Use your touchpad or mouse scroll wheel to interact with Dock items. Allows you to use an upward scrolling gesture to open stacks. Using the same gesture on applications that are running invokes Exposé/Mission Control. +```bash +# Enable +defaults write com.apple.dock scroll-to-open -bool true && \ +killall Dock + +# Disable (Default) +defaults write com.apple.dock scroll-to-open -bool false && \ +killall Dock +``` + #### Set Auto Show/Hide Delay The float number defines the show/hide delay in ms. ```bash