Skip to content

Instantly share code, notes, and snippets.

@akahn
Created November 16, 2010 13:15
Show Gist options
  • Save akahn/701815 to your computer and use it in GitHub Desktop.
Save akahn/701815 to your computer and use it in GitHub Desktop.
def play
`osascript -e 'tell application "iTunes" to play'`
end
def pause
`osascript -e 'tell application "iTunes" to pause'`
end
pause
(1..60).to_a.reverse.each do |n|
p n
sleep 1
end
play
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment