Created
March 30, 2016 22:14
-
-
Save msroot/dbee164f4e829744251b232d9858b148 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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