Created
June 21, 2022 17:25
-
-
Save glimpsed/513fd6cbf52a41d3de41e7ae22b266ba to your computer and use it in GitHub Desktop.
How to hide macOS Dock icons
This file contains hidden or 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
Use native PlistBuddy command to do it: | |
/usr/libexec/PlistBuddy -c 'Add :LSUIElement bool true' /Applications/[AppName].app/Contents/Info.plist | |
Don't forget to change the [App Name]. | |
If you wish gonna back, run command: | |
/usr/libexec/PlistBuddy -c 'Delete :LSUIElement' /Applications/[AppName].app/Contents/Info.plist | |
via https://apple.stackexchange.com/a/349641 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment