5

Is there a way to cancel or disable the minimize animation completely in Mac OSX?

William
  • 1,658

1 Answers1

4

To manage automatic window animations, use the commands below. NOTE THAT you'll have to quit and restart an application for the changes to take effect because it checks these settings on app launch.

Disable

To disable automatic window animations, enter the following Terminal command:

defaults write NSGlobalDomain NSAutomaticWindowAnimationsEnabled -bool NO

Enable

To enable window animations:

defaults write NSGlobalDomain NSAutomaticWindowAnimationsEnabled -bool YES

SaxDaddy
  • 353