Skip to content

Instantly share code, notes, and snippets.

@m-graf
Created July 17, 2023 16:33
Show Gist options
  • Save m-graf/322c32ba275736aaef2cb273b317ebec to your computer and use it in GitHub Desktop.
Save m-graf/322c32ba275736aaef2cb273b317ebec to your computer and use it in GitHub Desktop.
# Setup defaults START
# Hide the dock very quickly, hide and deploy immediately
defaults write com.apple.dock autohide-time-modifier -int 0;killall Dock
defaults write com.apple.dock autohide-delay -float 0; killall Dock
# Not sure
defaults write com.apple.Terminal FocusFollowsMouse -string YES
# Disable font smooting
defaults -currentHost write -g AppleFontSmoothing -int 0
# Enable the debug menu in Safari
defaults write com.apple.Safari IncludeInternalDebugMenu -bool true
# Show all files in find (.files, etc)
defaults write com.apple.finder AppleShowAllFiles TRUE && killall Finder
# Hide all desktop icons
defaults write com.apple.finder CreateDesktop false
# Hide / Show Spotlight in Menubar
defaults -currentHost write com.apple.Spotlight MenuItemHidden -int 0 # show
defaults -currentHost write com.apple.Spotlight MenuItemHidden -int 1 # hide
# Enable spotlight indexing
sudo mdutil -i on /
sudo launchctl load -w /System/Library/LaunchDaemons/com.apple.metadata.mds.plist
# Setup defaults END, restart to apply
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment