Skip to content

Instantly share code, notes, and snippets.

@keywordnew
Last active March 14, 2020 00:43
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save keywordnew/d28529f3d5a4e8fcc40ec5f3306c65ab to your computer and use it in GitHub Desktop.
Save keywordnew/d28529f3d5a4e8fcc40ec5f3306c65ab to your computer and use it in GitHub Desktop.
Use the Command Line to tweak MacOS as needed

MacOS-tweaks

Tweak the Dock reveal delay

I autohide the Dock, to get back screen space. I also remove all apps from the Dock. I only ever see the Dock to check which apps are running. Tweak the transition speed or remove it.

Remove animation: defaults write com.apple.dock autohide-time-modifier -int 0;killall Dock

Fast animation speed: defaults write com.apple.dock autohide-time-modifier -float 0.12;killall Dock

Default animation speed: defaults delete com.apple.dock autohide-time-modifier;killall Dock

Show full filepath in Finder

Make the full path show at the top of Finder.

Show path: defaults write com.apple.finder _FXShowPosixPathInTitle -bool YES; killall Finder

To change it back to default: defaults write com.apple.finder _FXShowPosixPathInTitle -bool NO; killall Finder

Ignore MacOS Catalina update

You continue to get security fixes and other updates.

softwareupdate --ignore "macOS Catalina

Other settings

Settings for vscode, hammerspoon, etc. live in dotfiles.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment