rusty1s/dotfiles

View on GitHub
widgets/spotify/spotify.scpt

Summary

Maintainability
Test Coverage
if application "Spotify" is running then
  tell application "Spotify"
    set theTrack to the name of the current track
    set theArtist to the artist of the current track
    set theArtwork to artwork url of the current track
    return theTrack & "|" & theArtist & "|" & theArtwork
  end tell
end if