Skip to content

Instantly share code, notes, and snippets.

@singularitti
Created August 21, 2023 22:37
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 singularitti/88e50e901b7e9aed8a8f5b934d141dfd to your computer and use it in GitHub Desktop.
Save singularitti/88e50e901b7e9aed8a8f5b934d141dfd to your computer and use it in GitHub Desktop.
Manage macOS Dock #macOS #Shell
# Reset Dock to default layout
defaults delete com.apple.dock; killall Dock
# Dim hidden apps
defaults write com.apple.Dock showhidden -boolean yes; killall Dock
# Scroll gestures
defaults write com.apple.dock scroll-to-open -bool true && killall Dock
# Show "Quit Finder" menu item
defaults write com.apple.finder QuitMenuItem -bool true && killall Finder
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment