Last active
January 12, 2021 17:47
-
-
Save midudev/aa970a3768665a10e6c8fc5d5c901907 to your computer and use it in GitHub Desktop.
Make your OSX great again
This file contains 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
# 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 | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
If you have observations or some input about it, please go here: https://twitter.com/midudev/status/989043651039891456