Last active
February 27, 2016 18:01
-
-
Save mkholodnyak/ba866232bde336557db9 to your computer and use it in GitHub Desktop.
Ускоряет визуально основную анимацию на OS X
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Показ Mission Control, рабочий стол, App Expose — Включение | |
defaults write com.apple.dock expose-animation-duration -float 0.1 && killall Dock | |
# Показ Mission Control, рабочий стол, App Expose — Выключение | |
defaults delete com.apple.dock expose-animation-duration && killall Dock | |
# Переход в полноэкранный режим – Включение | |
defaults write -g NSWindowResizeTime -float 0.001 && killall Dock | |
# Переход в полноэкранный режим – Выключение | |
defaults delete -g NSWindowResizeTime && killall Dock |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment