Skip to content

Instantly share code, notes, and snippets.

@zepedebo
Created March 14, 2017 22:00
Show Gist options
  • Save zepedebo/3fb52e11dbaa4b3fa200e0d89a914c7c to your computer and use it in GitHub Desktop.
Save zepedebo/3fb52e11dbaa4b3fa200e0d89a914c7c to your computer and use it in GitHub Desktop.
<?xml version="1.0" ?>
<!--
This sample schedules a task to start about 10 seconds after the task is deployed.
-->
<Task>
<Triggers>
<TimeTrigger>
<Enabled>true</Enabled>
<Delay>PT10S</Delay>
</TimeTrigger>
</Triggers>
<Actions>
<Exec>
<Command>/usr/bin/osascript -e 'tell app "System Events" to display dialog "Your system administrator cares about you."'</Command>
<Context>User</Context>
</Exec>
</Actions>
</Task>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment