Terminal Tuesday: How to make hidden app’s dock icon translucent

Dock hidden translucent icons

One of the lesser-known features of OS X is that if you right click on an app icon on the dock, you have the option to hide all of that app’s windows. While it’s great for when you’re trying to get things done, it can sometimes be confusing what apps are hidden and which ones are not, especially when you have a lot of apps running. This simple Terminal command can help fix that problem!

Simply type the following command into Terminal:Transdock

defaults write com.apple.Dock showhidden -bool YES; Killall Dock

As I have stated before, I recommend you type this into Terminal rather than copy and pasting it, as it gets you more comfortable with the command line.

Assuming you entered the command correctly, from now on, when an app is hidden, the app icon will be semi-transparent. This makes this much easier to quickly see what apps are hidden and which ones are not.

If you want to reverse the effect and bring it back to stock, simply replace the YES in the command with NO. As given below.

defaults write com.apple.Dock showhidden -bool NO; Killall Dock

What do you think of this Terminal command? Do you find it useful? Let us know in the comments!

Disclosure: iOSHacker may receive a commission if you purchase products through our affiliate links. For more visit our privacy policy page.
Total
0
Shares
Leave a Reply

Your email address will not be published. Required fields are marked *

This site uses Akismet to reduce spam. Learn how your comment data is processed.

Related Posts