Very well, so I stand corrected: GMA950/X3100 older Macs are very usable under Yosemite.
I appreciate the honesty.
Actually, they are even more usable now! I managed to speed up Mission Control! How? Simple: obviously disabling the animations. As the regular users just type this in Terminal:
Code:
defaults write com.apple.dock expose-animation-duration -int 0
killall Dock
And magically MC (and the "show all windows" gesture) will not have that 2-3 secs delay anymore. It's at most instant!
If you want to enable the animations back simply type the commands:
Code:
defaults delete com.apple.dock expose-animation-duration
killall Dock
At the first try I had an issue with Launchpad not showing the background anymore, but now it's fine. Who ever uses Launchpad anyway..
EDIT: But in case you use it, there are similar commands for Launchpad.
Show immediately:
Code:
defaults write com.apple.dock springboard-show-duration -int 0
defaults write com.apple.dock springboard-hide-duration -int 0
killall Dock
Back to standard:
Code:
defaults delete com.apple.dock springboard-show-duration
defaults delete com.apple.dock springboard-hide-duration
killall Dock
Last edited: