Skip to content

Instantly share code, notes, and snippets.

@jack3898
Last active October 1, 2025 10:52
Show Gist options
  • Select an option

  • Save jack3898/7185748d3fb147f8b87a11837810c7d1 to your computer and use it in GitHub Desktop.

Select an option

Save jack3898/7185748d3fb147f8b87a11837810c7d1 to your computer and use it in GitHub Desktop.
Make MacOS finder good
# Set view settings
defaults write com.apple.finder DesktopViewSettings -dict-add IconViewSettings '{ textSize = 12; iconSize = 64; labelOnBottom = 1; gridSpacing = 64; }'
defaults write com.apple.finder StandardViewSettings -dict-add IconViewSettings '{ textSize = 12; iconSize = 64; labelOnBottom = 1; gridSpacing = 64; }'
defaults write com.apple.finder FK_StandardViewSettings -dict-add IconViewSettings '{ textSize = 12; iconSize = 64; labelOnBottom = 1; gridSpacing = 64; }'
# Remove all .DS_Store in user folders
sudo find ~ -name ".DS_Store" -delete
# Restart Finder to apply changes
killall Finder
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment