Created
November 15, 2023 12:36
-
-
Save nesterenkodm/402ee5adb0d439b9060f33cef0fc6661 to your computer and use it in GitHub Desktop.
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/sh | |
# Keyboard | |
# Disable Autocorrect, Smart quotes, etc | |
defaults write -g NSAutomaticQuoteSubstitutionEnabled -bool false | |
defaults write -g NSAutomaticSpellingCorrectionEnabled -bool false | |
defaults write -g WebAutomaticSpellingCorrectionEnabled -bool false | |
defaults write -g NSAutomaticDashSubstitutionEnabled -bool false | |
# Clock | |
# Set to analog | |
defaults write com.apple.menuextra.clock IsAnalog -bool true | |
# Dock settings | |
defaults delete com.apple.dock orientation | |
defaults delete com.apple.dock tilesize | |
defaults delete com.apple.dock autohide | |
killall Dock |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment