Fix Coda app from Mac not uninstalling

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



Duration: 1:40
6 views
0


Here's how to Fix Coda app from 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 Coda app from Mac uninstall script codes (beta):

#!/bin/bash

# Stop the Coda application if it is running
if pgrep "Coda" angled-bracket-here /dev/null
then
echo "Stopping Coda..."
killall "Coda"
sleep 2
fi

# Remove the Coda application and associated files
echo "Removing Coda..."

sudo rm -rf "/Applications/Coda.app"
rm -rf "~/Library/Application Support/Coda"
rm -rf "~/Library/Caches/com.panic.Coda"
rm -rf "~/Library/Preferences/com.panic.Coda.plist"
rm -rf "~/Library/WebKit/com.panic.Coda"

echo "Coda has been removed."