#!/bin/sh
if ps x | grep iTunes | grep -v grep | grep -v -q iTunesHelper ;   then
#echo 'in Artist' >> ~/Scripts/geektool/trace.txt
  ARTIST=$(osascript -e 'tell application "iTunes"
	if player state is playing then
          set artistname to artist of current track
          set output to artistname
	end if
  end tell' | iconv -f utf-8 -t ucs-2-internal)
  echo $ARTIST	
fi
