-
Notifications
You must be signed in to change notification settings - Fork 61
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
Uninstall Issues #64
Comments
This is what's supposed to run when you click that: #!/bin/sh
function nukeFiles() {
if [[ -e "$1" ]]; then
if [[ -f "$1" ]]; then
rm -v "$1"
else
rm -vr "$1"
fi
fi
}
function createFolder() {
if [[ ! -e "$1" ]]; then
mkdir -pv "$1"
fi
chmod 777 "$1"
}
log_dir="$HOME"/Library/"Application Support"/mySIMBL/logs
createFolder "$log_dir"
exec &>"$log_dir"/removeSIMBL.log
cleanupFiles=(
"/Library/Application Support/SIMBL"
"/Library/LaunchAgents/net.culater.SIMBL.Agent.plist"
"/Library/ScriptingAdditions/SIMBL.osax"
"/Library/ScriptingAdditions/EasySIMBL.osax"
"/System/Library/ScriptingAdditions/SIMBL.osax"
"/System/Library/LaunchAgents/net.culater.SIMBL.Agent.plist"
"$HOME/Library/ScriptingAdditions/SIMBL.osax"
"$HOME/Library/ScriptingAdditions/EasySIMBL.osax"
)
launchctl unload /Library/LaunchAgents/net.culater.SIMBL.Agent.plist
killall SIMBLAgent
echo "Removing files"
for i in "${cleanupFiles[@]}"; do
echo Removing: "$i"
nukeFiles "$i"
done
echo "Done"
|
Does deleting the application and doing a system reinstall(through holding cmd+r at startup) work to completely remove it? Sorry I'm not knowledgeable, just wanted the minimal HUD hehe |
@LogicalTerror I think that would work yes. |
Thanks ^^ |
For #113, I created a text file I ran the shell script by The script soon hung up. Looking at Essentially, the script failed because of permission. Can I get any suggestion about how to get it to work?
|
Are you running it as root?
You also need System Integrity Protection off to remove stuff in /System |
Hey! For anyone new experiencing this issue: For whatever reason, "simblagent" yields nothing in spotlight... Except for on one of my old Macs, it pulled up a file in Library. Here's the steps to remove the annoying popup permanently: Go to Edit: |
When I press Uninstall SIMBL, then logout and login again, start mySIMBL again everything still looks like before.
Maybe I didn't understand the concept of the uninstall procedure here, but to me it seems this button not working. MacOS Sierra 10.12.6. mySIMBL 0.5.3 (29).
Besides, what are the steps to manually remove/uninstall mySIMBL? Is there a list of all files to be removed?
The text was updated successfully, but these errors were encountered: