Created
January 14, 2026 21:11
-
-
Save pythoninthegrass/8843933df812cb9982264a516c4e3575 to your computer and use it in GitHub Desktop.
Mole launchagent for nightly macOS cleanup
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?xml version="1.0" encoding="UTF-8"?> | |
| <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> | |
| <plist version="1.0"> | |
| <dict> | |
| <key>Label</key> | |
| <string>com.user.mole.nightly</string> | |
| <key>ProgramArguments</key> | |
| <array> | |
| <string>/opt/homebrew/bin/mo</string> | |
| <string>clean</string> | |
| </array> | |
| <key>StartCalendarInterval</key> | |
| <dict> | |
| <key>Hour</key> | |
| <integer>3</integer> | |
| <key>Minute</key> | |
| <integer>0</integer> | |
| </dict> | |
| <key>StandardOutPath</key> | |
| <string>/tmp/mole-clean.log</string> | |
| <key>StandardErrorPath</key> | |
| <string>/tmp/mole-clean.err</string> | |
| <key>EnvironmentVariables</key> | |
| <dict> | |
| <key>PATH</key> | |
| <string>/usr/local/bin:/usr/bin:/bin</string> | |
| </dict> | |
| </dict> | |
| </plist> |
Author
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
tw93/Mole#259 (comment)