Increase keyboard key repeat rate on OS X

Increase keyboard key repeat rate on OS X

  • 2020-1-22
1
2
defaults write -g InitialKeyRepeat -int 10 # normal minimum is 15 (225 ms)
defaults write -g KeyRepeat -int 1 # normal minimum is 2 (30 ms)

Ref: https://apple.stackexchange.com/a/83923