11 lines
264 B
AppleScript
Executable File
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
|