Last active
June 8, 2019 03:01
-
-
Save envygeeks/8876bd7c0d839c3eab1a6aabfbb6a00d to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
on idle | |
tell application "Finder" | |
do shell script "find ~ -name .DS_Store -mindepth 2 -delete" | |
set volumesToClean to {"Backups", "Movies"} | |
repeat with volume in volumesToClean | |
if (exists disk volume) then | |
set volPath to "/Volumes/" & volume | |
do shell script "find " & quoted form of volPath & " -name .DS_Store -delete" | |
do shell script "dot_clean " & quoted form of volPath | |
end if | |
end repeat | |
end tell | |
return 3600 | |
end idle |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment