Created
July 6, 2017 19:41
-
-
Save fathergoose/f6e5f4cacb039162d127746122685b0a to your computer and use it in GitHub Desktop.
Commands I have had to run to get macos to behave the way I want
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
# Save screenshots somewere else | |
defaults write com.apple.screencapture location <path_to_new_loc> | |
killall SystemUIServer | |
# Show hidden files in finder | |
defaults write com.apple.finder AppleShowAllFiles YES | |
# Keep the dock from sticking open -- not sure it worked | |
defaults write com.apple.dock autohide-delay -int 0 | |
defaults write com.apple.dock autohide-time-modifier -float 1.0 | |
killall Dock |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment