Mac defaults

From ihaveahax's Site
Revision as of 03:46, 22 January 2022 by Ihaveahax (talk | contribs) (Created page with "Things that could be interesting to use with <code>defaults write</code>. I needed this when I did yet another reinstall. == Enable key repeat == Allows for holding a key to repeat the character instead of bringing up the accents prompt. It can be done per-app too. <syntaxhighlight lang="bash"> defaults write -g ApplePressAndHoldEnabled 0 # global defaults write com.jetbrains.pycharm ApplePressAndHoldEnabled 0 # per-app </syntaxhighlight> Category:macOS")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigationJump to search

Things that could be interesting to use with defaults write. I needed this when I did yet another reinstall.

Enable key repeat

Allows for holding a key to repeat the character instead of bringing up the accents prompt. It can be done per-app too.

defaults write -g ApplePressAndHoldEnabled 0 # global
defaults write com.jetbrains.pycharm ApplePressAndHoldEnabled 0 # per-app