Fix MathType not uninstalling on Mac
Here's how to Fix MathType not uninstalling on Mac. 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 MathType for Mac uninstall script codes (beta):
#!/bin/bash
# Stop MathType processes
sudo killall MathType
# Remove MathType components
sudo rm -rf /Applications/MathType.app
sudo rm -rf /Library/Frameworks/MathType.framework
sudo rm -rf /Library/Internet\ Plug-Ins/MathType.bundle
sudo rm -rf /Library/Application\ Support/MathType
sudo rm -rf /Library/Preferences/com.dessci.mathtype.plist
sudo rm -rf /Library/Receipts/MathType.pkg
sudo rm -rf /Users/$(whoami)/Library/Application\ Support/MathType
sudo rm -rf /Users/$(whoami)/Library/Preferences/com.dessci.mathtype.plist
sudo rm -rf /Users/$(whoami)/Library/Preferences/com.apple.mathlink.Mathematica.plist
sudo rm -rf /Users/$(whoami)/Library/Caches/MathType
echo "MathType has been uninstalled."