Afficher pochette rhythmobox dans conky

Bonjour à tous,
cela fait plusieurs heure que je cherche à afficher la pochette des albums dans conky avec rhythmobox mais je n’y arrive pas.
J’ai suivi ce tuto : doc.ubuntu-fr.org/conky_scripts_ … ette_du_cd
Voici mon script :[code]#!/bin/bash

album=$(rhythmbox-client --print-playing-format “%ta - %at”)
fichier="$HOME/.cache/rhythmbox/covers/$album.jpg"

if test -s "$fichier"
then
ln -sf “$fichier” “$HOME/.conky_cover.jpg”

else
if test -s "$HOME/.conky_cover.jpg"
then
rm "$HOME/.conky_cover.jpg"
fi
fi[/code]

Je l’ai exécuter avec la commande chmod +x
Et voici mon conky [quote]${color orange}EN ÉCOUTE $color${hr 2}
${if_running rhythmbox}Artiste : ${tab 20}${color ffffff}${exec rhythmbox-client --print-playing-format “%ta”}$color
Titre : ${tab 20}${color ffffff}${exec rhythmbox-client --print-playing-format “%tt”}$color
Album : ${tab 20}${color ffffff}${exec rhythmbox-client --print-playing-format “%at”}$color
Piste : ${tab 20}${color ffffff}${exec rhythmbox-client --print-playing-format “%tn”}$color
Année : ${tab 20}${color ffffff}${exec rhythmbox-client --print-playing-format “%ay”}$color
Durée : ${tab 20}${color ffffff}${exec rhythmbox-client --print-playing-format “%te / %td”}${color white}${exec /home/jerome/Script/pochette.sh}${image ~/.conky_cover.jpg -n -p 20,100 -s 80x80}${else}Rhythmbox${color ffffff} n’est pas ouvert$endif[/quote]

Mais il ne m’affiche rien.
Lorsque je tape "conky -c /home/jerome/.conkyrc il me donne ceci : [quote]jerome@debian:~$ conky -c /home/jerome/.conkyrc
Conky: /home/jerome/.conkyrc: 25: config file error
Conky: /home/jerome/.conkyrc: 20: config file error
Conky: desktop window (140002d) is subwindow of root window (a6)
Conky: window type - normal
Conky: drawing to created window (0x4400002)
Conky: drawing to double buffer
Conky: Unable to load image ‘/home/jerome/.conky_cover.jpg’
[/quote]

Merci pour l’aide.

Personne pour m"aider

Le lien du tuto n’est pas bon, c’est bien celui-là :

http://doc.ubuntu-fr.org/conky_scripts_multimedia

Apparemment, il y a des erreurs aux lignes 20 et 25

Utilise ce pastebin pour copier l’intégralité de ton .conkyrc

Heuu, c’est un forum, pas IRC donc 3 heures de délai me semble bien peu pour laisser les gens répondre. 24h est déjà bien mieux, il y des personnes qui ne passent qu’une fois par jours !

[quote]Le lien du tuto n’est pas bon, c’est bien celui-là :

doc.ubuntu-fr.org/conky_scripts_multimedia
[/quote]

Voilà ce que me donne conky -c mon conky dans un terminal :

[code]jerome@debian:~$ conky -c /home/jerome/.conkyrc
Conky: /home/jerome/.conkyrc: 27: config file error
Conky: /home/jerome/.conkyrc: 22: config file error
Conky: desktop window (e0002d) is subwindow of root window (a6)
Conky: window type - normal
Conky: drawing to created window (0x3c00002)
Conky: drawing to double buffer
Conky: Unable to load image ‘/home/jerome/.conky_cover.jpg’

[/code]

Lorsque je lance le script dans un terminal il me donne :

code: Rhythmbox-WARNING **: Did not receive a reply. Possible causes include: the remote application did not send a reply, the message bus security policy blocked the reply, the reply timeout expired, or the network connection was broken.
[/code]

Et le conkyrc pour voir les lignes en erreur

[code]background no
use_xft yes
xftfont Sans:size=8
xftalpha 1
update_interval 1.0
total_run_times 0
own_window yes
own_window_transparent no
own_window_type normal
own_window_hints undecorated,below,sticky,skip_taskbar,skip_pager
double_buffer yes
minimum_size 900 800
maximum_width 200
draw_shades no
draw_outline yes
draw_borders no #afficher les ombres
draw_graph_borders yes
color1 0001BA
default_shade_color white
default_outline_color #BA5200
default_bar_size 195 25
color1 00FF99
color2 FF00FF

