Add Scroll Gestures to Dock

This commit is contained in:
Marcel Bischoff 2016-03-07 14:27:52 +01:00
parent f349ea4acd
commit 7d0eef281b

View File

@ -441,6 +441,18 @@ defaults delete com.apple.dock && \
killall 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 #### Set Auto Show/Hide Delay
The float number defines the show/hide delay in ms. The float number defines the show/hide delay in ms.
```bash ```bash