Skip to content

Instantly share code, notes, and snippets.

@sinan
Last active January 5, 2024 01:26
Show Gist options
  • Save sinan/e98492906b8b0cb28c6f0297b9d7af37 to your computer and use it in GitHub Desktop.
Save sinan/e98492906b8b0cb28c6f0297b9d7af37 to your computer and use it in GitHub Desktop.
Defaults to make mac usable on a new setup
# get rid of press and hold character popup
defaults write -g ApplePressAndHoldEnabled -bool false
# delay until a key repeats
defaults write -g InitialKeyRepeat -int 25
# duration between repeats after repeat initiation
defaults write -g KeyRepeat -int 1
# remove default shadow from window screenshots
defaults write com.apple.screencapture disable-shadow -bool true
killall SystemUIServer
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment