Fix TextMate for Mac not uninstalling
Here's how to Fix TextMate 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 TextMate for Mac uninstall script codes (beta):
#!/bin/bash
# Stop the TextMate application if it is running
if pgrep TextMate angled-bracket-here /dev/null
then
echo "Stopping TextMate..."
killall TextMate
sleep 2
fi
# Uninstall TextMate
echo "Uninstalling TextMate..."
sudo rm -rf "/Applications/TextMate.app"
sudo rm -rf "/Library/Application Support/Avian"
sudo rm -rf "/Library/Preferences/com.macromates.TextMate.plist"
sudo rm -rf "/Library/Caches/com.macromates.TextMate"
sudo rm -rf "/Users/Shared/TextMate"
sudo rm -rf "/Library/Receipts/TextMate*"
sudo rm -rf "/var/db/receipts/com.macromates.TextMate*"
echo "TextMate has been uninstalled."