mirror of
https://github.com/yannbertrand/macos-defaults
synced 2024-11-14 23:57:07 +00:00
1.1 KiB
1.1 KiB
title | description | head | ||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
Scroll to Exposé app | Dock | Scroll up on a Dock icon to show all Space's opened windows for an app, or open stack. |
|
Scroll to Exposé app
Scroll up on a Dock icon to show all Space's opened windows for an app, or open stack.
- Tested on macOS:
- Sonoma
- Ventura
- Monterey
- Big Sur
- Catalina
- Mojave
- Parameter type: bool
Set to true
Enable
defaults write com.apple.dock "scroll-to-open" -bool "true" && killall Dock
Set to false
(default value)
Disable
defaults write com.apple.dock "scroll-to-open" -bool "false" && killall Dock
Read current value
defaults read com.apple.dock "scroll-to-open"
Reset to default value
defaults delete com.apple.dock "scroll-to-open" && killall Dock