macos-defaults/docs/dock/static-only.md
2023-10-22 18:39:36 +02:00

952 B

title description head
Active applications only | Dock Only show opened apps in Dock.
meta
property content
og:title macOS defaults > Dock > Active applications only
meta
property content
og:description 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