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
```
#### Indicate Hidden App Icons
The bolean enable/disable this feature
#### Show Hidden App Icons
```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
```