Skip to content

Instantly share code, notes, and snippets.

@olafkotur
Last active October 2, 2020 14:09
Show Gist options
  • Save olafkotur/264a5e9d7735cb4b9538eeea2673d034 to your computer and use it in GitHub Desktop.
Save olafkotur/264a5e9d7735cb4b9538eeea2673d034 to your computer and use it in GitHub Desktop.
Simple command line snippets to set up some macOS preferences
# Allow the iOS simulator to be entered in full screen
defaults write com.apple.iphonesimulator AllowFullscreenMode -bool YES
# Increase the auto hide timer for it to never show
defaults write com.apple.dock autohide-delay -float 10; killall Dock
# Change the length of the dock animation
defaults write com.apple.dock autohide-time-modifier -float 0.25;killall Dock
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment