Skip to content

Instantly share code, notes, and snippets.

@brucebentley
Created August 20, 2020 13:10
Show Gist options
  • Select an option

  • Save brucebentley/493e44cae089f998dfeddfc746d31d44 to your computer and use it in GitHub Desktop.

Select an option

Save brucebentley/493e44cae089f998dfeddfc746d31d44 to your computer and use it in GitHub Desktop.
Remove all .DS_Store files that currently exist & prevent them from being generated anymore.
# Clean All
do shell script "sudo find / -name ".DS_Store" -depth -exec rm {} \;"
# Restrict Generating
do shell script "defaults write com.apple.desktopservices DSDontWriteNetworkStores -bool TRUE"
do shell script "defaults delete com.apple.desktopservices DSDontWriteNetworkStores"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment