mirror of
https://github.com/yannbertrand/macos-defaults
synced 2024-11-14 23:57:07 +00:00
952 B
952 B
title | description | head | ||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
Active applications only | Dock | Only show opened apps in Dock. |
|
Active applications only
Only show opened apps in Dock.
⚠️ Beware this command empties your Dock.
- Tested on macOS:
- Sonoma
- Monterey
- Parameter type: bool
Set to true
Only show active apps
defaults write com.apple.dock "static-only" -bool "true" && killall Dock
Set to false
(default value)
Show apps pinned to the dock
defaults write com.apple.dock "static-only" -bool "false" && killall Dock
Read current value
defaults read com.apple.dock "static-only"
Reset to default value
defaults delete com.apple.dock "static-only" && killall Dock