alerter icon indicating copy to clipboard operation
alerter copied to clipboard

Not an issue, but a question

Open GrouchyGaijin opened this issue 8 years ago • 2 comments

Is it possible to set the time at which the alert will be displayed? What I want to do is schedule reminder alerts. Ideally, it would be possible to trigger the alerts with something like the unix program remind.

GrouchyGaijin avatar Aug 16 '16 05:08 GrouchyGaijin

You can schedule things in OS X with a LaunchDaemon or LaunchAgent. Daemons are loaded when the computer boots and run as root. Agents are loaded when a user logs in and run as the user. They are controlled by plist files which contain keys to tell them when and what to run. So you could script your alert and then trigger it with a LaunchAgent set to run it at the appropriate time. Check out http://launched.zerowidth.com for a launchd.plist helper.

ehemmete avatar Oct 13 '16 15:10 ehemmete

you could do it via a cron job too.

masukomi avatar Apr 11 '18 19:04 masukomi