Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save dublado/0a473cea822e354cb286d52fd78b767e to your computer and use it in GitHub Desktop.
Save dublado/0a473cea822e354cb286d52fd78b767e to your computer and use it in GitHub Desktop.
How to uninstall Snap Camera on Mac OS X
# these are reconstructed from a shell session without runnig them, so make
# sure you check that it's a sane thing to do before running it, I make no
# guarantees of fitness, and accept no liability. Run at your own risk.
sudo launchctl remove com.snap.SnapCameraRemover
rm -r ~/Library/Caches/Snap/
rm -r ~/Library/Caches/com.snap.SnapCamera/
rm -r ~/Library/Preferences/Snap/
rm ~/Library/Preferences/com.snap.SnapCamera.plist
rm ~/Library/Preferences/com.snap.Snap\ Camera.plist
sudo rm -rf /Applications/Snap\ Camera.app/
# my camera didn't work again until I ran this one:
sudo rm -r /Library/CoreMediaIO/Plug-Ins/DAL/SnapCamera.plugin
# if this doesn't work for you, know that the "Snap Camera 1.0.0.pkg" installer
# is just a tape archive, so you can `tar -xf Snap\ Camera 1.0.0.pkg` and then
# start analyzing the files, which is how I figured it out. To analyze them,
# I used `file whatever_file` to discover that most of them are just gzipped,
# and then I would do `mv whatever_file whatever_file.gz` so that I could
# `gunzip whatever_file.gz`, at which point I could open it in my editor.
# The relevant one for me was `Scripts`, which, after gunzipping,
# turned out to be a shell script that contained the install locations.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment