Skip to content

Instantly share code, notes, and snippets.

@zetavg
Created November 4, 2021 15:22
Show Gist options
  • Save zetavg/9d74f7b1e16df0993b584543da5ce598 to your computer and use it in GitHub Desktop.
Save zetavg/9d74f7b1e16df0993b584543da5ce598 to your computer and use it in GitHub Desktop.
if application "Spotify" is running then
using terms from application "Spotify"
if player state of application "Spotify" is paused then
tell application "Spotify" to play
else
tell application "Spotify" to pause
end if
end using terms from
else
using terms from application "Music"
if player state of application "Music" is paused then
tell application "Music" to play
else
tell application "Music" to pause
end if
end using terms from
end if
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment