Last active
October 2, 2020 14:09
-
-
Save olafkotur/264a5e9d7735cb4b9538eeea2673d034 to your computer and use it in GitHub Desktop.
Simple command line snippets to set up some macOS preferences
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
# 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