Skip to content

Instantly share code, notes, and snippets.

@fancyremarker
Created November 23, 2012 17:33
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save fancyremarker/4136584 to your computer and use it in GitHub Desktop.
Save fancyremarker/4136584 to your computer and use it in GitHub Desktop.
Blazingly fast key repeat in OS X
#!/bin/sh
defaults write -g KeyRepeat -int 0 # <- 0 ms
defaults write -g InitialKeyRepeat -int 10 # <- 100 ms
defaults write -g ApplePressAndHoldEnabled -bool false
@fancyremarker
Copy link
Author

This sets key repeat to 0 ms, and initial key repeat to 100 ms. Logout is required for the changes to take effect.

For a superset of this functionality that doesn't require logging out, try KeyRemap4MacBook.

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