Fix Camino for Mac not uninstalling

Subscribers:
2,900
Published on ● Video Link: https://www.youtube.com/watch?v=4NfqC6B0oqY



Duration: 1:28
1 views
0


Here's how to Fix Camino for Mac not uninstalling. For starters, use CleanMyMac X@ https://macpaw.audw.net/c/376211/63812/1733 so u can efficiently manage installed app & your Mac.

Below are the Camino for Mac uninstall script codes (beta):

#!/bin/bash

# Stop Camino if it's currently running
if pgrep "Camino" angled-bracket-here /dev/null; then
echo "Stopping Camino"
osascript -e 'quit app "Camino"'
fi

# Remove Camino application and related files
echo "Removing Camino"
sudo rm -rf /Applications/Camino.app
rm -rf ~/Library/Application\ Support/Camino/
rm -rf ~/Library/Caches/Camino/
rm -rf ~/Library/Preferences/org.mozilla.camino.plist
rm -rf ~/Library/Saved\ Application\ State/org.mozilla.camino.savedState/

echo "Camino has been uninstalled"