Last active
July 19, 2022 18:39
-
-
Save eliasdorigoni/3d316f41938a2e27770b07b349a982d0 to your computer and use it in GitHub Desktop.
Disable app bouncing notification effect in MacOS dock
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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