Skip to content

Instantly share code, notes, and snippets.

@eliasdorigoni
Last active July 19, 2022 18:39
Show Gist options
  • Save eliasdorigoni/3d316f41938a2e27770b07b349a982d0 to your computer and use it in GitHub Desktop.
Save eliasdorigoni/3d316f41938a2e27770b07b349a982d0 to your computer and use it in GitHub Desktop.
Disable app bouncing notification effect in MacOS dock
# Execute this on the terminal to disable app bouncing.
# Tested on MacOS 12 Monterey. It may work on other versions.
defaults write com.apple.dock no-bouncing -bool TRUE
killall Dock
# ---
# Change TRUE to FALSE to restore the effect.
defaults write com.apple.dock no-bouncing -bool FALSE
killall Dock
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment