You are not logged in.
I'm sure there is plenty of documentation out there about this but for some reason I'm just not having any luck finding or understanding a concise answer to this question.
As an example:
sudo pacman -S discordI launch the app, sign in, etc.
sudo pacman -R discordThen turn around and install again
sudo pacman -S discordLaunch it and it logs me right back in will all my settings adjusted and whatnot like nothing ever happened.
What is the proper procedure to follow if I want to remove every last trace of an application from my system?
Last edited by Jotunn (2024-03-29 02:27:33)
Offline
Most applications store their settings somewhere in your home folder. Search .config and .local/share, for example.
Offline
While Awebb's answer is exactly what you need for this case, there are other cases where packaged configuration files can be kept on the system after removing the package (and they'd be used again if reinstalled). To be sure these go, it's generally recommend to include the 'n' flag along with '-R' anytime you are removing a package (unless you specifically want such configs to be left in place). In fact, I personally recommend `pacman -Rsn <package>` as the default way to remove a package.
Last edited by Trilby (2024-03-28 22:53:20)
"UNIX is simple and coherent" - Dennis Ritchie; "GNU's Not Unix" - Richard Stallman
Offline
Understood. Thank you both!
Offline