Skip to content

Instantly share code, notes, and snippets.

@trent-boyd
Last active December 12, 2015 08:18
Show Gist options
  • Save trent-boyd/4743263 to your computer and use it in GitHub Desktop.
Save trent-boyd/4743263 to your computer and use it in GitHub Desktop.
Applescript: Play 'Morning Jams' Playlist w/ Rdio
tell application "System Events"
-- Only runs if Rdio is running
if (name of processes) contains "Rdio" then
tell application "Rdio"
-- Shuffle it!
set shuffle to true
-- Plays 'Morning Jams' playlist
play source "p2265948"
end tell
end if
end tell
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment