rusty1s/dotfiles

View on GitHub
tmux/spotify.scpt

Summary

Maintainability
Test Coverage
if application "Spotify" is running then
  tell application "Spotify"

    set theArtist to the artist of the current track
    set theName to the name of the current track

    try
      return theArtist & " - " & theName
    on error err
    end try

  end tell
end if