Files
dotfiles/applescripts/rdio.scpt
2013-01-06 18:47:54 -06: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