Created
January 18, 2020 23:41
-
-
Save phinze/b118bce5e7edefe6f9778fd06bd90fd7 to your computer and use it in GitHub Desktop.
Remove all persistent apps from the macos dock
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
dockutil --list | grep persistent-apps | cut -d $'\t' -f1 | while read thing; do dockutil --remove "${thing}"; done |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment