Home >Common Problem >How to Make the Mac Dock Show Only Running Apps
We'll use a handy Terminal command to set up your Mac to only show apps that are actively open and running. No matter what version of macOS your system is running, you can use the following steps.
defaults write com.apple.dock static-only -bool true; killall Dock
That’s pretty much all you need to do to clean your Dock the easy way. Now the Mac Dock only shows running apps, and it's more like a taskbar than an app launcher.
This neat trick has been around for a while since Leopard and continues to work in macOS Monterey, Big Sur, and modern macOS versions.
If you change your mind and want the Dock to show inactive apps again as an app launcher, you can use another Terminal command to fulfill. let's see.
defaults write com.apple.dock static-only -bool false; killall Dock
defaults delete com.apple.dock static-only ; killall Dock
Your desktop will now refresh and the Dock will reload. From now on, it will also show apps that are not actively running and return to the Dock's default behavior.
The above is the detailed content of How to Make the Mac Dock Show Only Running Apps. For more information, please follow other related articles on the PHP Chinese website!