Files
dotfiles/bin/spotify.scpt
Nick Nisi 1f6f09e457 Added unread mail count to tmux pane
Unread mail count comes from an AppleScript that asks Mail.app
2012-09-29 18:50:23 -05:00

13 lines
368 B
AppleScript
Executable File

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
end tell
end if