Created
December 8, 2024 03:34
-
-
Save jbfriedrich/e5046abb7a6a53d5fc2511b4e4ed5954 to your computer and use it in GitHub Desktop.
Re-eanble key repeat speed in macOS Sequoia
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
#!/bin/bash | |
#----------------------------------------------------------------------------- | |
# One thing I found frustrating was that setting key repeat delay and key | |
# repeat speed in System Settings was having no effect. Keys that had | |
# diacritics still just popped up the special character popover, and keys | |
# without didn’t do anything at all when held. Finally figured out the | |
# solution, which I’m posting here mostly so I can easily find it next time | |
# this happens. | |
#----------------------------------------------------------------------------- | |
# Source: https://brettterpstra.com/2024/12/03/key-repeat-in-sequoia/ | |
#----------------------------------------------------------------------------- | |
defaults write -g ApplePressAndHoldEnabled -bool false |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment