How do you disable the zoom effect / window animations in the OS X Lion?

link|improve this question
Which window animation? – Vervious Jul 20 '11 at 19:32
feedback

migrated from stackoverflow.com Jul 20 '11 at 18:43

This question came from our site for professional and enthusiast programmers.

2 Answers

defaults write -g NSAutomaticWindowAnimationsEnabled -bool false
link|improve this answer
defaults read NSGlobalDomain |grep -i anim – godDLL Jul 25 '11 at 12:50
feedback

I Would recommend installing Secrets Pref Pane > http://secrets.blacktree.com/ it gives you access to loads of hidden options in Mac OS X. you will find the "Animate Window Zooms" option under the "Finder" section.

enter image description here

link|improve this answer
That's basically the same as defaults write -g NSAutomaticWindowAnimationsEnabled -bool false mentioned in my answer – Lri Jan 1 at 10:00
They both achieve the same thing yes, I find the prefpane is more convenient. – Wezly Jan 1 at 20:11
feedback

Your Answer

 
or
required, but never shown