Skip to content

Instantly share code, notes, and snippets.

@dawehner
Created October 7, 2016 19:49
Show Gist options
  • Select an option

  • Save dawehner/c737310ee353c2cc3d880f7e024e8f84 to your computer and use it in GitHub Desktop.

Select an option

Save dawehner/c737310ee353c2cc3d880f7e024e8f84 to your computer and use it in GitHub Desktop.
var notify = require('osx-notifier');
var cron = require('node-cron');
// Stand up every 30 minutes at least.
cron.schedule('30 * * * *', () => {
notify({
type: 'fail',
title: 'Stand up',
subtitle: 'Standup, do some excerise or at least drink some water, dude!',
message: 'It is time for it',
group: 'taskdoer',
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment