Skip to content

Instantly share code, notes, and snippets.

@m87h
Created December 25, 2014 14:17
Show Gist options
  • Save m87h/778d29561c1eee0b4530 to your computer and use it in GitHub Desktop.
Save m87h/778d29561c1eee0b4530 to your computer and use it in GitHub Desktop.
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC
"-//Apple Computer//DTD PLIST 1.0//EN"
"http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>Label</key>
<string>se.protomou.unspotlight</string>
<key>Program</key>
<string>/usr/local/sbin/unspotlight</string>
<key>StartOnMount</key>
<true/>
<key>RunAtLoad</key>
<false/>
<key>KeepAlive</key>
<false/>
</dict>
</plist>
#!/bin/sh
find /Volumes/* -maxdepth 0 -not -iname "Macintosh HD" | while read volume; do
mdutil -E -i off "$volume"
rm -rf "$volume/.Spotlight-V100"
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment