diff --git a/README.md b/README.md index e0160c9..2d64012 100644 --- a/README.md +++ b/README.md @@ -423,6 +423,18 @@ defaults write com.apple.dock persistent-apps -array-add '{"tile-type"="spacer-t 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 The float number defines the show/hide delay in ms. ```bash