alignment top-left
gap_x 24
gap_y 24
no_buffers yes
uppercase no
cpu_avg_samples 2
override_utf8_locale yes
own_window_argb_value 50
own_window_argb_visual yes

TEXT

${font sans-serif:bold:size=8}${color white}${color}SYSTEM ${hr 1}
${font matrix:size=10}${color white}$sysname $kernel $alignr $machine
${color white}${execi 86400 lsb_release -si} :${color white} $alignr${color white}${execi 86400 lsb_release -sr} ${execi 86400 lsb_release -sc}
${color white}Kernel: $alignr$kernel
Uptime: $alignr$uptime
File System: $alignr${fs_type}

${font sans-serif:bold:size=8}${color white}${color}PROCESSEUR ${hr 1}
${font matrix:size=10}Intel Core i5 460M $alignr 2.53 Ghtz
${color white}Température CPU : $alignr$color${acpitemp}°C

${color white}${cpugraph 20,85 FF0000 FFFF00}$alignr${cpugraph 20,85 FF0000 FFFF00}
${color white}CPU: ${color white}${cpu}%$alignr$color${color white}CPU 2: ${color white} ${cpu cpu2} %

${color white}${cpugraph 20,85 FF0000 FFFF00}$alignr${cpugraph 20,85 FF0000 FFFF00}
${color white}CPU 3: ${color white}${cpu}%$alignr$color${color white}CPU 4: ${color white} ${cpu cpu2} %

${color #CCCCCC}CALENDRIER ${hr 2}
${execpi 60 DJS=date +%_d; cal | sed s/"(^|[^0-9])$DJS"’\b’/’\1${color orange}’"$DJS"’$color’/}

${color orange}EN ÉCOUTE $color${hr 2}

${exec home/jerome/.script/conky_album_cover.sh}${image home/jerome/.pochette.jpg -n -p 24,130 -s 64x64}
${if_running rhythmbox}Artiste : ${tab 20}${color ffffff}${exec rhythmbox-client --print-playing-format “%ta”}$color
Titre : ${tab 20}${color ffffff}${exec rhythmbox-client --print-playing-format “%tt”}$color
Album : ${tab 20}${color ffffff}${exec rhythmbox-client --print-playing-format “%at”}$color
Piste : ${tab 20}${color ffffff}${exec rhythmbox-client --print-playing-format “%tn”}$color
Année : ${tab 20}${color ffffff}${exec rhythmbox-client --print-playing-format “%ay”}$color
Durée : ${tab 20}${color ffffff}${exec rhythmbox-client --print-playing-format “%te / %td”}${color white}${else}Rhythmbox${color ffffff} n’est pas ouvert$endif

${font sans-serif:bold:size=8}${color white}TOP PROCESSES ${hr 2}

${font sans-serif:normal:size=8}${top_mem name 1}${alignr}${top mem 1} %
${top_mem name 2}${alignr}${top mem 2} %
$font${top_mem name 3}${alignr}${top mem 3} %
$font${top_mem name 4}${alignr}${top mem 4} %
$font${top_mem name 5}${alignr}${top mem 5} %

${font sans-serif:bold:size=8}${color white}Highest RAM ${hr 2}

${font sans-serif:normal:size=8}${top_mem name 1} $alignr${top_mem mem 1} %
${top_mem name 2} $alignr${top_mem mem 2} %
${top_mem name 3} $alignr${top_mem mem 3} %
${top_mem name 4} $alignr${top_mem mem 4} %
${top_mem name 5} $alignr${top_mem mem 5} %

${font sans-serif:bold:size=8}${color white}MESSAGERIE ${hr 2}

${font sans-serif:normal:size=8}${color white}GMail :${alignr} ${color white}${execi 300 python /home/jerome/Script/gmail2.py}${color}

${color white}MISE A JOUR : $alignc ${color}${execi 3600 aptitude search “~U” | wc -l | tail} paquet(s)
[/code]

Pour la ligne 22 il faut changer “${execpi” en "${execi"
Pour la 27 je ne voie pas au premier abord