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