Minimalist macOS memory cleaner that kills background processes and frees RAM — CleanMyMac-style, without subscriptions.
- Download and unzip
AutoCleaner.zip - Open the
.dmgand drag the app into Applications
- Frees up memory by closing user-space apps (non-system)
- Uses Terminal and bash for full transparency
- No setup, no permissions, no installer
- Lightweight, offline, no telemetry
This project is licensed under the Creative Commons BY-NC-SA 4.0 license.
You may:
- Use it for personal purposes
- Modify it
- Share it with attribution
You may not:
- Sell it
- Use it in commercial products
- Publish it as your own work
For commercial licensing, please contact: yogerrasim@gmail.com
AutoCleanerByGerasim is powered by a minimalistic bash script wrapped inside a macOS .app via Automator.
Here’s what happens when you run it:
-
✅ You launch the
.app -
🖥 A Terminal window opens
-
🔍 It runs:
ps axo pid,comm
...to find all running processes
-
🧠 It filters out critical system processes: Finder, Dock, loginwindow, etc.
-
💀 It terminates all others with:
kill $PID sleep 0.1 kill -9 $PID (if still alive)
-
✅ Displays “Cleanup complete!” in Terminal
This approach simulates the "Free Memory" feature from commercial tools like CleanMyMac — but in a fully transparent and scriptable way.
