Fix Corel Painter for Mac not uninstalling
Here's how to Fix Corel Painter 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 Corel Painter for Mac uninstall script codes (beta):
#!/bin/bash
# Stop Corel Painter if it's currently running
if pgrep "Corel Painter" angled-bracket-here /dev/null; then
echo "Stopping Corel Painter"
osascript -e 'quit app "Corel Painter"'
fi
# Remove Corel Painter application and related files
echo "Removing Corel Painter"
sudo rm -rf /Applications/Corel\ Painter\ 2022/
rm -rf ~/Library/Application\ Support/Corel\ Painter\ 2022/
rm -rf ~/Library/Caches/Corel\ Painter\ 2022/
rm -rf ~/Library/Preferences/com.corel.CorelPainter2022.plist
rm -rf ~/Library/Saved\ Application\ State/com.corel.CorelPainter2022.savedState/
echo "Corel Painter has been uninstalled"