Disable icon bouncing in the Dock on Mac

How to toggle dock icon bouncing on and off on mac. Icon bouncing can be very distracting, and sometimes the cause can be entirely intentional. E.g. A disconnected ssh tunnel; this is how you turn off the little annoyance.

168 views
d

By. Jacob

Created: 2023-09-23 00:00

1. First disable the bouncing:

defaults write com.apple.dock no-bouncing -bool TRUE

2. Then kill the dock (it will be automatically be restarted):

killall Dock

.plist files are stored in ~/Library/Preferences.

Icons bouncing is distracting

Icons bouncing in the MacOS Dock, together with the delay-infused sabotaged Caps Lock button, and various other little annoyances, is one of the most horrendously irritating things I have come across after I got my hands on a Macbook Pro (M1); typically the icons will bounce continuously until you react to it, and sometimes there is no way to stop an app icon from bouncing except closing the program. This is especially annoying when the bouncing is caused by something like a disconnected ssh tunnel — because you might actually intend it to remain disconnected!

Closing programs is a cause for extra stress for me, because what happens when closing a program is not very well defined or consistent across different programs. It may very well depend entirely on the specific program you are working with.

Toggle bouncing on/off

Disable icon bouncing:

defaults write com.apple.dock no-bouncing -bool TRUE

Enable icon bouncing:

defaults write com.apple.dock no-bouncing -bool FALSE

After making changes to com.apple.dock you will also need to restart the dock for the changes to go into effect:

killall Dock

What is the defaults command on mac?

The defaults command is used to read and edit property lists (plists); app configuration options on mac are often stored within these "plists", and can be changed through existing GUI controls or through the terminal using the defaults write:

defaults write com.apple.dock orientation left

If you have Xcode installed, you can also edit .plist files by double clicking them in MAC Finder, and for Visual Studio Code there might be a plugin for reading .plist files.

There are more advanced usage options available than covered here; you can always read the man page from your terminal to find out more:

man defaults

Reading a .plist from terminal

The .plist is unfortunately in a binary format, so it can not easily be viewed and edited with nano, but the defaults command can be used instead. E.g:

defaults read com.apple.dock.plist

Links

  1. Edit property lists in Terminal on Mac - support.apple.com

Tell us what you think:

  1. How to disable annoying play, next and previous controls in Finder on Mac.
  2. A really strange bug with MacBook Pro M1 seemingly shifts the volume balance randomly.
  3. Missing delete key, no editable path field in finder, and no cut option when moving files around; this is just a few of the usability problems I have run into on Mac so far.
  4. I got an MX Master 3 For my MacBook Pro, but I was very surprised to find it also works for Linux and Windows.

More in: Mac