Im trying to chech if the file exists in conky using ${if_existing ..} as follows:
${if_existing /home/stanislav/.cache/yandexweather/bkn_n.png}YES \
${else}NO
${endif}\
And this works perfectly. However how can I use ${if_existing ..} statement with an output of another command? For Example:
${if_existing echo "~/.cache/yandexweather/"$(python ~/.cache/yandexweather/yw_script.py -image_0)}YES \
${else}NO
${endif}\
The latter doesnt work