This commit is contained in:
Marcel Bischoff 2015-12-03 23:25:24 +01:00
parent 81ae6fb49e
commit 9e60d7b189

View File

@ -402,10 +402,14 @@ defaults write com.apple.Dock autohide-delay -float 0 &&\
killall Dock killall Dock
``` ```
#### Indicate Hidden App Icons #### Show Hidden App Icons
The bolean enable/disable this feature
```bash ```bash
defaults write com.apple.dock showhidden -bool TRUE &&\ # Enable
defaults write com.apple.dock showhidden -bool true && \
killall Dock
# Disable
defaults write com.apple.dock showhidden -bool false && \
killall Dock killall Dock
``` ```