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
I found https://npmjs.org/run-every today, it is super simple and lets me do stuff like this in my config:
the
bash -cpart is just so I can dogititude update || truewhich makes it always exit with 0 so that run-every won't terminate due to non-zero exit code in casegititude updateexits with non-zerowould be cool to integrate run-every into monu so you can do stuff like this easily in your config without the bash hax