From ccf49bf24d8ed65fd4020339e68a56fed287ab0b Mon Sep 17 00:00:00 2001 From: Marcel Bischoff Date: Mon, 7 Mar 2016 14:09:44 +0100 Subject: [PATCH] Add Icon Bounce Dock setting --- README.md | 12 ++++++++++++ 1 file changed, 12 insertions(+) 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