Last active
December 12, 2015 08:18
-
-
Save trent-boyd/4743263 to your computer and use it in GitHub Desktop.
Applescript: Play 'Morning Jams' Playlist w/ Rdio
This file contains 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
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