mirror of
https://github.com/Toxblh/MTMR.git
synced 2026-01-11 17:38:38 +00:00
11 lines
283 B
AppleScript
11 lines
283 B
AppleScript
if application "Messages" is running then
|
||
tell application "Messages"
|
||
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 ""
|