Skip to content

Instantly share code, notes, and snippets.

@LucaTNT
Last active September 27, 2018 09:51
Show Gist options
  • Star 4 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save LucaTNT/f233d1c1afc789518ded8888b903a5c8 to your computer and use it in GitHub Desktop.
Save LucaTNT/f233d1c1afc789518ded8888b903a5c8 to your computer and use it in GitHub Desktop.
his script can be used in conjunction with Better Touch Tool to display the currently playing track in iTunes on the MacBook Pro TouchBar. More info here: https://lucatnt.com/2017/02/display-the-currently-playing-track-in-itunesspotify-on-the-touch-bar
-- This script can be used in conjunction with Better Touch Tool to display the currently playing track on the MacBook Pro TouchBar
-- More info here: https://lucatnt.com/2017/02/display-the-currently-playing-track-in-itunesspotify-on-the-touch-bar
if application "iTunes" is running then
tell application "iTunes"
if player state is playing then
return (get artist of current track) & " - " & (get name of current track)
else
return ""
end if
end tell
else
return ""
end if
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment