How to fix conky syntax after update

Conky stopped working after the last update.
Configuration files should be converted to conform to the new syntax.

Run those commands:

cp /usr/share/doc/conky-1.11.6_pre/convert.lua ~/bin/
chmod +x ~/bin/convert.lua

cd ~/.config/conky/
for i in $(ls *.conkyrc);do convert.lua $i;done
3 Likes

Thanks for the tip…