Fix Fetch for macOS not uninstalling

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



Duration: 1:08
4 views
0


Here's how to Fix Fetch for macOS 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 uninstall script codes (beta):

#!/bin/bash

# Stop the Fetch application
osascript -e 'quit app "Fetch"'

# Remove the Fetch application and its associated files
sudo rm -rf /Applications/Fetch.app
rm -rf ~/Library/Application\ Support/Fetch/
rm -rf ~/Library/Caches/com.fetchsoftworks.Fetch/
rm -rf ~/Library/Preferences/com.fetchsoftworks.Fetch.plist
rm -rf ~/Library/Saved\ Application\ State/com.fetchsoftworks.Fetch.savedState/

echo "Fetch has been uninstalled from your Mac."