Jun 26
Here is a simple way to hide applications icons from the dock
- Find the application you want.
- Right/Control click on the applications name and select ‘View Package Contents’ from the drop down menu that appears
- In the window appears browse to the ‘Contents’ Folder and open the file named ‘info.plist’ with TextEdit (default)
- At the bottom of the info.plist file, and the following two lines, and make sure to intent them so they match the rest of the formatting:
<key>NSUIElement</key>
<string>1</string>
Save the file and you are done! To reverse this simple remove those two lines
Share on Facebook
Tweet This Post
Tagged with: dock • hide • info.plist
Jun 11
You can make the dock icons for all apps appear transparent when it is hidden/
Lauch Terminal and type in the following command:
defaults write com.apple.Dock showhidden -bool YES
followed by
Killall Dock
now you should be good to go
to test it, hide an app

Now When you hide an app (firefox in this case) its icon is transparent
this is very use full to tell which apps are hidden vs just open in the background or in other spaces
if you wish to reverse the trick:
defaults write com.apple.Dock showhidden -bool NO
followed by
Killall Dock

Now its back to normal
Share on Facebook
Tweet This Post
Tagged with: dock • hide • transparent