Created
November 2, 2012 17:20
-
-
Save NickTomlin/4002891 to your computer and use it in GitHub Desktop.
Faster key rate for mac os x
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
# Disable press-and-hold for keys in favor of key repeat | |
defaults write NSGlobalDomain ApplePressAndHoldEnabled -bool false | |
# Set a blazingly fast keyboard repeat rate | |
defaults write NSGlobalDomain KeyRepeat -int 0 | |
[from](https://github.com/mathiasbynens/dotfiles/blob/master/.osx) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment