mirror of
https://github.com/AppHouseKitchen/AlDente-Battery_Care_and_Monitoring.git
synced 2026-03-25 02:41:28 +01:00
How to deinstall? #17
Reference in New Issue
Block a user
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Originally created by @burnout-syndrome on GitHub (Jun 8, 2020).
Thank you for your great work, I love the idea of this project! But how can I get back to the old state, in case that I want to deinstall the app? Especially because of the helper, how can I remove it completely?
@davidwernhart commented on GitHub (Jun 9, 2020):
Hi @burnout-syndrome!
Thank you for your feedback!
As I previously described in other issues, the helper tool is not a real concern regarding security, performance or battery life and this system is also used by many other applications.
If you want to uninstall the application, simply set the maximum charge percentage back to 100 and move the app to trash.
If you want to remove the helper tool, you first have to locate the location of the helper.
This can be accomplished with a script like this.
After downloading, you have to make the script executable (
sudo chmod 755 privilegedHelperToolStatus.sh) and execute it withsudo ./privilegedHelperToolStatus.sh. This will list all installed helpers and wether or not the application the helper is built for still exists on your system. For me, the location of AlDente's helper tool is:/Library/PrivilegedHelperTools/com.davidwernhart.Helper. Navigate to the folder and delete the file.I hope that this helped.
Best regards,
David
@burnout-syndrome commented on GitHub (Jun 10, 2020):
Great, thank you for your reply!
@halpz commented on GitHub (Feb 15, 2021):
AppCleaner finds all these files too!
@indianakernick commented on GitHub (May 10, 2021):
The homebrew formula also properly deletes this file
@BANKslow commented on GitHub (Jun 3, 2021):
I am a leek and am not able to run these commands properly. I am stuck on putting terminal to the right folder where the HelperStatusTool script is located. Would you be so kind to ELI5 how to delete the Helper application through terminal?
@sufyazi commented on GitHub (Jun 15, 2021):
Hi @BANKslow to remove a file from the terminal, just run 'rm [the file you want to delete]'. rm is a terminal command called 'remove', and the space is important so is the right name of the thing you want to delete. You said you were able to point the terminal to the right folder where the script you want to delete is located, so just run
rm [name of file]with no brackets and keeping the single space between rm and the filename. Press enter after the line and it'll be deleted.