This forum uses cookies
This forum makes use of cookies to store your login information if you are registered, and your last visit if you are not. Cookies are small text documents stored on your computer; the cookies set by this forum can only be used on this website and pose no security risk. Cookies on this forum also track the specific topics you have read and when you last read them. Please confirm whether you accept or reject these cookies being set.

A cookie will be stored in your browser regardless of choice to prevent you being asked this question again. You will be able to change your cookie settings at any time using the link in the footer.

[HELP] General Mac OS usage questions :)
#2
There is no system wide uninstaller on mac. So some garbage stays in system when you delete app from applications folder manually.
There is useful app https://freemacsoft.net/appcleaner/ It can delete folders and plist files related to app.
There is also easyfind app that may help to search for real and system/hidden files https://www.macupdate.com/app/mac/11076/easyfind

Sometimes dvelopers include uninstall script if required to delete some special files. As example Vapoursynth installer uninstall.command

#!/bin/bash
#VapourSynth Uninstall Script


clear
while true; do
    read -p "Do you want to uninstall VapourSynth (y/n)? " -n 1 yn
    echo
    case $yn in
        [Yy]* ) break;;
        [Nn]* ) clear; echo "Uninstall canceled, exiting..."; exit;;
        * ) clear ; echo "Please answer yes or no.";;
    esac
done

if test -e /usr/local/bin/ffmsindex; then sudo rm -rf /usr/local/bin/ffmsindex && echo "Link to ffmsindex was removed."; else echo "Link to ffmsindex was already removed."; fi
if test -e /usr/local/bin/vspipe; then sudo rm -rf /usr/local/bin/vspipe && echo "Link vspipe was removed."; else echo "Link vspipe was ralready removed."; fi
if test -e /usr/local/bin/vspip3; then sudo rm -rf /usr/local/bin/vspip3 && echo "Link vspip3 was removed."; else echo "Link vspipe was ralready removed."; fi
if test -e /usr/local/bin/vspython; then sudo rm -rf /usr/local/bin/vspython && echo "Link to vspython was removed."; else echo "Link vspython was ralready removed."; fi
if test -e /usr/local/bin/removevs; then sudo rm -rf /usr/local/bin/removevs && echo "Link to removevs was removed."; else echo "Link vspython was ralready removed."; fi

if test -d /usr/local/include/vapoursynth; then sudo rm -rf /usr/local/include/vapoursynth && echo "Link to VapourSynth includes was removed."; else echo "Link to VapourSynth includes was already removed."; fi

if test -e /usr/local/lib/libvapoursynth-script.dylib; then sudo rm -rf /usr/local/lib/libvapoursynth-script.dylib && echo "Link to VapourSynth Script library was removed."; else echo "Link to VapourSynth Script library was already removed."; fi
if test -e /usr/local/lib/libvapoursynth-script.0.dylib; then sudo rm -rf /usr/local/lib/libvapoursynth-script.0.dylib && echo "Link to VapourSynth Script library was removed."; else echo "Link to VapourSynth Script library was already removed."; fi
if test -e /usr/local/lib/libvapoursynth.dylib; then sudo rm -rf /usr/local/lib/libvapoursynth.dylib && echo "Link to VapourSynth library was removed."; else echo "Link to VapourSynth library was already removed."; fi

if test -d /Library/Frameworks/VapourSynth.framework; then sudo rm -rf /Library/Frameworks/VapourSynth.framework && echo "VapourSynth framework was removed."; else echo "VapourSynth framework was already removed."; fi

if test -d $HOME/Desktop/VapourSynth; then sudo rm -rf $HOME/Desktop/VapourSynth && echo "VapourSynth desktop shortcuts were removed."; else echo "VapourSynth desktop shortcuts were already removed."; fi    

echo "Uninstall complete, exiting..."

Also for faster navigation it may help to Always Show the User Library Folder https://osxdaily.com/2014/12/16/show-use...-yosemite/
Reply


Messages In This Thread
General Mac OS usage questions :) - by Selur - 20.09.2020, 19:49
RE: General Mac OS usage questions :) - by shijan - 21.09.2020, 10:03

Forum Jump:


Users browsing this thread: 1 Guest(s)