Skip to content

Instantly share code, notes, and snippets.

@jcabasc
jcabasc / spotify.scpt
Created June 7, 2017 15:08 — forked from DanielBlanco/spotify.scpt
Returns the name & artist of the current Spotify track
if application "Spotify" is running then
tell application "Spotify"
set theName to name of the current track
set theArtist to artist of the current track
set theAlbum to album of the current track
set theUrl to spotify url of the current track
try
return "♫ " & theName & " - " & theArtist
on error err
end try