At the end of the conky documentation, the second line in the code sample is missing an ending curly bracket ( ${execi 30 ~/scripts/emerge-status.sh ). Reproducible: Always Steps to Reproduce: Expected Results: The affected line should be: ${execi 30 ~/scripts/emerge-status.sh} Patch to fix it: --- conky-howto.xml.orig 2007-07-01 18:44:19.000000000 -0400 +++ conky-howto.xml 2007-07-01 18:44:52.000000000 -0400 @@ -223,7 +223,7 @@ cellpadding="0" border="0"> examples</p></td></tr> <tr><td bgcolor="#eeeeff" align="left" dir="ltr"><pre> <span class="code-input">${exec grep 'sudo' /var/log/messages | tail -n 4}</span> -<span class="code-input">${execi 30 ~/scripts/emerge-status.sh</span> +<span class="code-input">${execi 30 ~/scripts/emerge-status.sh}</span> <span class="code-input">${texeci 600 ~/scripts/gmail.pl}</span> </pre></td></tr> </table>
Thanks for mentioning this. Just so you know for future reference, patches against the HTML are useless, as that is actually generated from an XML file which can be viewed by appending ?passthru=1 to any page on our website, e.g. http://www.gentoo.org/doc/en/conky-howto.xml?passthru=1 I'll fix this.
Fixed in CVS, thanks for reporting.