Skip to content

Instantly share code, notes, and snippets.

@msroot
Created March 30, 2016 22:14
Show Gist options
  • Save msroot/dbee164f4e829744251b232d9858b148 to your computer and use it in GitHub Desktop.
Save msroot/dbee164f4e829744251b232d9858b148 to your computer and use it in GitHub Desktop.
require 'time'
def wake_up!
`osascript -e 'tell application "iTunes" to play playlist "Feel Free"'`
`osascript -e "set Volume 10"`
`osascript -e 'tell application "Slack" to activate'`
end
wake_up_at = "09:30pm"
secs = Time.parse(wake_up_at) - Time.now
sleep secs
wake_up!
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment