-
-
Save wey-gu/cc499a1492fb2ceb47326784d284962c to your computer and use it in GitHub Desktop.
Mac OS X super fast keyboard speed
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
#!/usr/bin/env bash | |
# http://papers.ch/speeding-up-your-mac-osx-terminal-input/ | |
#echo "Disable press-and-hold for keys in favor of key repeat" | |
#defaults write NSGlobalDomain ApplePressAndHoldEnabled -bool false | |
echo "Set a blazingly fast keyboard repeat rate" | |
defaults write NSGlobalDomain KeyRepeat -int 2 | |
echo "Set a shorter Delay until key repeat" | |
defaults write NSGlobalDomain InitialKeyRepeat -int 12 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment