Last active
December 11, 2015 11:48
-
-
Save mreidsma/4596221 to your computer and use it in GitHub Desktop.
Script to tell Rdio desktop app to play and pause
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
| tell application "Rdio" | |
| pause | |
| end tell |
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
| tell application "Rdio" | |
| play | |
| end tell |
Author
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
I use this with Quicksilver to quickly start and stop my tunes while in a full-screen or distraction-free writing environment. This is kind of obvious, but I'm posting for reference.