Skip to content

Instantly share code, notes, and snippets.

@nathanborror
Last active February 15, 2023 21:11
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save nathanborror/da75c23f052a5b5ea708ea27d6277092 to your computer and use it in GitHub Desktop.
Save nathanborror/da75c23f052a5b5ea708ea27d6277092 to your computer and use it in GitHub Desktop.

Key repeat

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

Requires restart.

Hide desktop

defaults write com.apple.finder CreateDesktop -bool false && killall Finder

Halt dock bouncing

defaults write com.apple.dock no-bouncing -bool false && killall Dock

Remove dock show delay

defaults write com.apple.Dock autohide-delay -float 0 && killall Dock
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment