-
-
Save rianrainey/cdc1de9455fa13b247d9 to your computer and use it in GitHub Desktop.
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
if application "Spotify" is running then | |
tell application "Spotify" to playpause | |
else if application "iTunes" is running then | |
tell application "iTunes" to playpause | |
end if | |
if application "Spotify" is running then | |
tell application "Spotify" to next track | |
else if application "iTunes" is running then | |
tell application "iTunes" to next track | |
end if | |
if application "Spotify" is running then | |
tell application "Spotify" to previous track | |
else if application "iTunes" is running then | |
tell application "iTunes" to previous track | |
end if |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment