Skip to content

Instantly share code, notes, and snippets.

View pinaronsell's full-sized avatar

Pinar Onsell pinaronsell

  • Lund University
  • Lund, Sweden
View GitHub Profile
@ellcom
ellcom / AppleScript.Spotify.PlayPause.scpt
Created August 2, 2014 17:02
Tell spotify to play/pause using AppleScript
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