

Yup, very clever, I think this will avoid any problem with other potential AppImage processes. Thank you very much <3
For more details : this AppRun.wrapped process is mounted in a partially randomized folder each time, something like /tmp/.mount_AntiMiXXXXXX/AppRun.wrapped, where the Xs are a bunch of random characters. So using pkill with regex can both include all versions this full command line can take, while excluding processes created by other apps (which, I suppose , won’t have ‘AntiMi’ in their folder name) : pkill -f /tmp/.mount_AntiMi.*/AppRun.wrapped



Thanks for the tip, i had to try it out because i didn’t knew that. It seems in this case the
-9option does the same as default (delete the AntiMicroX process but not the AppRun one). I also tried withkillalland its-goption to include all processes in the same group, but they probably are not in a common group since it behaved the same. Anyway, TIL about these options so thank you !