How to disable slow motion effect in Mac OS X (shift key)?

19

8

Mac OS X has a fantastic feature that enables you to play window effects in slow motion by holding down the Shift key while playing the animation (like minimize, maximize, Exposé, etc...)

As a matter of fact, I don't like it! :)

How can I disable it?

Daniel Silveira

Posted 2010-03-18T17:32:30.063

Reputation: 534

1

Looks like you should have just waited 8 years where it’s now disabled and people want it back on! (https://apple.stackexchange.com/questions/303106/how-to-enable-slow-genie-effect-in-macos-10-13-high-sierra)

– user535673 – 2018-10-30T20:14:55.470

1Cool - didn't know about that. And +1 for asking in a positive way. – Andrew Grimm – 2011-02-10T11:44:58.777

Answers

9

Open up Terminal.app

Type:

defaults write com.apple.finder FXEnableSlowAnimation -bool false

If you want to go back, use:

defaults write com.apple.finder FXEnableSlowAnimation -bool true

You'll need to restart the Finder after running the command.

Loïc Wolff

Posted 2010-03-18T17:32:30.063

Reputation: 1 947

3no workie, yosemite – mcmlxxxiii – 2015-01-28T02:07:14.107

4Sorry... it did not work. Maybe it doesn't works on Snow Leopard. – Daniel Silveira – 2010-03-20T17:47:13.420

2Agreed, it did not work for me when i tried to disable the slow animation for expose on snow leopard – emmby – 2010-04-26T15:16:14.803

3Eh.. didn't work for me either, Lion 10.7.4 – Pavel Alexeev – 2012-06-04T09:48:01.617

1no workie, mountain lion – Peter Ehrlich – 2013-11-16T02:56:29.023

1

At least for me, in Yosemite 10.10.3, the following answer from our friends at Ask Different worked: https://apple.stackexchange.com/a/115698


You can disable the hotkeys for slow motion effects by following these instructions:

  1. Open Terminal

  2. Go to ~/Library/Preferences by typing cd ~/Library/Preferences.

  3. Write open com.apple.symbolichotkeys.plist and press Enter.

  4. A window similar to this will open:

XCode PList Editor

  1. For items 34, 35, and 37, set enabled to NO.

  2. Restart your system.

  3. Enjoy.

Source

  1. MacWorld
  2. In Translation

SCdF

Posted 2010-03-18T17:32:30.063

Reputation: 293