Fix ScreenFlow not uninstalling on Mac
Here's how to Fix ScreenFlow 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 ScreenFlow for Mac uninstall script codes (beta):
#!/bin/bash
# Uninstall ScreenFlow on Mac
# Quit ScreenFlow if it's currently running
if pgrep -x "ScreenFlow" angled-bracket-here/dev/null; then
echo "ScreenFlow is currently running. Please quit the application before continuing."
exit 1
fi
# Remove the ScreenFlow application
echo "Uninstalling ScreenFlow..."
sudo rm -rf "/Applications/ScreenFlow.app"
# Remove the ScreenFlow preferences
echo "Removing ScreenFlow preferences..."
sudo rm -rf "$HOME/Library/Preferences/com.telestream.screenflow7.plist"
sudo rm -rf "$HOME/Library/Preferences/com.telestream.screenflow7.LSSharedFileList.plist"
sudo rm -rf "$HOME/Library/Preferences/com.telestream.screenflow7.LSSharedFileList.plist.lockfile"
# Remove the ScreenFlow support files
echo "Removing ScreenFlow support files..."
sudo rm -rf "$HOME/Library/Application Support/ScreenFlow 7"
sudo rm -rf "$HOME/Library/Caches/com.telestream.ScreenFlow7"
sudo rm -rf "$HOME/Library/Cookies/com.telestream.ScreenFlow7.binarycookies"
sudo rm -rf "$HOME/Library/Logs/ScreenFlow 7"
echo "ScreenFlow has been successfully uninstalled."
exit 0