Make hidden dock items transparent ?

michaelsanford

Translator, Web Developer
I know TinkerTool will do that, and I remember doing it manually in the dock preferences but I can't remember which key to change.

If someone can remind me of which line to edit that would be cool, thanks !
 
From MacosxHints i believe, i had it in a text file:
This hint has worked fine since 10.0, so I was surprised that it wasn't on this site. You can make the items in your dock slightly transparent when they are hidden, so you have a visual cue that they aren't active. Just go into Terminal and type:
Code:
defaults write com.apple.dock showhidden -bool true
Then restart the Dock by typing:
Code:
killall Dock

Edit: BTW i've did this ages ago and it worked without any problems
 
For some reason that didn't work (maybe it added it to /Library and not ~/Library) but it did give me enough information to add these lines to ~/Library/Preferences/com.apple.dock.plist, right after the first key.
Code:
        <key>showhidden</key>
        <true/>

Thanks !
 
Yeah it is odd that it didn't work, especially since on my iMac's Panther I did it manually in the first place, but on my iBook that key wasn't present in the config file at all. Maybe it was a Cocktail thing...since I think Cocktail will do that too.

Thanks :)
 
Back
Top