mirror of
https://github.com/Toxblh/MTMR.git
synced 2026-01-10 00:58:37 +00:00
11 lines
235 B
AppleScript
11 lines
235 B
AppleScript
if application "Music" is running then
|
||
tell application "Music"
|
||
if player state is playing then
|
||
return (get artist of current track) & " – " & (get name of current track)
|
||
else
|
||
return ""
|
||
end if
|
||
end tell
|
||
end if
|
||
return ""
|