Created
March 17, 2018 16:53
-
-
Save lemonkey/866ff3308afb8c0bc86ae59dd610a791 to your computer and use it in GitHub Desktop.
macOS: fix keyboard repeat rate
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
#!/bin/bash | |
# 20180315 | |
# https://apple.stackexchange.com/questions/10467/how-to-increase-keyboard-key-repeat-rate-on-os-x | |
defaults write -g InitialKeyRepeat -int 10 # 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