max-mapper / monu

menubar process monitor mac app [ALPHA]
https://github.com/maxogden/monu/releases
BSD 2-Clause "Simplified" License
1.11k stars 74 forks source link

integrate run-every #36

Open max-mapper opened 8 years ago

max-mapper commented 8 years ago

I found https://npmjs.org/run-every today, it is super simple and lets me do stuff like this in my config:

   "gititude-update": "run-every 600 bash -c \\\"gititude update || true\\\""

the bash -c part is just so I can do gititude update || true which makes it always exit with 0 so that run-every won't terminate due to non-zero exit code in case gititude update exits with non-zero

would be cool to integrate run-every into monu so you can do stuff like this easily in your config without the bash hax