Skip to content

Instantly share code, notes, and snippets.

@midudev
Last active January 12, 2021 17:47
Show Gist options
  • Save midudev/aa970a3768665a10e6c8fc5d5c901907 to your computer and use it in GitHub Desktop.
Save midudev/aa970a3768665a10e6c8fc5d5c901907 to your computer and use it in GitHub Desktop.
Make your OSX great again
# sh ./animations.sh
# set keyboard repeat rate to 0, so instant
defaults write -g InitialKeyRepeat -int 10 # normal minimum is 15 (225 ms)
defaults write -g KeyRepeat -int 1 # normal minimum is 2 (30 ms)
# instant quick look animation
defaults write -g QLPanelAnimationDuration -float 0
# increase speed of animation when resizing window of Cocoa apps
defaults write NSGlobalDomain NSWindowResizeTime -float 0.001
# avoid animation when opening apps from dock
defaults write com.apple.dock launchanim -bool false
# bye delay when hiding dock
defaults write com.apple.Dock autohide-delay -float 0
# and speed up animation for Dock on hide and show
defaults write com.apple.dock autohide-time-modifier -float 0.25;killall Dock
# speed up animations for Mission Control
defaults write com.apple.dock expose-animation-duration -float 0.1
# maximize window faster
defaults write -g NSWindowResizeTime -float 0.003
@midudev
Copy link
Author

midudev commented Apr 25, 2018

If you have observations or some input about it, please go here: https://twitter.com/midudev/status/989043651039891456

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment