And the great "cleaning out my attic" of source code continues.
I wrote this several years ago due to Photoshop and friends launching 500MB+ of helper apps which stay around forever.
| Website | https://www.ricciadams.com |
| GitHub | https://github.com/iccir |
@marcedwards I didn't find anything, but I'm also running an older version of Creative Cloud on Sonoma (I don't update apps until I can verify my workflow won't break).
You might want to try:
`find /Applications/Utilities -name "*Adobe*" -print0 | xargs -0 grep -d recurse "Cloud WAM"`
I'm guessing they probably have some shell script that's making the entry.
@lapcatsoftware At least on 18, Reduce Motion will replace the "Swipe Up" home gesture with a delayed cross-fade, which is annoying.
The fix is to use Accessibility -> "Per-App Settings" to turn off Reduce Motion for "Home Screen & App Library".
And the great "cleaning out my attic" of source code continues.
I wrote this several years ago due to Photoshop and friends launching 500MB+ of helper apps which stay around forever.
@lapcatsoftware I have something similar that I use to monitor and inject into processes (using the Endpoint Security method).
Ammonia uses frida-gum to inject into launchd and sets DYLD_INSERT_LIBRARIES that way. (Frida is a fantastic toolset for reverse engineering!)
If you have any interest in code injection on macOS, I've made two demo repositories with write-ups:
https://github.com/iccir/ESInjectorDemo
Demonstrates Saagar Jha's method of using Endpoint Security to inject into a newly-launched process.
https://github.com/iccir/ThreadInjectorDemo
Demonstrates the "traditional" way of injecting into an already-running process via thread_create_running().