Posted January 02, 2024
What a nightmare this was for me as well. Not super familiar with Mac OS yet (and of course, I hate how difficult things that are easier on other OS's are here).
After following all of the terminal commands and suggestions above (though not the deletion command; I just found each file/folder individually and deleted it myself), I still had a Gog Galaxy login item remaining.
I thought I could easily change the previous search command:
find / -not \( -path '/System/Volumes/*' -prune \) \( -iname '*com.gog.*' -o -iname '*gog.com*' \) -prune 2>/dev/null
to something like:
find / -not \( -path '/System/Volumes/*' -prune \) \( -iname '*galaxy*' -o -iname '*gog.com*' \) -prune 2>/dev/null
but as soon as I did that it threw up a lot of errors in Terminal. I know this isn't a Mac support forum but I'm curious why that small change caused it to not search at all and gave me a zsh error.
In case anyone else is having the same "login item" still remaining, even after deleting all of the other items produced from the search command above, I managed to get rid of it by doing a regular find in terminal (after giving it "full disk access" first).
I'm pretty sure doing it this way still only searches in your user directory of the drive (but includes hidden files/folders within said user directory) and it does NOT search the entire drive like the better search command above, but I got lucky that it was thankfully inside of my user folder.
I used this command:
find . -type f -iname '*galaxy*'
and found that final login item in application support (but not under launch agent or launch daemon; it was in preferences?).
After following all of the terminal commands and suggestions above (though not the deletion command; I just found each file/folder individually and deleted it myself), I still had a Gog Galaxy login item remaining.
I thought I could easily change the previous search command:
find / -not \( -path '/System/Volumes/*' -prune \) \( -iname '*com.gog.*' -o -iname '*gog.com*' \) -prune 2>/dev/null
to something like:
find / -not \( -path '/System/Volumes/*' -prune \) \( -iname '*galaxy*' -o -iname '*gog.com*' \) -prune 2>/dev/null
but as soon as I did that it threw up a lot of errors in Terminal. I know this isn't a Mac support forum but I'm curious why that small change caused it to not search at all and gave me a zsh error.
In case anyone else is having the same "login item" still remaining, even after deleting all of the other items produced from the search command above, I managed to get rid of it by doing a regular find in terminal (after giving it "full disk access" first).
I'm pretty sure doing it this way still only searches in your user directory of the drive (but includes hidden files/folders within said user directory) and it does NOT search the entire drive like the better search command above, but I got lucky that it was thankfully inside of my user folder.
I used this command:
find . -type f -iname '*galaxy*'
and found that final login item in application support (but not under launch agent or launch daemon; it was in preferences?).