Geeky Mac Tip
-
Show More Recent Applications in Dock
In macOS, a handy option called Show recent applications in Dock (found in System Settings -> Desktop & Dock) adds a divider to the right-hand side of your Dock and after it displays any apps you recently used that aren't permanently docked. This option only shows the three most recently used apps that have since been closed. What if your workflow would be more efficient if it could show more?
If you're comfortable pasting commands into Terminal, it's perfectly possible to increase or decrease the number of recently opened apps that show in your Dock. Open a Terminal window and paste the following at the command prompt, then press Enter:
defaults write com.apple.dock show-recents -bool true;
defaults write com.apple.dock show-recent-count -int 10;
killall DockNote that the -int argument defines the number of recently opened apps that you want to display in the Dock after the divider (10 in this case). You can change the number to suit.