Skip to content

Instantly share code, notes, and snippets.

@nesterenkodm
Created November 15, 2023 12:36
Show Gist options
  • Save nesterenkodm/402ee5adb0d439b9060f33cef0fc6661 to your computer and use it in GitHub Desktop.
Save nesterenkodm/402ee5adb0d439b9060f33cef0fc6661 to your computer and use it in GitHub Desktop.
#!/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