fuck that, ill help ya.
text edit this
--------------------------------------
tell application "System Events"
set powerCheck to ((application processes whose (name is equal to "iTunes")) count)
if powerCheck = 0 then
return ""
end if
end tell
tell application "iTunes"
try
set playerstate to (get player state)
end try
if playerstate = paused then
set trackPaused to " - Paused"
else
set trackPaused to ""
end if
if playerstate = stopped then
return " Stopped"
end if
set trackID to the current track
set trackName to the name of trackID
set artistName to the artist of trackID
set albumName to the album of trackID
set totalData to "Track : " & trackName & trackPaused & "
Artist : " & artistName
return totalData
end tell
---------------------------------------------
save as iTunesinfo.scpt (change to scpt after u save)
then in a geektool command
------------------------------------
osascript /Users/(WHERE THE FILE IS)/iTunesInfo.scpt
-------------------------------------
if you have any more questions PM me
btw use the searchbar, i have a thread on this.