Files
dotfiles/bin/rdio.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

11 lines
264 B
AppleScript
Executable File

if application "Rdio" is running then
tell application "Rdio"
set theName to name of the current track
set theArtist to artist of the current track
try
return "♫ " & theName & " - " & theArtist
on error err
end try
end tell
end if