-
Notifications
You must be signed in to change notification settings - Fork 72
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Uninstaller? #483
Comments
Distributions which maintain a package, of course, can simply use their package management, but no, there is no uninstall option in the Makefile currently. |
Not all Makefiles (very few in my experience) have an sudo rm -rf /usr/bin/steamtinkerlaunch # Remove STL program
sudo rm -rf /usr/share/steamtinkerlaunch/* # Remove STL files (translations etc)
sudo rm -rf /usr/share/doc/steamtinkerlaunch/* # Remove STL readme
sudo rm -rf /usr/share/applications/steamtinkerlaunch.desktop # Remove STL .desktop file (shortcut in application launchers e.g. GNOME Dashboard or KDE Kickoff)
sudo rm -rf /usr/share/icons/hicolor/scalable/apps/steamtinkerlaunch.svg # Removes STL icon
sudo rm -rf /dev/shm/steamtinkerlaunch/* # Remove remaining STL files, almost certainly unnecessary but can make for a clean uninstall/reinstall scenario :) I got these paths from following the installation steps in the Makefile and verifying them on my own system, but I recommend checking the exact paths and writing the commands out yourself to make sure you don't mess anything up - Escalated remove commands can be scary! I also didn't test this myself but this should be the gist of uninstalling (I hope). |
basically you're right, but I'd prefer to not "hardcode" |
Closing here, but you're invited to reopen any time if you think this needs further discussion. |
Is there an uninstaller script somewhere?
The text was updated successfully, but these errors were encountered: