Add Icon Bounce Dock setting

This commit is contained in:
Marcel Bischoff 2016-03-07 14:09:44 +01:00
parent 89c70bdc70
commit ccf49bf24d

View File

@ -423,6 +423,18 @@ defaults write com.apple.dock persistent-apps -array-add '{"tile-type"="spacer-t
killall Dock killall Dock
``` ```
#### Icon Bounce
Global setting whether Dock icons should bounce when the respective application demands your attention.
```bash
# Enable (Default)
defaults write com.apple.dock no-bouncing -bool true && \
killall Dock
# Disable
defaults write com.apple.dock no-bouncing -bool false && \
killall Dock
```
#### Set Auto Show/Hide Delay #### Set Auto Show/Hide Delay
The float number defines the show/hide delay in ms. The float number defines the show/hide delay in ms.
```bash ```bash