Skip to content

Instantly share code, notes, and snippets.

@codekipple
Last active July 24, 2020 00:15
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 codekipple/ea3080d0775a54019447be8148c01e8c to your computer and use it in GitHub Desktop.
Save codekipple/ea3080d0775a54019447be8148c01e8c to your computer and use it in GitHub Desktop.
Change mac values for InitialKeyRepeat and KeyRepeat
The default values for InitialKeyRepeat and KeyRepeat are:-
InitialKeyRepeat: 25
KeyRepeat: 2
# Show InitialKeyRepeat and KeyRepeat values
defaults read NSGlobalDomain InitialKeyRepeat
defaults read NSGlobalDomain KeyRepeat
# Pre Catalina - Set values for InitialKeyRepeat and KeyRepeat
defaults write NSGlobalDomain InitialKeyRepeat -int 12
defaults write NSGlobalDomain KeyRepeat -int 1
# Post Catalina
defaults write -g InitialKeyRepeat -int 12 # normal minimum is 15 (225 ms)
defaults write -g KeyRepeat -int 1 # normal minimum is 2 (30 ms)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment