#Remove Dock Icon of Mac OSX App
How to get rid of unnecessary dock icons.
##Generic
Navigate to the app and look in the container for info.plist. Open info.plist and add or modify the LSUIElement Element.
LSUIElement
| # opening and closing windows and popovers | |
| defaults write -g NSAutomaticWindowAnimationsEnabled -bool false | |
| # smooth scrolling | |
| defaults write -g NSScrollAnimationEnabled -bool false | |
| # showing and hiding sheets, resizing preference windows, zooming windows | |
| # float 0 doesn't work | |
| defaults write -g NSWindowResizeTime -float 0.001 |
#Remove Dock Icon of Mac OSX App
How to get rid of unnecessary dock icons.
##Generic
Navigate to the app and look in the container for info.plist. Open info.plist and add or modify the LSUIElement Element.
LSUIElement