Skip to content

Instantly share code, notes, and snippets.

@jdbrice
Created September 5, 2018 01:58
Show Gist options
  • Select an option

  • Save jdbrice/3f4fa15c7c465581a9011eeaa7f2e2d6 to your computer and use it in GitHub Desktop.

Select an option

Save jdbrice/3f4fa15c7c465581a9011eeaa7f2e2d6 to your computer and use it in GitHub Desktop.
play pause apple script for Better TouchTools
if application "Spotify" is running then
tell application "Spotify"
if player state is playing then return "pause"
end tell
end if
if application "iTunes" is running then
tell application "iTunes"
if player state is playing then return "pause"
end tell
end if
return "play"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment