I wanted to add mpd informations to my conky and therefore I created a script which role is to get the cover from ID3 tags
This script is called using the {exec 'path'} command
My probleme is that since I added this feature, my conky refuses to stand on his own :
If I launch it from a terminal using
conky -c `path.conkyrc` &
it will stop when closing the terminal. I tried using the -d option as well
I also tried to launch it at startup with a sh script run at startup : It works well at first but if I open a terminal, conky will close with the terminal i openned ... strange
removing the call to {exec 'path'} solves everything so it is clearly the problem origin
For the record, the script i am using is
#!/bin/sh
MPD_MUSIC_PATH="/media/Media/Music"
TMP_COVER_PATH="/tmp/mpd-track-cover"
exiftool -b -Picture "$MPD_MUSIC_PATH/$(mpc --format "%file%" current)" > "$TMP_COVER_PATH" &
pgrep conky
? – Joseph R. Jul 31 '13 at 10:30own_window
andown_window_type
set to? – Joseph R. Jul 31 '13 at 10:35own_window_hints undecorated,below,sticky,skip_taskbar,skip_pager
own_window_argb_visual yes
own_window_argb_value 102
own_window_type desktop
– Amxx Jul 31 '13 at 10:42