Skip to content

Instantly share code, notes, and snippets.

@glimpsed
Created June 21, 2022 17:25
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save glimpsed/513fd6cbf52a41d3de41e7ae22b266ba to your computer and use it in GitHub Desktop.
Save glimpsed/513fd6cbf52a41d3de41e7ae22b266ba to your computer and use it in GitHub Desktop.
How to hide macOS Dock icons
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