Files
dotfiles/bin/rdio.applescript
2012-08-15 11:15:45 -05:00

11 lines
264 B
AppleScript

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