From 3402eb8a8195d5eccb6d9b9266e26df0f924f7e0 Mon Sep 17 00:00:00 2001 From: darlanmendonca Date: Wed, 9 Dec 2015 17:34:05 -0200 Subject: [PATCH] add option to show application windows using scroll gestures --- README.md | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/README.md b/README.md index 695b02b..86a1e24 100644 --- a/README.md +++ b/README.md @@ -390,6 +390,19 @@ defaults write com.apple.dock showhidden -bool false && \ killall Dock ``` +#### Use Scroll Gestures to show Application Windows +Use your touchpad or mouse scroll wheel to interact with dock items. When enabled, this command allows you to use an upward scrolling gesture to open stacks, or use the same gesture on applications that are already running to show all windows associated with that application (also known as Exposé, pictured). + +```bash +# Enable +defaults write com.apple.dock scroll-to-open -bool TRUE && \ +killall Dock + +# Disable +defaults write com.apple.dock scroll-to-open -bool FALSE && \ +killall Dock +``` + ## Documents