Files
dotfiles/bin/itunes.scpt
Nick Nisi 1f6f09e457 Added unread mail count to tmux pane
Unread mail count comes from an AppleScript that asks Mail.app
2012-09-29 18:50:23 -05:00

13 lines
332 B
AppleScript
Executable File

if application "iTunes" is running then
tell application "iTunes"
if exists current track then
set theName to the name of the current track
set theArtist to the artist of the current track
try
return "♫ " & theName & " - " & theArtist
on error err
end try
end if
end tell
end if