Last active
January 5, 2024 01:26
-
-
Save sinan/e98492906b8b0cb28c6f0297b9d7af37 to your computer and use it in GitHub Desktop.
Defaults to make mac usable on a new setup
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
# 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