@Mad: ton script n'est pas complet regarde le mien il y a une partie en plus.
Quelqu'un peut il m'aider pour itunes via geektool? Pour faire comme Wath!
#! /bin/bash
osascript -e 'tell application "System Events" to if ((name of processes) contains "iTunes") then do shell script ("osascript -e " & quoted form of ("tell application \"iTunes\" to if player state is playing then \"Now Playing: \" & name of current track & \" by \" & artist of current track" & ""))'
Ca marche nickel mais la présentation sur celle de wath était plus sympa. Merci quand même Link .
Tu peux essayer cette méthode.
Attention de bien remplacer les & par des & dans le script !!
Il y en a 6 à remplacer.
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 & "
Album : " & albumName
return totalData
end tell
Tu peux peut etre juste donner un seul fichier psd ?
Et ton fond d'ecran en zip c'est ok ?
curl http://encarta.msn.com/encnet/feeds/rssfeed.aspx?type=quote | grep description | sed -e 's/\(.*<description>\)//' -e 's/<\/description>.*//'