Add tidying/sorting to check_docs.py.
authorBrenden Matthews <brenden@rty.ca>
Sat, 6 Jun 2009 22:56:35 +0000 (16:56 -0600)
committerBrenden Matthews <brenden@rty.ca>
Sat, 6 Jun 2009 22:56:35 +0000 (16:56 -0600)
check_docs.py
doc/config_settings.xml
doc/variables.xml
extras/nano/conky.nanorc
extras/vim/syntax/conkyrc.vim

index 38350e2..e780640 100755 (executable)
@@ -8,6 +8,11 @@
 # This script also updates the vim and nano syntax files so it doesn't have to
 # be done manually.
 #
+# Requires the ElementTree Python module for the sorting stuff, see:
+# http://effbot.org/zone/element-index.htm
+#
+# You should also install htmltidy, but it's not necessary.
+#
 
 import os.path
 import re
@@ -211,4 +216,33 @@ file.truncate(0)
 file.seek(0)
 file.writelines(lines)
 file.close()
+
+
+print 'sorting/tidying docs...'
+
+# sort the docs by variable/config setting
+import string
+import xml.etree.ElementTree as ET
+
+vars_xml = ET.parse(file_names['variables'])
+config_xml = ET.parse(file_names['config_settings'])
+
+getkey = lambda x: x.findtext('term/command/option')
+
+vars = vars_xml.getroot()
+vars[:] = sorted(vars, key=getkey)
+
+configs = config_xml.getroot()
+configs[:] = sorted(configs, key=getkey)
+
+vars_xml.write(file_names['variables'])
+config_xml.write(file_names['config_settings'])
+
+def tidy(file):
+       command = ['tidy', '-qim', '-xml', '-utf8', '--indent-spaces', '4']
+       os.system('%s %s 2>/dev/null' % (string.join(command), file))
+
+tidy(file_names['variables'])
+tidy(file_names['config_settings'])
+
 print "done."
index 101b6b0..ca7bf23 100644 (file)
 <variablelist>
-       <varlistentry>
-               <term><command><option>alias</option></command></term>
-               <listitem>
-                       Use this to create aliases of variables. The first argument is the new name, the second the old name, and the other arguments are passed on to the variable. Example: If you want to use $alpha instead of ${beta gamma delta} then you have to write the following: alias alpha beta gamma delta . PS: Instead of creating an alias in the config you can also use environment variables. Example: Start conky like this: alpha="beta gamma delta" conky
-                       <para></para></listitem>
-       </varlistentry>
-
-       <varlistentry>
-               <term><command><option>alignment</option></command></term>
-               <listitem>
-                       Aligned position on screen, may be top_left, top_right, top_middle, bottom_left, bottom_right, bottom_middle, middle_left, middle_right, or none (also can be abreviated as tl, tr, tm, bl, br, bm, ml, mr).  See also gap_x and gap_y.
-                       <para></para></listitem>
-       </varlistentry>
-
-       <varlistentry>
-               <term><command><option>background</option></command></term>
-               <listitem>
-                       Boolean value, if true, Conky will be forked to background when started.
-                       <para></para></listitem>
-       </varlistentry>
-
-       <varlistentry>
-               <term><command><option>border_margin</option></command></term>
-               <listitem>
-                       Border margin in pixels.
-                       <para></para></listitem>
-       </varlistentry>
-
-       <varlistentry>
-               <term><command><option>border_width</option></command></term>
-               <listitem>
-                       Border width in pixels.
-                       <para></para></listitem>
-       </varlistentry>
-
-       <varlistentry>
-               <term><command><option>colorN</option></command></term>
-               <listitem>
-                       Predefine a color for use inside TEXT segments. Substitute N by a digit between 0 and 9, inclusively. When specifying the color value in hex, omit the leading hash (#).
-                       <para></para></listitem>
-       </varlistentry>
-
-       <varlistentry>
-               <term><command><option>cpu_avg_samples</option></command></term>
-               <listitem>
-                       The number of samples to average for CPU monitoring.
-                       <para></para></listitem>
-       </varlistentry>
-
-       <varlistentry>
-               <term><command><option>diskio_avg_samples</option></command></term>
-               <listitem>
-                       The number of samples to average for disk I/O monitoring.
-                       <para></para></listitem>
-       </varlistentry>
-
-       <varlistentry>
-               <term><command><option>top_name_width</option></command></term>
-               <listitem>
-                       Width for $top name value (defaults to 15 characters).
-                       <para></para></listitem>
-       </varlistentry>
-
-       <varlistentry>
-               <term><command><option>top_cpu_separate</option></command></term>
-               <listitem>
-                       If true, cpu in top will show usage of one processor's power.  If false, cpu in top will show the usage of all processors' power combined.
-                       <para></para></listitem>
-       </varlistentry>
-
-       <varlistentry>
-               <term><command><option>default_bar_size</option></command></term>
-               <listitem>
-                       Specify a default width and height for bars.  Example: 'default_bar_size 0 6'.  This is particularly useful for execbar and execibar as they do not take size arguments.
-                       <para></para></listitem>
-       </varlistentry>
-
-       <varlistentry>
-               <term><command><option>default_graph_size</option></command></term>
-               <listitem>
-                       Specify a default width and height for graphs.  Example: 'default_graph_size 0 25'.  This is particularly useful for execgraph and execigraph as they do not take size arguments
-                       <para></para></listitem>
-       </varlistentry>
-
-       <varlistentry>
-               <term><command><option>default_gauge_size</option></command></term>
-               <listitem>
-                       Specify a default width and height for gauges.  Example: 'default_gauge_size 25 25'.  This is particularly useful for execgauge and execigauge as they do not take size arguments
-                       <para></para></listitem>
-       </varlistentry>
-
-       <varlistentry>
-               <term><command><option>default_color</option></command></term>
-               <listitem>
-                       Default color and border color
-                       <para></para></listitem>
-       </varlistentry>
-
-       <varlistentry>
-               <term><command><option>default_outline_color</option></command></term>
-               <listitem>
-                       Default outline color
-                       <para></para></listitem>
-       </varlistentry>
-
-       <varlistentry>
-               <term><command><option>default_shade_color</option></command></term>
-               <listitem>
-                       Default shading color and border's shading color
-                       <para></para></listitem>
-       </varlistentry>
-
-       <varlistentry>
-               <term><command><option>double_buffer</option></command></term>
-               <listitem>
-                       Use the Xdbe extension? (eliminates flicker) It is highly recommended to use own window with this one so double buffer won't be so big.
-                       <para></para></listitem>
-       </varlistentry>
-
-       <varlistentry>
-               <term><command><option>draw_borders</option></command></term>
-               <listitem>
-                       Draw borders around text?
-                       <para></para></listitem>
-       </varlistentry>
-
-       <varlistentry>
-               <term><command><option>draw_graph_borders</option></command></term>
-               <listitem>
-                       Draw borders around graphs?
-                       <para></para></listitem>
-       </varlistentry>
-
-       <varlistentry>
-               <term><command><option>draw_outline</option></command></term>
-               <listitem>
-                       Draw outlines?
-                       <para></para></listitem>
-       </varlistentry>
-
-       <varlistentry>
-               <term><command><option>draw_shades</option></command></term>
-               <listitem>
-                       Draw shades?
-                       <para></para></listitem>
-       </varlistentry>
-
-       <varlistentry>
-               <term><command><option>display</option></command></term>
-               <listitem>
-                       Specify an X display to connect to.
-                       <para></para></listitem>
-       </varlistentry>
-
-       <varlistentry>
-               <term><command><option>font</option></command></term>
-               <listitem>
-                       Font name in X, xfontsel can be used to get a nice font
-                       <para></para></listitem>
-       </varlistentry>
-
-       <varlistentry>
-               <term><command><option>gap_x</option></command></term>
-               <listitem>
-                       Gap, in pixels, between right or left border of screen, same as passing -x at command line,
-                       e.g. gap_x 10.  For other position related stuff, see 'alignment'.
-                       <para></para></listitem>
-       </varlistentry>
-
-       <varlistentry>
-               <term><command><option>gap_y</option></command></term>
-               <listitem>
-                       Gap, in pixels, between top or bottom border of screen, same as passing -y at command line,
-                       e.g. gap_y 10.  For other position related stuff, see 'alignment'.
-                       <para></para></listitem>
-       </varlistentry>
-
-       <varlistentry>
-               <term><command><option>imlib_cache_size</option></command></term>
-               <listitem>
-                       Imlib2 image cache size, in bytes.  Defaults to 4MiB.  Increase this value if you use $image lots.  Set to 0 to disable the image cache.
-                       <para></para></listitem>
-       </varlistentry>
-
-       <varlistentry>
-               <term><command><option>imlib_cache_flush_interval</option></command></term>
-               <listitem>
-                       Interval (in seconds) to flush Imlib2 cache.
-                       <para></para></listitem>
-       </varlistentry>
-
-       <varlistentry>
-               <term><command><option>if_up_strictness</option></command></term>
-               <listitem>
-                       How strict should if_up be when testing an interface for being up? The value is one of up, link or address, to check for the interface being solely up, being up and having link or being up, having link and an assigned IP address.
-                       <para></para></listitem>
-       </varlistentry>
-
-       <varlistentry>
-               <term><command><option>imap</option></command></term>
-               <listitem>
-                       Default global IMAP server.  Arguments are: "host user pass [-i interval (in seconds)] [-f folder] [-p port] [-e command] [-r retries]".  Default port is 143, default folder is 'INBOX', default interval is 5 minutes, and default number of retries before giving up is 5.  If the password is supplied as '*', you will be prompted to enter the password when Conky starts.
-                       <para></para></listitem>
-       </varlistentry>
-
-       <varlistentry>
-               <term><command><option>mail_spool</option></command></term>
-               <listitem>
-                       Mail spool for mail checking
-                       <para></para></listitem>
-       </varlistentry>
-
-       <varlistentry>
-               <term><command><option>max_port_monitor_connections</option></command></term>
-               <listitem>
-                       Allow each port monitor to track at most this many connections (if 0 or not set, default is 256)
-                       <para></para></listitem>
-       </varlistentry>
-
-       <varlistentry>
-               <term><command><option>max_specials</option></command></term>
-               <listitem>
-                       Maximum number of special things, e.g. fonts, offsets, aligns, etc. (default is 512)
-                       <para></para></listitem>
-       </varlistentry>
-
-       <varlistentry>
-               <term><command><option>max_user_text</option></command>
-                       <option>bytes</option>
-               </term>
-               <listitem>
-                       Maximum size of user text buffer, i.e. layout below TEXT line in config file
-                       (default is 16384 bytes)
-                       <para></para></listitem>
-       </varlistentry>
-
-       <varlistentry>
-               <term><command><option>text_buffer_size</option></command>
-                       <option>bytes</option>
-               </term>
-               <listitem>
-                       Size of the standard text buffer (default is 256 bytes).  This buffer is used for intermediary text, such as individual lines, output from $exec vars, and various other variables.  Increasing the size of this buffer can drastically reduce Conky's performance, but will allow for more text display per variable.  The size of this buffer cannot be smaller than the default value of 256 bytes.
-                       <para></para></listitem>
-       </varlistentry>
-
-       <varlistentry>
-               <term><command><option>maximum_width</option></command>
-                       <option>pixels</option>
-               </term>
-               <listitem>
-                       Maximum width of window
-                       <para></para></listitem>
-       </varlistentry>
-
-       <varlistentry>
-               <term><command><option>minimum_size</option></command>
-                       <option>width (height)</option>
-               </term>
-               <listitem>
-                       Minimum size of window
-                       <para></para></listitem>
-       </varlistentry>
-
-       <varlistentry>
-               <term><command><option>mpd_host</option></command></term>
-               <listitem>
-                       Host of MPD server
-                       <para></para></listitem>
-       </varlistentry>
-
-       <varlistentry>
-               <term><command><option>mpd_port</option></command></term>
-               <listitem>
-                       Port of MPD server
-                       <para></para></listitem>
-       </varlistentry>
-
-       <varlistentry>
-               <term><command><option>mpd_password</option></command></term>
-               <listitem>
-                       MPD server password
-                       <para></para></listitem>
-       </varlistentry>
-
-       <varlistentry>
-               <term><command><option>music_player_interval</option></command></term>
-               <listitem>
-                       Music player thread update interval (defaults to Conky's update interval)
-                       <para></para></listitem>
-       </varlistentry>
-
-       <varlistentry>
-               <term><command><option>net_avg_samples</option></command></term>
-               <listitem>
-                       The number of samples to average for net data
-                       <para></para></listitem>
-       </varlistentry>
-
-       <varlistentry>
-               <term><command><option>no_buffers</option></command></term>
-               <listitem>
-                       Substract (file system) buffers from used memory?
-                       <para></para></listitem>
-       </varlistentry>
-
-       <varlistentry>
-               <term><command><option>override_utf8_locale</option></command></term>
-               <listitem>
-                       Force UTF8? requires XFT
-                       <para></para></listitem>
-       </varlistentry>
-
-       <varlistentry>
-               <term><command><option>own_window</option></command></term>
-               <listitem>
-                       Boolean, create own window to draw?
-                       <para></para></listitem>
-       </varlistentry>
-
-       <varlistentry>
-               <term><command><option>own_window_class</option></command></term>
-               <listitem>
-                       Manually set the WM_CLASS name.  Defaults to "Conky".
-                       <para></para></listitem>
-       </varlistentry>
-
-       <varlistentry>
-               <term><command><option>own_window_colour</option></command>
-                       <option>colour</option>
-               </term>
-               <listitem>
-                       If own_window_transparent no, set a specified background colour (defaults to black).  Takes either a hex value (#ffffff) or a valid RGB name (see /usr/lib/X11/rgb.txt)
-                       <para></para></listitem>
-       </varlistentry>
-
-       <varlistentry>
-               <term><command><option>own_window_hints</option></command>
-                       <option>undecorated,below,above,sticky,skip_taskbar,skip_pager</option>
-               </term>
-               <listitem>
-                       If own_window is yes, you may use these window manager hints to affect the way Conky displays.
-                       Notes: Use own_window_type desktop as another way to implement many of these hints implicitly.
-                       If you use own_window_type override, window manager hints have no meaning and are ignored.
-                       <para></para></listitem>
-       </varlistentry>
-
-       <varlistentry>
-               <term><command><option>own_window_title</option></command></term>
-               <listitem>
-                       Manually set the window name.  Defaults to "&lt;hostname&gt; - conky".
-                       <para></para></listitem>
-       </varlistentry>
-
-       <varlistentry>
-               <term><command><option>own_window_transparent</option></command></term>
-               <listitem>
-                       Boolean, set pseudo-transparency?
-                       <para></para></listitem>
-       </varlistentry>
-
-       <varlistentry>
-               <term><command><option>own_window_type</option></command></term>
-               <listitem>
-                       if own_window is yes, you may specify type normal, desktop, dock or override (default: normal).
-                       Desktop windows are special windows that have no window decorations; are always visible
-                       on your desktop; do not appear in your pager or taskbar; and are sticky across all workspaces.
-                       Override windows are not under the control of the window manager.  Hints are ignored. This type
-                       of window can be useful for certain situations.
-                       <para></para></listitem>
-       </varlistentry>
-
-       <varlistentry>
-               <term><command><option>out_to_console</option></command>
-               </term>
-               <listitem>
-                       Print text to stdout.
-                       <para></para></listitem>
-       </varlistentry>
-
-       <varlistentry>
-               <term><command><option>out_to_stderr</option></command>
-               </term>
-               <listitem>
-                       Print text to stderr.
-                       <para></para></listitem>
-       </varlistentry>
-
-       <varlistentry>
-               <term><command><option>out_to_x</option></command>
-               </term>
-               <listitem>
-                       When set to no, there will be no output in X (useful when you also use things like out_to_console).
-                       If you set it to no, make sure that it's placed before all other X-related setting (take the first
-                       line of your configfile to be sure). Default value is yes
-                       <para></para></listitem>
-       </varlistentry>
-
-       <varlistentry>
-               <term><command><option>overwrite_file</option></command>
-               </term>
-               <listitem>
-                       Overwrite the file given as argument.
-                       <para></para></listitem>
-       </varlistentry>
-
-       <varlistentry>
-               <term><command><option>append_file</option></command>
-               </term>
-               <listitem>
-                       Append the file given as argument.
-                       <para></para></listitem>
-       </varlistentry>
-
-       <varlistentry>
-               <term><command><option>pad_percents</option></command></term>
-               <listitem>
-                       Pad percentages to this many decimals (0 = no padding)
-                       <para></para></listitem>
-       </varlistentry>
-
-       <varlistentry>
-               <term><command><option>pop3</option></command></term>
-               <listitem>
-                       Default global POP3 server.  Arguments are: "host user pass [-i interval (in seconds)] [-p port] [-e command] [-r retries]".  Default port is 110, default interval is 5 minutes, and default number of retries before giving up is 5.  If the password is supplied as '*', you will be prompted to enter the password when Conky starts.
-                       <para></para></listitem>
-       </varlistentry>
-
-       <varlistentry>
-               <term><command><option>short_units</option></command></term>
-               <listitem>
-                       Shortens units to a single character (kiB->k, GiB->G, etc.).  Default is off.
-                       <para></para></listitem>
-       </varlistentry>
-
-       <varlistentry>
-               <term><command><option>show_graph_scale</option></command></term>
-               <listitem>
-                       Shows the maximum value in scaled graphs.
-                       <para></para></listitem>
-       </varlistentry>
-
-       <varlistentry>
-               <term><command><option>show_graph_range</option></command></term>
-               <listitem>
-                       Shows the time range covered by a graph.
-                       <para></para></listitem>
-       </varlistentry>
-
-       <varlistentry>
-               <term><command><option>stippled_borders</option></command></term>
-               <listitem>
-                       Border stippling (dashing) in pixels
-                       <para></para></listitem>
-       </varlistentry>
-
-       <varlistentry>
-               <term><command><option>temperature_unit</option></command></term>
-               <listitem>
-                       Desired output unit of all objects displaying a temperature.
-                       Parameters are either "fahrenheit" or "celsius". The default
-                       unit is degree Celsius.
-                       <para></para></listitem>
-       </varlistentry>
-
-       <varlistentry>
-               <term><command><option>templateN</option></command></term>
-               <listitem>
-                       Define a template for later use inside TEXT segments. Substitute N by a digit between 0 and 9, inclusively.
-                       The value of the variable is being inserted into the stuff below TEXT at the corresponding position,
-                       but before some substitutions are applied:
-                       <simplelist>
-                               <member>'\n' -> newline</member>
-                               <member>'\\' -> backslash</member>
-                               <member>'\ ' -> space</member>
-                               <member>'\N' -> template argument N</member>
-                       </simplelist>
-                       <para></para></listitem>
-       </varlistentry>
-
-       <varlistentry>
-               <term><command><option>total_run_times</option></command></term>
-               <listitem>
-                       Total number of times for Conky to update before quitting. Zero makes Conky run forever
-                       <para></para></listitem>
-       </varlistentry>
-
-       <varlistentry>
-               <term><command><option>update_interval</option></command></term>
-               <listitem>
-                       Update interval in seconds
-                       <para></para></listitem>
-       </varlistentry>
-
-       <varlistentry>
-               <term><command><option>uppercase</option></command></term>
-               <listitem>
-                       Boolean value, if true, text is rendered in upper case
-                       <para></para></listitem>
-       </varlistentry>
-
-       <varlistentry>
-               <term><command><option>use_spacer</option></command></term>
-               <listitem>
-                       Adds spaces around certain objects to stop them from moving other things around. Arguments are left, right, and none (default).  The old true/false values are deprecated and default to right/none respectively. Note that this only helps if you are using a mono font, such as Bitstream Vera Sans Mono.
-                       <para></para></listitem>
-       </varlistentry>
-
-       <varlistentry>
-               <term><command><option>use_xft</option></command></term>
-               <listitem>
-                       Use Xft (anti-aliased font and stuff)
-                       <para></para></listitem>
-       </varlistentry>
-
-       <varlistentry>
-               <term><command><option>xftalpha</option></command></term>
-               <listitem>
-                       Alpha of Xft font.  Must be a value at or between 1 and 0.
-                       <para></para></listitem>
-       </varlistentry>
-
-       <varlistentry>
-               <term><command><option>xftfont</option></command></term>
-               <listitem>
-                       Xft font to use.
-                       <para></para></listitem>
-       </varlistentry>
-
-       <varlistentry>
-               <term><command><option>lua_load</option></command></term>
-               <listitem>
-                       Loads the Lua scripts separated by spaces.
-                       <para></para></listitem>
-       </varlistentry>
-
-       <varlistentry>
-               <term><command><option>TEXT</option></command></term>
-               <listitem>
-                       After this begins text to be formatted on screen.  Backslash (\) escapes newlines in the text section.  This can be useful for cleaning up config files where conky is used to pipe input to dzen2.
-                       <para></para></listitem>
-       </varlistentry>
-
+    <varlistentry>
+        <term>
+            <command>
+                <option>TEXT</option>
+            </command>
+        </term>
+        <listitem>After this begins text to be formatted on screen.
+        Backslash (\) escapes newlines in the text section. This
+        can be useful for cleaning up config files where conky is
+        used to pipe input to dzen2.
+        <para /></listitem>
+    </varlistentry>
+    <varlistentry>
+        <term>
+            <command>
+                <option>alias</option>
+            </command>
+        </term>
+        <listitem>Use this to create aliases of variables. The
+        first argument is the new name, the second the old name,
+        and the other arguments are passed on to the variable.
+        Example: If you want to use $alpha instead of ${beta gamma
+        delta} then you have to write the following: alias alpha
+        beta gamma delta . PS: Instead of creating an alias in the
+        config you can also use environment variables. Example:
+        Start conky like this: alpha="beta gamma delta" conky
+        <para /></listitem>
+    </varlistentry>
+    <varlistentry>
+        <term>
+            <command>
+                <option>alignment</option>
+            </command>
+        </term>
+        <listitem>Aligned position on screen, may be top_left,
+        top_right, top_middle, bottom_left, bottom_right,
+        bottom_middle, middle_left, middle_right, or none (also can
+        be abreviated as tl, tr, tm, bl, br, bm, ml, mr). See also
+        gap_x and gap_y.
+        <para /></listitem>
+    </varlistentry>
+    <varlistentry>
+        <term>
+            <command>
+                <option>append_file</option>
+            </command>
+        </term>
+        <listitem>Append the file given as argument.
+        <para /></listitem>
+    </varlistentry>
+    <varlistentry>
+        <term>
+            <command>
+                <option>background</option>
+            </command>
+        </term>
+        <listitem>Boolean value, if true, Conky will be forked to
+        background when started.
+        <para /></listitem>
+    </varlistentry>
+    <varlistentry>
+        <term>
+            <command>
+                <option>border_margin</option>
+            </command>
+        </term>
+        <listitem>Border margin in pixels.
+        <para /></listitem>
+    </varlistentry>
+    <varlistentry>
+        <term>
+            <command>
+                <option>border_width</option>
+            </command>
+        </term>
+        <listitem>Border width in pixels.
+        <para /></listitem>
+    </varlistentry>
+    <varlistentry>
+        <term>
+            <command>
+                <option>colorN</option>
+            </command>
+        </term>
+        <listitem>Predefine a color for use inside TEXT segments.
+        Substitute N by a digit between 0 and 9, inclusively. When
+        specifying the color value in hex, omit the leading hash
+        (#).
+        <para /></listitem>
+    </varlistentry>
+    <varlistentry>
+        <term>
+            <command>
+                <option>cpu_avg_samples</option>
+            </command>
+        </term>
+        <listitem>The number of samples to average for CPU
+        monitoring.
+        <para /></listitem>
+    </varlistentry>
+    <varlistentry>
+        <term>
+            <command>
+                <option>default_bar_size</option>
+            </command>
+        </term>
+        <listitem>Specify a default width and height for bars.
+        Example: 'default_bar_size 0 6'. This is particularly
+        useful for execbar and execibar as they do not take size
+        arguments.
+        <para /></listitem>
+    </varlistentry>
+    <varlistentry>
+        <term>
+            <command>
+                <option>default_color</option>
+            </command>
+        </term>
+        <listitem>Default color and border color
+        <para /></listitem>
+    </varlistentry>
+    <varlistentry>
+        <term>
+            <command>
+                <option>default_gauge_size</option>
+            </command>
+        </term>
+        <listitem>Specify a default width and height for gauges.
+        Example: 'default_gauge_size 25 25'. This is particularly
+        useful for execgauge and execigauge as they do not take
+        size arguments
+        <para /></listitem>
+    </varlistentry>
+    <varlistentry>
+        <term>
+            <command>
+                <option>default_graph_size</option>
+            </command>
+        </term>
+        <listitem>Specify a default width and height for graphs.
+        Example: 'default_graph_size 0 25'. This is particularly
+        useful for execgraph and execigraph as they do not take
+        size arguments
+        <para /></listitem>
+    </varlistentry>
+    <varlistentry>
+        <term>
+            <command>
+                <option>default_outline_color</option>
+            </command>
+        </term>
+        <listitem>Default outline color
+        <para /></listitem>
+    </varlistentry>
+    <varlistentry>
+        <term>
+            <command>
+                <option>default_shade_color</option>
+            </command>
+        </term>
+        <listitem>Default shading color and border's shading color
+        <para /></listitem>
+    </varlistentry>
+    <varlistentry>
+        <term>
+            <command>
+                <option>diskio_avg_samples</option>
+            </command>
+        </term>
+        <listitem>The number of samples to average for disk I/O
+        monitoring.
+        <para /></listitem>
+    </varlistentry>
+    <varlistentry>
+        <term>
+            <command>
+                <option>display</option>
+            </command>
+        </term>
+        <listitem>Specify an X display to connect to.
+        <para /></listitem>
+    </varlistentry>
+    <varlistentry>
+        <term>
+            <command>
+                <option>double_buffer</option>
+            </command>
+        </term>
+        <listitem>Use the Xdbe extension? (eliminates flicker) It
+        is highly recommended to use own window with this one so
+        double buffer won't be so big.
+        <para /></listitem>
+    </varlistentry>
+    <varlistentry>
+        <term>
+            <command>
+                <option>draw_borders</option>
+            </command>
+        </term>
+        <listitem>Draw borders around text?
+        <para /></listitem>
+    </varlistentry>
+    <varlistentry>
+        <term>
+            <command>
+                <option>draw_graph_borders</option>
+            </command>
+        </term>
+        <listitem>Draw borders around graphs?
+        <para /></listitem>
+    </varlistentry>
+    <varlistentry>
+        <term>
+            <command>
+                <option>draw_outline</option>
+            </command>
+        </term>
+        <listitem>Draw outlines?
+        <para /></listitem>
+    </varlistentry>
+    <varlistentry>
+        <term>
+            <command>
+                <option>draw_shades</option>
+            </command>
+        </term>
+        <listitem>Draw shades?
+        <para /></listitem>
+    </varlistentry>
+    <varlistentry>
+        <term>
+            <command>
+                <option>font</option>
+            </command>
+        </term>
+        <listitem>Font name in X, xfontsel can be used to get a
+        nice font
+        <para /></listitem>
+    </varlistentry>
+    <varlistentry>
+        <term>
+            <command>
+                <option>gap_x</option>
+            </command>
+        </term>
+        <listitem>Gap, in pixels, between right or left border of
+        screen, same as passing -x at command line, e.g. gap_x 10.
+        For other position related stuff, see 'alignment'.
+        <para /></listitem>
+    </varlistentry>
+    <varlistentry>
+        <term>
+            <command>
+                <option>gap_y</option>
+            </command>
+        </term>
+        <listitem>Gap, in pixels, between top or bottom border of
+        screen, same as passing -y at command line, e.g. gap_y 10.
+        For other position related stuff, see 'alignment'.
+        <para /></listitem>
+    </varlistentry>
+    <varlistentry>
+        <term>
+            <command>
+                <option>if_up_strictness</option>
+            </command>
+        </term>
+        <listitem>How strict should if_up be when testing an
+        interface for being up? The value is one of up, link or
+        address, to check for the interface being solely up, being
+        up and having link or being up, having link and an assigned
+        IP address.
+        <para /></listitem>
+    </varlistentry>
+    <varlistentry>
+        <term>
+            <command>
+                <option>imap</option>
+            </command>
+        </term>
+        <listitem>Default global IMAP server. Arguments are: "host
+        user pass [-i interval (in seconds)] [-f folder] [-p port]
+        [-e command] [-r retries]". Default port is 143, default
+        folder is 'INBOX', default interval is 5 minutes, and
+        default number of retries before giving up is 5. If the
+        password is supplied as '*', you will be prompted to enter
+        the password when Conky starts.
+        <para /></listitem>
+    </varlistentry>
+    <varlistentry>
+        <term>
+            <command>
+                <option>imlib_cache_flush_interval</option>
+            </command>
+        </term>
+        <listitem>Interval (in seconds) to flush Imlib2 cache.
+        <para /></listitem>
+    </varlistentry>
+    <varlistentry>
+        <term>
+            <command>
+                <option>imlib_cache_size</option>
+            </command>
+        </term>
+        <listitem>Imlib2 image cache size, in bytes. Defaults to
+        4MiB. Increase this value if you use $image lots. Set to 0
+        to disable the image cache.
+        <para /></listitem>
+    </varlistentry>
+    <varlistentry>
+        <term>
+            <command>
+                <option>lua_load</option>
+            </command>
+        </term>
+        <listitem>Loads the Lua scripts separated by spaces.
+        <para /></listitem>
+    </varlistentry>
+    <varlistentry>
+        <term>
+            <command>
+                <option>mail_spool</option>
+            </command>
+        </term>
+        <listitem>Mail spool for mail checking
+        <para /></listitem>
+    </varlistentry>
+    <varlistentry>
+        <term>
+            <command>
+                <option>max_port_monitor_connections</option>
+            </command>
+        </term>
+        <listitem>Allow each port monitor to track at most this
+        many connections (if 0 or not set, default is 256)
+        <para /></listitem>
+    </varlistentry>
+    <varlistentry>
+        <term>
+            <command>
+                <option>max_specials</option>
+            </command>
+        </term>
+        <listitem>Maximum number of special things, e.g. fonts,
+        offsets, aligns, etc. (default is 512)
+        <para /></listitem>
+    </varlistentry>
+    <varlistentry>
+        <term>
+            <command>
+                <option>max_user_text</option>
+            </command>
+            <option>bytes</option>
+        </term>
+        <listitem>Maximum size of user text buffer, i.e. layout
+        below TEXT line in config file (default is 16384 bytes)
+        <para /></listitem>
+    </varlistentry>
+    <varlistentry>
+        <term>
+            <command>
+                <option>maximum_width</option>
+            </command>
+            <option>pixels</option>
+        </term>
+        <listitem>Maximum width of window
+        <para /></listitem>
+    </varlistentry>
+    <varlistentry>
+        <term>
+            <command>
+                <option>minimum_size</option>
+            </command>
+            <option>width (height)</option>
+        </term>
+        <listitem>Minimum size of window
+        <para /></listitem>
+    </varlistentry>
+    <varlistentry>
+        <term>
+            <command>
+                <option>mpd_host</option>
+            </command>
+        </term>
+        <listitem>Host of MPD server
+        <para /></listitem>
+    </varlistentry>
+    <varlistentry>
+        <term>
+            <command>
+                <option>mpd_password</option>
+            </command>
+        </term>
+        <listitem>MPD server password
+        <para /></listitem>
+    </varlistentry>
+    <varlistentry>
+        <term>
+            <command>
+                <option>mpd_port</option>
+            </command>
+        </term>
+        <listitem>Port of MPD server
+        <para /></listitem>
+    </varlistentry>
+    <varlistentry>
+        <term>
+            <command>
+                <option>music_player_interval</option>
+            </command>
+        </term>
+        <listitem>Music player thread update interval (defaults to
+        Conky's update interval)
+        <para /></listitem>
+    </varlistentry>
+    <varlistentry>
+        <term>
+            <command>
+                <option>net_avg_samples</option>
+            </command>
+        </term>
+        <listitem>The number of samples to average for net data
+        <para /></listitem>
+    </varlistentry>
+    <varlistentry>
+        <term>
+            <command>
+                <option>no_buffers</option>
+            </command>
+        </term>
+        <listitem>Substract (file system) buffers from used memory?
+
+        <para /></listitem>
+    </varlistentry>
+    <varlistentry>
+        <term>
+            <command>
+                <option>out_to_console</option>
+            </command>
+        </term>
+        <listitem>Print text to stdout.
+        <para /></listitem>
+    </varlistentry>
+    <varlistentry>
+        <term>
+            <command>
+                <option>out_to_stderr</option>
+            </command>
+        </term>
+        <listitem>Print text to stderr.
+        <para /></listitem>
+    </varlistentry>
+    <varlistentry>
+        <term>
+            <command>
+                <option>out_to_x</option>
+            </command>
+        </term>
+        <listitem>When set to no, there will be no output in X
+        (useful when you also use things like out_to_console). If
+        you set it to no, make sure that it's placed before all
+        other X-related setting (take the first line of your
+        configfile to be sure). Default value is yes
+        <para /></listitem>
+    </varlistentry>
+    <varlistentry>
+        <term>
+            <command>
+                <option>override_utf8_locale</option>
+            </command>
+        </term>
+        <listitem>Force UTF8? requires XFT
+        <para /></listitem>
+    </varlistentry>
+    <varlistentry>
+        <term>
+            <command>
+                <option>overwrite_file</option>
+            </command>
+        </term>
+        <listitem>Overwrite the file given as argument.
+        <para /></listitem>
+    </varlistentry>
+    <varlistentry>
+        <term>
+            <command>
+                <option>own_window</option>
+            </command>
+        </term>
+        <listitem>Boolean, create own window to draw?
+        <para /></listitem>
+    </varlistentry>
+    <varlistentry>
+        <term>
+            <command>
+                <option>own_window_class</option>
+            </command>
+        </term>
+        <listitem>Manually set the WM_CLASS name. Defaults to
+        "Conky".
+        <para /></listitem>
+    </varlistentry>
+    <varlistentry>
+        <term>
+            <command>
+                <option>own_window_colour</option>
+            </command>
+            <option>colour</option>
+        </term>
+        <listitem>If own_window_transparent no, set a specified
+        background colour (defaults to black). Takes either a hex
+        value (#ffffff) or a valid RGB name (see
+        /usr/lib/X11/rgb.txt)
+        <para /></listitem>
+    </varlistentry>
+    <varlistentry>
+        <term>
+            <command>
+                <option>own_window_hints</option>
+            </command>
+            <option>
+            undecorated,below,above,sticky,skip_taskbar,skip_pager</option>
+        </term>
+        <listitem>If own_window is yes, you may use these window
+        manager hints to affect the way Conky displays. Notes: Use
+        own_window_type desktop as another way to implement many of
+        these hints implicitly. If you use own_window_type
+        override, window manager hints have no meaning and are
+        ignored.
+        <para /></listitem>
+    </varlistentry>
+    <varlistentry>
+        <term>
+            <command>
+                <option>own_window_title</option>
+            </command>
+        </term>
+        <listitem>Manually set the window name. Defaults to
+        "&lt;hostname&gt; - conky".
+        <para /></listitem>
+    </varlistentry>
+    <varlistentry>
+        <term>
+            <command>
+                <option>own_window_transparent</option>
+            </command>
+        </term>
+        <listitem>Boolean, set pseudo-transparency?
+        <para /></listitem>
+    </varlistentry>
+    <varlistentry>
+        <term>
+            <command>
+                <option>own_window_type</option>
+            </command>
+        </term>
+        <listitem>if own_window is yes, you may specify type
+        normal, desktop, dock or override (default: normal).
+        Desktop windows are special windows that have no window
+        decorations; are always visible on your desktop; do not
+        appear in your pager or taskbar; and are sticky across all
+        workspaces. Override windows are not under the control of
+        the window manager. Hints are ignored. This type of window
+        can be useful for certain situations.
+        <para /></listitem>
+    </varlistentry>
+    <varlistentry>
+        <term>
+            <command>
+                <option>pad_percents</option>
+            </command>
+        </term>
+        <listitem>Pad percentages to this many decimals (0 = no
+        padding)
+        <para /></listitem>
+    </varlistentry>
+    <varlistentry>
+        <term>
+            <command>
+                <option>pop3</option>
+            </command>
+        </term>
+        <listitem>Default global POP3 server. Arguments are: "host
+        user pass [-i interval (in seconds)] [-p port] [-e command]
+        [-r retries]". Default port is 110, default interval is 5
+        minutes, and default number of retries before giving up is
+        5. If the password is supplied as '*', you will be prompted
+        to enter the password when Conky starts.
+        <para /></listitem>
+    </varlistentry>
+    <varlistentry>
+        <term>
+            <command>
+                <option>short_units</option>
+            </command>
+        </term>
+        <listitem>Shortens units to a single character (kiB-&gt;k,
+        GiB-&gt;G, etc.). Default is off.
+        <para /></listitem>
+    </varlistentry>
+    <varlistentry>
+        <term>
+            <command>
+                <option>show_graph_range</option>
+            </command>
+        </term>
+        <listitem>Shows the time range covered by a graph.
+        <para /></listitem>
+    </varlistentry>
+    <varlistentry>
+        <term>
+            <command>
+                <option>show_graph_scale</option>
+            </command>
+        </term>
+        <listitem>Shows the maximum value in scaled graphs.
+        <para /></listitem>
+    </varlistentry>
+    <varlistentry>
+        <term>
+            <command>
+                <option>stippled_borders</option>
+            </command>
+        </term>
+        <listitem>Border stippling (dashing) in pixels
+        <para /></listitem>
+    </varlistentry>
+    <varlistentry>
+        <term>
+            <command>
+                <option>temperature_unit</option>
+            </command>
+        </term>
+        <listitem>Desired output unit of all objects displaying a
+        temperature. Parameters are either "fahrenheit" or
+        "celsius". The default unit is degree Celsius.
+        <para /></listitem>
+    </varlistentry>
+    <varlistentry>
+        <term>
+            <command>
+                <option>templateN</option>
+            </command>
+        </term>
+        <listitem>Define a template for later use inside TEXT
+        segments. Substitute N by a digit between 0 and 9,
+        inclusively. The value of the variable is being inserted
+        into the stuff below TEXT at the corresponding position,
+        but before some substitutions are applied:
+        <simplelist>
+            <member>'\n' -&gt; newline</member>
+            <member>'\\' -&gt; backslash</member>
+            <member>'\ ' -&gt; space</member>
+            <member>'\N' -&gt; template argument N</member>
+        </simplelist>
+        <para /></listitem>
+    </varlistentry>
+    <varlistentry>
+        <term>
+            <command>
+                <option>text_buffer_size</option>
+            </command>
+            <option>bytes</option>
+        </term>
+        <listitem>Size of the standard text buffer (default is 256
+        bytes). This buffer is used for intermediary text, such as
+        individual lines, output from $exec vars, and various other
+        variables. Increasing the size of this buffer can
+        drastically reduce Conky's performance, but will allow for
+        more text display per variable. The size of this buffer
+        cannot be smaller than the default value of 256 bytes.
+        <para /></listitem>
+    </varlistentry>
+    <varlistentry>
+        <term>
+            <command>
+                <option>top_cpu_separate</option>
+            </command>
+        </term>
+        <listitem>If true, cpu in top will show usage of one
+        processor's power. If false, cpu in top will show the usage
+        of all processors' power combined.
+        <para /></listitem>
+    </varlistentry>
+    <varlistentry>
+        <term>
+            <command>
+                <option>top_name_width</option>
+            </command>
+        </term>
+        <listitem>Width for $top name value (defaults to 15
+        characters).
+        <para /></listitem>
+    </varlistentry>
+    <varlistentry>
+        <term>
+            <command>
+                <option>total_run_times</option>
+            </command>
+        </term>
+        <listitem>Total number of times for Conky to update before
+        quitting. Zero makes Conky run forever
+        <para /></listitem>
+    </varlistentry>
+    <varlistentry>
+        <term>
+            <command>
+                <option>update_interval</option>
+            </command>
+        </term>
+        <listitem>Update interval in seconds
+        <para /></listitem>
+    </varlistentry>
+    <varlistentry>
+        <term>
+            <command>
+                <option>uppercase</option>
+            </command>
+        </term>
+        <listitem>Boolean value, if true, text is rendered in upper
+        case
+        <para /></listitem>
+    </varlistentry>
+    <varlistentry>
+        <term>
+            <command>
+                <option>use_spacer</option>
+            </command>
+        </term>
+        <listitem>Adds spaces around certain objects to stop them
+        from moving other things around. Arguments are left, right,
+        and none (default). The old true/false values are
+        deprecated and default to right/none respectively. Note
+        that this only helps if you are using a mono font, such as
+        Bitstream Vera Sans Mono.
+        <para /></listitem>
+    </varlistentry>
+    <varlistentry>
+        <term>
+            <command>
+                <option>use_xft</option>
+            </command>
+        </term>
+        <listitem>Use Xft (anti-aliased font and stuff)
+        <para /></listitem>
+    </varlistentry>
+    <varlistentry>
+        <term>
+            <command>
+                <option>xftalpha</option>
+            </command>
+        </term>
+        <listitem>Alpha of Xft font. Must be a value at or between
+        1 and 0.
+        <para /></listitem>
+    </varlistentry>
+    <varlistentry>
+        <term>
+            <command>
+                <option>xftfont</option>
+            </command>
+        </term>
+        <listitem>Xft font to use.
+        <para /></listitem>
+    </varlistentry>
 </variablelist>
index 842d562..c0a318d 100644 (file)
 <variablelist>
-       <varlistentry>
-               <term>
-                       <command><option>addr</option></command>
-                       <option>interface</option>
-               </term>
-               <listitem>
-                       IP address for an interface, or "No Address" if no address is assigned.
-                       <para></para></listitem>
-       </varlistentry>
-
-       <varlistentry>
-               <term>
-                       <command><option>addrs</option></command>
-                       <option>interface</option>
-               </term>
-               <listitem>
-                       IP addresses for an interface (if one - works like addr). Linux only.
-                       <para></para></listitem>
-       </varlistentry>
-
-
-       <varlistentry>
-               <term>
-                       <command><option>acpiacadapter</option></command>
-               </term>
-               <listitem>
-                       ACPI ac adapter state.
-                       <para></para></listitem>
-       </varlistentry>
-
-       <varlistentry>
-               <term>
-                       <command><option>acpifan</option></command>
-               </term>
-               <listitem>
-                       ACPI fan state
-                       <para></para></listitem>
-       </varlistentry>
-
-       <varlistentry>
-               <term>
-                       <command><option>acpitemp</option></command>
-               </term>
-               <listitem>
-                       ACPI temperature in C.
-                       <para></para></listitem>
-       </varlistentry>
-
-       <varlistentry>
-               <term>
-                       <command><option>adt746xcpu</option></command>
-               </term>
-               <listitem>
-                       CPU temperature from therm_adt746x
-                       <para></para></listitem>
-       </varlistentry>
-
-       <varlistentry>
-               <term>
-                       <command><option>adt746xfan</option></command>
-               </term>
-               <listitem>
-                       Fan speed from therm_adt746x
-                       <para></para></listitem>
-       </varlistentry>
-
-       <varlistentry>
-               <term>
-                       <command><option>alignr</option></command>
-                       <option>(num)</option>
-               </term>
-               <listitem>
-                       Right-justify text, with space of N
-                       <para></para></listitem>
-       </varlistentry>
-
-       <varlistentry>
-               <term>
-                       <command><option>alignc</option></command>
-                       <option>(num)</option>
-               </term>
-               <listitem>
-                       Align text to centre
-                       <para></para></listitem>
-       </varlistentry>
-
-       <varlistentry>
-               <term>
-                       <command><option>apcupsd</option></command>
-                       <option>host</option>
-                       <option>port</option>
-               </term>
-               <listitem>
-                       Sets up the connection to apcupsd daemon. Prints nothing, defaults to localhost:3551
-                       <para></para></listitem>
-       </varlistentry>
-
-       <varlistentry>
-               <term>
-                       <command><option>apcupsd_name</option></command>
-               </term>
-               <listitem>
-                       Prints the UPS user-defined name.
-                       <para></para></listitem>
-       </varlistentry>
-
-       <varlistentry>
-               <term>
-                       <command><option>apcupsd_model</option></command>
-               </term>
-               <listitem>
-                       Prints the model of the UPS.
-                       <para></para></listitem>
-       </varlistentry>
-
-       <varlistentry>
-               <term>
-                       <command><option>apcupsd_upsmode</option></command>
-               </term>
-               <listitem>
-                       Prints the UPS mode (e.g. standalone).
-                       <para></para></listitem>
-       </varlistentry>
-
-       <varlistentry>
-               <term>
-                       <command><option>apcupsd_cable</option></command>
-               </term>
-               <listitem>
-                       Prints the UPS connection type.
-                       <para></para></listitem>
-       </varlistentry>
-
-       <varlistentry>
-               <term>
-                       <command><option>apcupsd_status</option></command>
-               </term>
-               <listitem>
-                       Prints current status (on-line, on-battery).
-                       <para></para></listitem>
-       </varlistentry>
-
-       <varlistentry>
-               <term>
-                       <command><option>apcupsd_linev</option></command>
-               </term>
-               <listitem>
-                       Nominal input voltage.
-                       <para></para></listitem>
-       </varlistentry>
-
-       <varlistentry>
-               <term>
-                       <command><option>apcupsd_load</option></command>
-               </term>
-               <listitem>
-                       Current load in percent.
-                       <para></para></listitem>
-       </varlistentry>
-
-       <varlistentry>
-               <term>
-                       <command><option>apcupsd_loadbar</option></command>
-               </term>
-               <listitem>
-                       Bar showing current load.
-                       <para></para></listitem>
-       </varlistentry>
-
-       <varlistentry>
-               <term>
-                       <command><option>apcupsd_loadgraph</option></command>
-                       <option>("normal"|"log") (height),(width) (gradient colour 1) (gradient colour 2) (scale) (-t)</option>
-               </term>
-               <listitem>
-                       History graph of current load.
-                       <para></para></listitem>
-       </varlistentry>
-
-       <varlistentry>
-               <term>
-                       <command><option>apcupsd_loadgauge</option></command>
-                       <option>(height),(width)</option>
-               </term>
-               <listitem>
-                       Gauge that shows current load.
-                       <para></para></listitem>
-       </varlistentry>
-
-       <varlistentry>
-               <term>
-                       <command><option>apcupsd_charge</option></command>
-               </term>
-               <listitem>
-                       Current battery capacity in percent.
-                       <para></para></listitem>
-       </varlistentry>
-
-       <varlistentry>
-               <term>
-                       <command><option>apcupsd_timeleft</option></command>
-               </term>
-               <listitem>
-                       Time left to run on battery.
-                       <para></para></listitem>
-       </varlistentry>
-
-       <varlistentry>
-               <term>
-                       <command><option>apcupsd_temp</option></command>
-               </term>
-               <listitem>
-                       Current internal temperature.
-                       <para></para></listitem>
-       </varlistentry>
-
-       <varlistentry>
-               <term>
-                       <command><option>apcupsd_lastxfer</option></command>
-               </term>
-               <listitem>
-                       Reason for last transfer from line to battery.
-                       <para></para></listitem>
-       </varlistentry>
-
-       <varlistentry>
-               <term>
-                       <command><option>apm_adapter</option></command>
-               </term>
-               <listitem>
-                       Display APM AC adapter status (FreeBSD only)
-                       <para></para></listitem>
-       </varlistentry>
-
-       <varlistentry>
-               <term>
-                       <command><option>apm_battery_life</option></command>
-               </term>
-               <listitem>
-                       Display APM battery life in percent (FreeBSD only)
-                       <para></para></listitem>
-       </varlistentry>
-
-       <varlistentry>
-               <term>
-                       <command><option>apm_battery_time</option></command>
-               </term>
-               <listitem>
-                       Display remaining APM battery life in hh:mm:ss or "unknown" if
-                       AC adapterstatus is on-line or charging (FreeBSD only)
-                       <para></para></listitem>
-       </varlistentry>
-
-       <varlistentry>
-               <term>
-                       <command><option>audacious_bar</option></command>
-                       <option>(height),(width)</option>
-               </term>
-               <listitem>
-                       Progress bar
-                       <para></para></listitem>
-       </varlistentry>
-
-       <varlistentry>
-               <term>
-                       <command><option>audacious_bitrate</option></command>
-               </term>
-               <listitem>
-                       Bitrate of current tune
-                       <para></para></listitem>
-       </varlistentry>
-
-       <varlistentry>
-               <term>
-                       <command><option>audacious_channels</option></command>
-               </term>
-               <listitem>
-                       Number of audio channels of current tune
-                       <para></para></listitem>
-       </varlistentry>
-
-       <varlistentry>
-               <term>
-                       <command><option>audacious_filename</option></command>
-               </term>
-               <listitem>
-                       Full path and filename of current tune
-                       <para></para></listitem>
-       </varlistentry>
-
-       <varlistentry>
-               <term>
-                       <command><option>audacious_frequency</option></command>
-               </term>
-               <listitem>
-                       Sampling frequency of current tune
-                       <para></para></listitem>
-       </varlistentry>
-
-       <varlistentry>
-               <term>
-                       <command><option>audacious_length</option></command>
-               </term>
-               <listitem>
-                       Total length of current tune as MM:SS
-                       <para></para></listitem>
-       </varlistentry>
-
-       <varlistentry>
-               <term>
-                       <command><option>audacious_length_seconds</option></command>
-               </term>
-               <listitem>
-                       Total length of current tune in seconds
-                       <para></para></listitem>
-       </varlistentry>
-
-       <varlistentry>
-               <term>
-                       <command><option>audacious_playlist_position</option></command>
-               </term>
-               <listitem>
-                       Playlist position of current tune
-                       <para></para></listitem>
-       </varlistentry>
-
-       <varlistentry>
-               <term>
-                       <command><option>audacious_playlist_length</option></command>
-               </term>
-               <listitem>
-                       Number of tunes in playlist
-                       <para></para></listitem>
-       </varlistentry>
-
-       <varlistentry>
-               <term>
-                       <command><option>audacious_position</option></command>
-               </term>
-               <listitem>
-                       Position of current tune (MM:SS)
-                       <para></para></listitem>
-       </varlistentry>
-
-       <varlistentry>
-               <term>
-                       <command><option>audacious_position_seconds</option></command>
-               </term>
-               <listitem>
-                       Position of current tune in seconds
-                       <para></para></listitem>
-       </varlistentry>
-
-       <varlistentry>
-               <term>
-                       <command><option>audacious_status</option></command>
-               </term>
-               <listitem>
-                       Player status (Playing/Paused/Stopped/Not running)
-                       <para></para></listitem>
-       </varlistentry>
-
-       <varlistentry>
-               <term>
-                       <command><option>audacious_title</option></command>
-                       <option>(max length)</option>
-               </term>
-               <listitem>
-                       Title of current tune with optional maximum length specifier
-                       <para></para></listitem>
-       </varlistentry>
-
-       <varlistentry>
-               <term>
-                       <command><option>audacious_main_volume</option></command>
-               </term>
-               <listitem>
-                       The current volume fetched from Audacious
-                       <para></para></listitem>
-       </varlistentry>
-
-       <varlistentry>
-               <term>
-                       <command><option>battery</option></command>
-                       <option>(num)</option>
-               </term>
-               <listitem>
-                       Battery status and remaining percentage capacity of ACPI or APM battery. ACPI battery number can be given as argument (default is BAT0).
-                       <para></para></listitem>
-       </varlistentry>
-
-       <varlistentry>
-               <term>
-                       <command><option>battery_short</option></command>
-                       <option>(num)</option>
-               </term>
-               <listitem>
-                       Battery status and remaining percentage capacity of ACPI or APM battery. ACPI battery number can be given as argument (default is BAT0).
-                       This mode display a short status, which means that C is displayed instead of charging and D is displayed instead of discharging.
-                       <para></para></listitem>
-       </varlistentry>
-
-       <varlistentry>
-               <term>
-                       <command><option>battery_bar</option></command>
-                       <option>(height),(width) (num)</option>
-               </term>
-               <listitem>
-                       Battery percentage remaining of ACPI battery in a bar.  ACPI battery number can be given as argument (default is BAT0).
-                       <para></para></listitem>
-       </varlistentry>
-
-       <varlistentry>
-               <term>
-                       <command><option>battery_percent</option></command>
-                       <option>(num)</option>
-               </term>
-               <listitem>
-                       Battery percentage remaining for ACPI battery.  ACPI battery number can be given as argument (default is BAT0).
-                       <para></para></listitem>
-       </varlistentry>
-
-       <varlistentry>
-               <term>
-                       <command><option>battery_time</option></command>
-                       <option>(num)</option>
-               </term>
-               <listitem>
-                       Battery charge/discharge time remaining of ACPI battery.  ACPI battery number can be given as argument (default is BAT0).
-                       <para></para></listitem>
-       </varlistentry>
-
-       <varlistentry>
-               <term>
-                       <command><option>bmpx_artist</option></command>
-               </term>
-               <listitem>
-                       Artist in current BMPx track
-                       <para></para></listitem>
-       </varlistentry>
-
-       <varlistentry>
-               <term>
-                       <command><option>bmpx_album</option></command>
-               </term>
-               <listitem>
-                       Album in current BMPx track
-                       <para></para></listitem>
-       </varlistentry>
-
-       <varlistentry>
-               <term>
-                       <command><option>bmpx_title</option></command>
-               </term>
-               <listitem>
-                       Title of the current BMPx track
-                       <para></para></listitem>
-       </varlistentry>
-
-       <varlistentry>
-               <term>
-                       <command><option>bmpx_track</option></command>
-               </term>
-               <listitem>
-                       Track number of the current BMPx track
-                       <para></para></listitem>
-       </varlistentry>
-
-       <varlistentry>
-               <term>
-                       <command><option>bmpx_bitrate</option></command>
-               </term>
-               <listitem>
-                       Bitrate of the current BMPx track
-                       <para></para></listitem>
-       </varlistentry>
-
-       <varlistentry>
-               <term>
-                       <command><option>bmpx_uri</option></command>
-               </term>
-               <listitem>
-                       URI of the current BMPx track
-                       <para></para></listitem>
-       </varlistentry>
-
-       <varlistentry>
-               <term>
-                       <command><option>buffers</option></command>
-               </term>
-               <listitem>
-                       Amount of memory buffered
-                       <para></para></listitem>
-       </varlistentry>
-
-       <varlistentry>
-               <term>
-                       <command><option>cached</option></command>
-               </term>
-               <listitem>
-                       Amount of memory cached
-                       <para></para></listitem>
-       </varlistentry>
-
-       <varlistentry>
-               <term>
-                       <command><option>color</option></command>
-                       <option>(color)</option>
-               </term>
-               <listitem>
-                       Change drawing color to color
-                       <para></para></listitem>
-       </varlistentry>
-
-       <varlistentry>
-               <term><command><option>colorN</option></command></term>
-               <listitem>
-                       Change drawing color to colorN configuration option, where N is a digit between 0 and 9, inclusively.
-                       <para></para></listitem>
-       </varlistentry>
-
-       <varlistentry>
-               <term>
-                       <command><option>combine</option></command>
-                       <option>var1 var2</option>
-               </term>
-               <listitem>
-                       Places the lines of var2 to the right of the lines of var1 seperated by the chars that are put between var1 and var2. For example: ${combine ${head /proc/cpuinfo 2} - ${head /proc/meminfo 1}} gives as output "cpuinfo_line1 - meminfo_line1" on line 1 and "cpuinfo_line2 -" on line 2. $combine vars can also be nested to place more vars next to each other.
-                       <para></para></listitem>
-       </varlistentry>
-
-       <varlistentry>
-               <term>
-                       <command><option>conky_version</option></command>
-               </term>
-               <listitem>
-                       Conky version
-                       <para></para></listitem>
-       </varlistentry>
-
-       <varlistentry>
-               <term>
-                       <command><option>conky_build_date</option></command>
-               </term>
-               <listitem>
-                       Date Conky was built
-                       <para></para></listitem>
-       </varlistentry>
-
-       <varlistentry>
-               <term>
-                       <command><option>conky_build_arch</option></command>
-               </term>
-               <listitem>
-                       CPU architecture Conky was built for
-                       <para></para></listitem>
-       </varlistentry>
-
-       <varlistentry>
-               <term>
-                       <command><option>cpu</option></command>
-                       <option>(cpuN)</option>
-               </term>
-               <listitem>
-                       CPU usage in percents.  For SMP machines, the CPU number can be provided as an argument.  ${cpu cpu0} is the total usage, and ${cpu cpuX} (X >= 1) are individual CPUs.
-                       <para></para></listitem>
-       </varlistentry>
-
-       <varlistentry>
-               <term>
-                       <command><option>cpubar</option></command>
-                       <option>(cpuN) (height),(width)</option>
-               </term>
-               <listitem>
-                       Bar that shows CPU usage, height is bar's height in pixels.  See $cpu for more info on SMP.
-                       <para></para></listitem>
-       </varlistentry>
-
-       <varlistentry>
-               <term>
-                       <command><option>cpugauge</option></command>
-                       <option>(cpuN) (height),(width)</option>
-               </term>
-               <listitem>
-                       Elliptical gauge that shows CPU usage, height and width are gauge's vertical and horizontal axis respectively.  See $cpu for more info on SMP.
-                       <para></para></listitem>
-       </varlistentry>
-
-       <varlistentry>
-               <term>
-                       <command><option>cpugraph</option></command>
-                       <option>(cpuN) ("normal"|"log") (height),(width) (gradient colour 1) (gradient colour 2) (scale) (-t)</option>
-               </term>
-               <listitem>
-                       CPU usage graph, with optional colours in hex, minus the #.  See $cpu for more info on SMP. Uses a logarithmic scale (to see small numbers) when you use "log" instead of "normal".  Takes the switch '-t' to use a temperature gradient, which makes the gradient values change depending on the amplitude of a particular graph value (try it and see).
-                       <para></para></listitem>
-       </varlistentry>
-
-       <varlistentry>
-               <term>
-                       <command><option>diskio</option></command>
-                       <option>(device)</option>
-               </term>
-               <listitem>
-                       Displays current disk IO.  Device is optional, and takes the form of sda for /dev/sda.  Individual partitions are allowed.
-                       <para></para></listitem>
-       </varlistentry>
-
-       <varlistentry>
-               <term>
-                       <command><option>diskiograph</option></command>
-                       <option>("normal"|"log") (height),(width) (gradient colour 1) (gradient colour 2) (scale) (-t) (device)</option>
-               </term>
-               <listitem>
-                       Disk IO graph, colours defined in hex, minus the #.  If scale is non-zero, it becomes the scale for the graph. Uses a logarithmic scale (to see small numbers) when you use "log" instead of "normal".  Takes the switch '-t' to use a temperature gradient, which makes the gradient values change depending on the amplitude of a particular graph value (try it and see).
-                       <para></para></listitem>
-       </varlistentry>
-
-       <varlistentry>
-               <term>
-                       <command><option>diskio_read</option></command>
-                       <option>(device)</option>
-               </term>
-               <listitem>
-                       Displays current disk IO for reads.  Device as in diskio.
-                       <para></para></listitem>
-       </varlistentry>
-
-       <varlistentry>
-               <term>
-                       <command><option>diskiograph_read</option></command>
-                       <option>("normal"|"log") (height),(width) (gradient colour 1) (gradient colour 2) (scale) (-t) (device)</option>
-               </term>
-               <listitem>
-                       Disk IO graph for reads, colours defined in hex, minus the #.  If scale is non-zero, it becomes the scale for the graph.  Device as in diskio. Uses a logarithmic scale (to see small numbers) when you use "log" instead of "normal".  Takes the switch '-t' to use a temperature gradient, which makes the gradient values change depending on the amplitude of a particular graph value (try it and see).
-                       <para></para></listitem>
-       </varlistentry>
-
-       <varlistentry>
-               <term>
-                       <command><option>diskio_write</option></command>
-                       <option>(device)</option>
-               </term>
-               <listitem>
-                       Displays current disk IO for writes.  Device as in diskio.
-                       <para></para></listitem>
-       </varlistentry>
-
-       <varlistentry>
-               <term>
-                       <command><option>diskiograph_write</option></command>
-                       <option>("normal"|"log") (height),(width) (gradient colour 1) (gradient colour 2) (scale) (-t) (device)</option>
-               </term>
-               <listitem>
-                       Disk IO graph for writes, colours defined in hex, minus the #.  If scale is non-zero, it becomes the scale for the graph.  Device as in diskio. Uses a logarithmic scale (to see small numbers) when you use "log" instead of "normal".  Takes the switch '-t' to use a temperature gradient, which makes the gradient values change depending on the amplitude of a particular graph value (try it and see).
-                       <para></para></listitem>
-       </varlistentry>
-
-       <varlistentry>
-               <term>
-                       <command><option>disk_protect</option></command>
-                       <option>device</option>
-               </term>
-               <listitem>
-                       Disk protection status, if supported (needs kernel-patch). Prints either "frozen" or "free  " (note the padding).
-                       <para></para></listitem>
-       </varlistentry>
-
-       <varlistentry>
-               <term>
-                       <command><option>downspeed</option></command>
-                       <option>net</option>
-               </term>
-               <listitem>
-                       Download speed in KiB
-                       <para></para></listitem>
-       </varlistentry>
-
-       <varlistentry>
-               <term>
-                       <command><option>downspeedf</option></command>
-                       <option>net</option>
-               </term>
-               <listitem>
-                       Download speed in KiB with one decimal
-                       <para></para></listitem>
-       </varlistentry>
-
-       <varlistentry>
-               <term>
-                       <command><option>downspeedgraph</option></command>
-                       <option>("normal"|"log") (height),(width) (gradient colour 1) (gradient colour 2) (scale) (-t) (net)</option>
-               </term>
-               <listitem>
-                       Download speed graph, colours defined in hex, minus the #.  If scale is non-zero, it becomes the scale for the graph. Uses a logarithmic scale (to see small numbers) when you use "log" instead of "normal".  Takes the switch '-t' to use a temperature gradient, which makes the gradient values change depending on the amplitude of a particular graph value (try it and see).
-                       <para></para></listitem>
-       </varlistentry>
-
-       <varlistentry>
-               <term>
-                       <command><option>else</option></command>
-               </term>
-               <listitem>
-                       Text to show if any of the above are not true
-                       <para></para></listitem>
-       </varlistentry>
-
-       <varlistentry>
-               <term>
-                       <command><option>entropy_avail</option></command>
-               </term>
-               <listitem>
-                       Current entropy available for crypto freaks
-                       <para></para></listitem>
-       </varlistentry>
-
-       <varlistentry>
-               <term>
-                       <command><option>entropy_bar</option></command>
-                       <option>(height),(width)</option>
-               </term>
-               <listitem>
-                       Normalized bar of available entropy for crypto freaks
-                       <para></para></listitem>
-       </varlistentry>
-
-       <varlistentry>
-               <term>
-                       <command><option>entropy_perc</option></command>
-               </term>
-               <listitem>
-                       Percentage of entropy available in comparison to the poolsize
-                       <para></para></listitem>
-       </varlistentry>
-
-       <varlistentry>
-               <term>
-                       <command><option>entropy_poolsize</option></command>
-               </term>
-               <listitem>
-                       Total size of system entropy pool for crypto freaks
-                       <para></para></listitem>
-       </varlistentry>
-
-       <varlistentry>
-               <term>
-                       <command><option>eval</option></command>
-                       <option>string</option>
-               </term>
-               <listitem>
-                       Evalutates given string according to the rules of TEXT interpretation, i.e. parsing any contained text object specifications into their output, any occuring '$$' into a single '$' and so on. The output is then being parsed again.
-                       <para></para></listitem>
-       </varlistentry>
-
-       <varlistentry>
-               <term>
-                       <command><option>exec</option></command>
-                       <option>command</option>
-               </term>
-               <listitem>
-                       Executes a shell command and displays the output in conky. warning: this takes a lot more resources than other variables. I'd recommend coding wanted behaviour in C and posting a patch.
-                       <para></para></listitem>
-       </varlistentry>
-
-       <varlistentry>
-               <term>
-                       <command><option>execbar</option></command>
-                       <option>command</option>
-               </term>
-               <listitem>
-                       Same as exec, except if the first value return is a value between 0-100, it will use that number for a bar. The size for bars can be controlled via the default_bar_size config setting.
-                       <para></para></listitem>
-       </varlistentry>
-
-       <varlistentry>
-               <term>
-                       <command><option>execgauge</option></command>
-                       <option>command</option>
-               </term>
-               <listitem>
-                       Same as exec, except if the first value returned is a value between 0-100, it will use that number for a gauge. The size for gauges can be controlled via the default_gauge_size config setting.
-                       <para></para></listitem>
-       </varlistentry>
-
-       <varlistentry>
-               <term>
-                       <command><option>execgraph</option></command>
-                       <option>("normal"|"log") (-t) command</option>
-               </term>
-               <listitem>
-                       Same as execbar, but graphs values. Uses a logaritmic scale when the log option is given (to see small numbers). Values still have to be between 0 and 100.  The size for graphs can be controlled via the default_graph_size config setting.  Takes the switch '-t' to use a temperature gradient, which makes the gradient values change depending on the amplitude of a particular graph value (try it and see).
-                       <para></para></listitem>
-       </varlistentry>
-
-       <varlistentry>
-               <term>
-                       <command><option>execi</option></command>
-                       <option>interval command</option>
-               </term>
-               <listitem>
-                       Same as exec but with specific interval. Interval can't be less than update_interval in configuration. See also $texeci
-                       <para></para></listitem>
-       </varlistentry>
-
-       <varlistentry>
-               <term>
-                       <command><option>execibar</option></command>
-                       <option>interval command</option>
-               </term>
-               <listitem>
-                       Same as execbar, except with an interval
-                       <para></para></listitem>
-       </varlistentry>
-
-       <varlistentry>
-               <term>
-                       <command><option>execigraph</option></command>
-                       <option>interval ("normal"|"log") (-t) command</option>
-               </term>
-               <listitem>
-                       Same as execgraph, but takes an interval arg and graphs values.
-                       <para></para></listitem>
-       </varlistentry>
-
-       <varlistentry>
-               <term>
-                       <command><option>execigauge</option></command>
-                       <option>interval command</option>
-               </term>
-               <listitem>
-                       Same as execgauge, but takes an interval arg and gauges values.
-                       <para></para></listitem>
-       </varlistentry>
-
-       <varlistentry>
-               <term>
-                       <command><option>execp</option></command>
-                       <option>command</option>
-               </term>
-               <listitem>
-                       Executes a shell command and displays the output in conky. warning: this takes a lot more resources than other variables. I'd recommend coding wanted behaviour in C and posting a patch.  This differs from $exec in that it parses the output of the command, so you can insert things like ${color red}hi!${color} in your script and have it correctly parsed by Conky.
-                       Caveats: Conky parses and evaluates the output of $execp every time Conky loops, and then destroys all the objects.  If you try to use anything like $execi within an $execp statement, it will functionally run at the same interval that the $execp statement runs, as it is created and destroyed at every interval.
-                       <para></para></listitem>
-       </varlistentry>
-
-       <varlistentry>
-               <term>
-                       <command><option>execpi</option></command>
-                       <option>interval command</option>
-               </term>
-               <listitem>
-                       Same as execp but with specific interval. Interval can't be less than update_interval in configuration.  Note that the output from the $execpi command is still parsed and evaluated at every interval.
-                       <para></para></listitem>
-       </varlistentry>
-
-       <varlistentry>
-               <term>
-                       <command><option>font</option></command>
-                       <option>(font)</option>
-               </term>
-               <listitem>
-                       Specify a different font. This new font will apply to the current line and everything following.  You can use a $font with no arguments to change back to the default font (much like with $color)
-                       <para></para></listitem>
-       </varlistentry>
-
-       <varlistentry>
-               <term>
-                       <command><option>freq</option></command>
-                       <option>(n)</option>
-               </term>
-               <listitem>
-                       Returns CPU #n's frequency in MHz. CPUs are counted from 1. If omitted, the parameter defaults to 1.
-                       <para></para></listitem>
-       </varlistentry>
-       <varlistentry>
-               <term>
-                       <command><option>freq_g</option></command>
-                       <option>(n)</option>
-               </term>
-               <listitem>
-                       Returns CPU #n's frequency in GHz. CPUs are counted from 1. If omitted, the parameter defaults to 1.
-                       <para></para></listitem>
-       </varlistentry>
-
-       <varlistentry>
-               <term>
-                       <command><option>fs_bar</option></command>
-                       <option>(height),(width) fs</option>
-               </term>
-               <listitem>
-                       Bar that shows how much space is used on a file system. height is the height in pixels. fs is any file on that file system.
-                       <para></para></listitem>
-       </varlistentry>
-
-       <varlistentry>
-               <term>
-                       <command><option>fs_bar_free</option></command>
-                       <option>(height),(width) fs</option>
-               </term>
-               <listitem>
-                       Bar that shows how much space is free on a file system. height is the height in pixels. fs is any file on that file system.
-                       <para></para></listitem>
-       </varlistentry>
-
-       <varlistentry>
-               <term>
-                       <command><option>fs_free</option></command>
-                       <option>(fs)</option>
-               </term>
-               <listitem>
-                       Free space on a file system available for users.
-                       <para></para></listitem>
-       </varlistentry>
-
-       <varlistentry>
-               <term>
-                       <command><option>fs_free_perc</option></command>
-                       <option>(fs)</option>
-               </term>
-               <listitem>
-                       Free percentage of space on a file system available for users.
-                       <para></para></listitem>
-       </varlistentry>
-
-       <varlistentry>
-               <term>
-                       <command><option>fs_size</option></command>
-                       <option>(fs)</option>
-               </term>
-               <listitem>
-                       File system size.
-                       <para></para></listitem>
-       </varlistentry>
-
-       <varlistentry>
-               <term>
-                       <command><option>fs_type</option></command>
-                       <option>(fs)</option>
-               </term>
-               <listitem>
-                       File system type.
-                       <para></para></listitem>
-       </varlistentry>
-
-       <varlistentry>
-               <term>
-                       <command><option>fs_used</option></command>
-                       <option>(fs)</option>
-               </term>
-               <listitem>
-                       File system used space.
-                       <para></para></listitem>
-       </varlistentry>
-
-       <varlistentry>
-               <term>
-                       <command><option>fs_used_perc</option></command>
-                       <option>(fs)</option>
-               </term>
-               <listitem>
-                       Percent of file system used space.
-                       <para></para></listitem>
-       </varlistentry>
-
-       <varlistentry>
-               <term>
-                       <command><option>goto</option></command>
-                       <option>x</option>
-               </term>
-               <listitem>
-                       The next element will be printed at position 'x'.
-                       <para></para></listitem>
-       </varlistentry>
-
-       <varlistentry>
-               <term>
-                       <command><option>gw_iface</option></command>
-               </term>
-               <listitem>
-                       Displays the default route's interface or "multiple"/"none" accordingly.
-                       <para></para></listitem>
-       </varlistentry>
-
-       <varlistentry>
-               <term>
-                       <command><option>gw_ip</option></command>
-               </term>
-               <listitem>
-                       Displays the default gateway's IP or "multiple"/"none" accordingly.
-                       <para></para></listitem>
-       </varlistentry>
-
-       <varlistentry>
-               <term>
-                       <command><option>hddtemp</option></command>
-                       <option>dev, (host,(port))</option>
-               </term>
-               <listitem>
-                       Displays temperature of a selected hard disk drive as reported by the hddtemp daemon running on host:port.
-                       Default host is 127.0.0.1, default port is 7634.
-                       <para></para></listitem>
-       </varlistentry>
-
-       <varlistentry>
-               <term>
-                       <command><option>head</option></command>
-                       <option>logfile lines (interval)</option>
-               </term>
-               <listitem>
-                       Displays first N lines of supplied text text file. If interval is not supplied, Conky assumes 2x Conky's interval. Max of 30 lines can be displayed, or until the text buffer is filled.
-                       <para></para></listitem>
-       </varlistentry>
-
-       <varlistentry>
-               <term>
-                       <command><option>hr</option></command>
-                       <option>(height)</option>
-               </term>
-               <listitem>
-                       Horizontal line, height is the height in pixels
-                       <para></para></listitem>
-       </varlistentry>
-
-       <varlistentry>
-               <term>
-                       <command><option>hwmon</option></command>
-                       <option>(dev) type n (factor offset)</option>
-               </term>
-               <listitem>
-                       Hwmon sensor from sysfs (Linux 2.6). Parameter dev may be omitted if you have only one hwmon device. Parameter type is either 'in' or 'vol' meaning voltage; 'fan' meaning fan; 'temp' meaning temperature. Parameter n is number of the sensor. See /sys/class/hwmon/ on your local computer. The optional arguments 'factor' and 'offset' allow precalculation of the raw input, which is being modified as follows: 'input = input * factor + offset'. Note that they have to be given as decimal values (i.e. contain at least one decimal place).
-                       <para></para></listitem>
-       </varlistentry>
-
-       <varlistentry>
-               <term>
-                       <command><option>iconv_start</option></command>
-                       <option>codeset_from codeset_to</option>
-               </term>
-               <listitem>
-                       Convert text from one codeset to another using GNU iconv.  Needs to be stopped with iconv_stop.
-                       <para></para></listitem>
-       </varlistentry>
-
-       <varlistentry>
-               <term>
-                       <command><option>iconv_stop</option></command>
-                       <option></option>
-               </term>
-               <listitem>
-                       Stop iconv codeset conversion.
-                       <para></para></listitem>
-       </varlistentry>
-
-       <varlistentry>
-               <term>
-                       <command><option>image</option></command>
-                       <option>&lt;path to image&gt; (-p x,y) (-s WxH) (-n) (-f interval)</option>
-               </term>
-               <listitem>
-                       Renders an image from the path specified using Imlib2.  Takes 4 optional arguments: a position, a size, a no-cache switch, and a cache flush interval.  Changing the x,y position will move the position of the image, and changing the WxH will scale the image.  If you specify the no-cache flag (-n), the image will not be cached.  Alternately, you can specify the -f int switch to specify a cache flust interval for a particular image.  Example: ${image /home/brenden/cheeseburger.jpg -p 20,20 -s 200x200} will render 'cheeseburger.jpg' at (20,20) scaled to 200x200 pixels.  Conky does not make any attempt to adjust the position (or any other formatting) of images, they are just rendered as per the arguments passed.  The only reason $image is part of the TEXT section, is to allow for runtime modifications, through $execp $lua_parse, $lua_read_parse, or some other method.
-                       <para></para></listitem>
-       </varlistentry>
-
-       <varlistentry>
-               <term>
-                       <command><option>i2c</option></command>
-                       <option>(dev) type n (factor offset)</option>
-               </term>
-               <listitem>
-                       I2C sensor from sysfs (Linux 2.6).  Parameter dev may be omitted if you have only one I2C device.  Parameter type is either 'in' or 'vol' meaning voltage; 'fan' meaning fan; 'temp' meaning temperature.  Parameter n is number of the sensor. See /sys/bus/i2c/devices/ on your local computer. The optional arguments 'factor' and 'offset' allow precalculation of the raw input, which is being modified as follows: 'input = input * factor + offset'. Note that they have to be given as decimal values (i.e. contain at least one decimal place).
-                       <para></para></listitem>
-       </varlistentry>
-
-       <varlistentry>
-               <term>
-                       <command><option>i8k_ac_status</option></command>
-                       <option></option>
-               </term>
-               <listitem>
-                       If running the i8k kernel driver for Inspiron laptops, displays whether ac power is on, as listed in /proc/i8k (translated to human-readable). Beware that this is by default not enabled by i8k itself.
-                       <para></para></listitem>
-       </varlistentry>
-
-       <varlistentry>
-               <term>
-                       <command><option>i8k_bios</option></command>
-                       <option></option>
-               </term>
-               <listitem>
-                       If running the i8k kernel driver for Inspiron laptops, displays the bios version as listed in /proc/i8k.
-                       <para></para></listitem>
-       </varlistentry>
-
-       <varlistentry>
-               <term>
-                       <command><option>i8k_buttons_status</option></command>
-                       <option></option>
-               </term>
-               <listitem>
-                       If running the i8k kernel driver for Inspiron laptops, displays the volume buttons status as listed in /proc/i8k.
-                       <para></para></listitem>
-       </varlistentry>
-
-       <varlistentry>
-               <term>
-                       <command><option>i8k_cpu_temp</option></command>
-                       <option></option>
-               </term>
-               <listitem>
-                       If running the i8k kernel driver for Inspiron laptops, displays the cpu temperature in Celsius, as reported by /proc/i8k.
-                       <para></para></listitem>
-       </varlistentry>
-
-       <varlistentry>
-               <term>
-                       <command><option>i8k_left_fan_rpm</option></command>
-                       <option></option>
-               </term>
-               <listitem>
-                       If running the i8k kernel driver for Inspiron laptops, displays the left fan's rate of rotation, in revolutions per minute as listed in /proc/i8k. Beware, some laptops i8k reports these fans in reverse order.
-                       <para></para></listitem>
-       </varlistentry>
-
-       <varlistentry>
-               <term>
-                       <command><option>i8k_left_fan_status</option></command>
-                       <option></option>
-               </term>
-               <listitem>
-                       If running the i8k kernel driver for Inspiron laptops, displays the left fan status as listed in /proc/i8k (translated to human-readable). Beware, some laptops i8k reports these fans in reverse order.
-                       <para></para></listitem>
-       </varlistentry>
-
-       <varlistentry>
-               <term>
-                       <command><option>i8k_right_fan_rpm</option></command>
-                       <option></option>
-               </term>
-               <listitem>
-                       If running the i8k kernel driver for Inspiron laptops, displays the right fan's rate of rotation, in revolutions per minute as listed in /proc/i8k. Beware, some laptops i8k reports these fans in reverse order.
-                       <para></para></listitem>
-       </varlistentry>
-
-       <varlistentry>
-               <term>
-                       <command><option>i8k_right_fan_status</option></command>
-                       <option></option>
-               </term>
-               <listitem>
-                       If running the i8k kernel driver for Inspiron laptops, displays the right fan status as listed in /proc/i8k (translated to human-readable). Beware, some laptops i8k reports these fans in reverse order.
-                       <para></para></listitem>
-       </varlistentry>
-
-       <varlistentry>
-               <term>
-                       <command><option>i8k_serial</option></command>
-                       <option></option>
-               </term>
-               <listitem>
-                       If running the i8k kernel driver for Inspiron laptops, displays your laptop serial number as listed in /proc/i8k.
-                       <para></para></listitem>
-       </varlistentry>
-
-       <varlistentry>
-               <term>
-                       <command><option>i8k_version</option></command>
-                       <option></option>
-               </term>
-               <listitem>
-                       If running the i8k kernel driver for Inspiron laptops, displays the version formatting of /proc/i8k.
-                       <para></para></listitem>
-       </varlistentry>
-
-       <varlistentry>
-               <term>
-                       <command><option>ibm_fan</option></command>
-               </term>
-               <listitem>
-                       If running the IBM ACPI, displays the fan speed.
-                       <para></para></listitem>
-       </varlistentry>
-
-       <varlistentry>
-               <term>
-                       <command><option>ibm_temps</option></command>
-                       <option>N</option>
-               </term>
-               <listitem>
-                       If running the IBM ACPI, displays the temperatures
-                       from the IBM temperature sensors (N=0..7) Sensor 0 is
-                       on the CPU, 3 is on the GPU.
-                       <para></para></listitem>
-       </varlistentry>
-
-       <varlistentry>
-               <term>
-                       <command><option>ibm_volume</option></command>
-               </term>
-               <listitem>
-                       If running the IBM ACPI, displays the "master" volume,
-                       controlled by the volume keys (0-14).
-                       <para></para></listitem>
-       </varlistentry>
-
-       <varlistentry>
-               <term>
-                       <command><option>ibm_brightness</option></command>
-               </term>
-               <listitem>
-                       If running the IBM ACPI, displays the brigtness of the
-                       laptops's LCD (0-7).
-                       <para></para></listitem>
-       </varlistentry>
-
-       <varlistentry>
-               <term>
-                       <command><option>if_empty</option></command>
-                       <option>(var)</option>
-               </term>
-               <listitem>
-                       if conky variable VAR is empty, display everything
-                       between $if_empty and the matching $endif
-                       <para></para></listitem>
-       </varlistentry>
-
-       <varlistentry>
-               <term>
-                       <command><option>if_existing</option></command>
-                       <option>file (string)</option>
-               </term>
-               <listitem>
-                       if FILE exists, display everything between if_existing
-                       and the matching $endif.  The optional second paramater
-                       checks for FILE containing the specified string and
-                       prints everything between $if_existing and the matching
-                       $endif.
-                       <para></para></listitem>
-       </varlistentry>
-
-       <varlistentry>
-               <term>
-                       <command><option>if_gw</option></command>
-               </term>
-               <listitem>
-                       if there is at least one default gateway, display
-                       everything between $if_gw and the matching $endif
-                       <para></para></listitem>
-       </varlistentry>
-
-       <varlistentry>
-               <term>
-                       <command><option>if_match</option></command>
-                       <option>expression</option>
-               </term>
-               <listitem>
-                       Evaluates the given boolean expression, printing
-                       everything between $if_match and the matching $endif
-                       depending on whether the evaluation returns true or not.
-                       Valid expressions consist of a left side, an operator
-                       and a right side. Left and right sides are being parsed
-                       for contained text objects before evaluation. Recognised
-                       left and right side types are:
-                       <simplelist>
-                               <member><command>double</command>:
-                                       argument consists of only digits and a
-                                       single dot.
-                               </member>
-                               <member><command>long</command>:
-                                       argument consists of only digits.
-                               </member>
-                               <member><command>string</command>:
-                                       argument is enclosed in quotation mark
-                                       or the checks for double and long failed
-                                       before.
-                               </member>
-                       </simplelist>
-                       Valid operands are:
-                       '&gt;', '&lt;', '&gt;=', '&lt;=', '==', '!='.
-                       <para></para></listitem>
-       </varlistentry>
-
-       <varlistentry>
-               <term>
-                       <command><option>if_mixer_mute</option></command>
-                       <option>(mixer)</option>
-               </term>
-               <listitem>
-                       If mixer exists, display everything between $if_mixer_mute and the
-                       matching $endif.  If no mixer is specified, "Master" is used.
-                       <para></para></listitem>
-       </varlistentry>
-
-       <varlistentry>
-               <term>
-                       <command><option>if_running</option></command>
-                       <option>(process)</option>
-               </term>
-               <listitem>
-                       if PROCESS is running, display everything $if_running
-                       and the matching $endif.  This uses the ``pidof'' command, so the
-                       -x switch is also supported.
-                       <para></para></listitem>
-       </varlistentry>
-
-       <varlistentry>
-               <term>
-                       <command><option>if_mounted</option></command>
-                       <option>(mountpoint)</option>
-               </term>
-               <listitem>
-                       if MOUNTPOINT is mounted, display everything between
-                       $if_mounted and the matching $endif
-                       <para></para></listitem>
-       </varlistentry>
-
-       <varlistentry>
-               <term>
-                       <command><option>if_smapi_bat_installed</option></command>
-                       <option>(INDEX)</option>
-               </term>
-               <listitem>
-                       when using smapi, if the battery with index INDEX is
-                       installed, display everything between
-                       $if_smapi_bat_installed and the matching $endif
-                       <para></para></listitem>
-       </varlistentry>
-
-       <varlistentry>
-               <term>
-                       <command><option>if_up</option></command>
-                       <option>(interface)</option>
-               </term>
-               <listitem>
-                       if INTERFACE exists and is up, display everything between $if_up and the matching $endif
-                       <para></para></listitem>
-       </varlistentry>
-
-       <varlistentry>
-               <term>
-                       <command><option>if_updatenr</option></command>
-                       <option>(updatenr)</option>
-               </term>
-               <listitem>
-                       If it's the UPDATENR-th time that conky updates, 
-                       display everything between $if_updatenr and the matching $endif.
-                       The counter resets when the highest UPDATENR is reached.
-                       Example : "{$if_updatenr 1}foo$endif{$if_updatenr 2}bar$endif{$if_updatenr 4}$endif"
-                       shows foo 25% of the time followed by bar 25% of the time followed by nothing the other half of the time.
-                       <para></para></listitem>
-       </varlistentry>
-
-       <varlistentry>
-               <term>
-                       <command><option>imap_messages</option></command>
-                       <option>(args)</option>
-               </term>
-               <listitem>
-                       Displays the number of messages in your global IMAP inbox by default.  You can define individual IMAP inboxes seperately by passing arguments to this object.  Arguments are: "host user pass [-i interval (in seconds)] [-f folder] [-p port] [-e command] [-r retries]".  Default port is 143, default folder is 'INBOX', default interval is 5 minutes, and default number of retries before giving up is 5.  If the password is supplied as '*', you will be prompted to enter the password when Conky starts.
-                       <para></para></listitem>
-       </varlistentry>
-
-       <varlistentry>
-               <term>
-                       <command><option>imap_unseen</option></command>
-                       <option>(args)</option>
-               </term>
-               <listitem>
-                       Displays the number of unseen messages in your global IMAP inbox by default.  You can define individual IMAP inboxes seperately by passing arguments to this object.  Arguments are: "host user pass [-i interval (in seconds)] [-f folder] [-p port] [-e command] [-r retries]".  Default port is 143, default folder is 'INBOX', default interval is 5 minutes, and default number of retries before giving up is 5.  If the password is supplied as '*', you will be prompted to enter the password when Conky starts.
-                       <para></para></listitem>
-       </varlistentry>
-
-       <varlistentry>
-               <term>
-                       <command><option>ioscheduler</option></command>
-                       <option>disk</option>
-               </term>
-               <listitem>
-                       Prints the current ioscheduler used for the given disk name (i.e. e.g. "hda" or "sdb")
-                       <para></para></listitem>
-       </varlistentry>
-
-       <varlistentry>
-               <term>
-                       <command><option>kernel</option></command>
-               </term>
-               <listitem>
-                       Kernel version
-                       <para></para></listitem>
-       </varlistentry>
-
-       <varlistentry>
-               <term>
-                       <command><option>laptop_mode</option></command>
-               </term>
-               <listitem>
-                       The value of /proc/sys/vm/laptop_mode
-                       <para></para></listitem>
-       </varlistentry>
-
-       <varlistentry>
-               <term>
-                       <command><option>loadavg</option></command>
-               </term>
-               <listitem>
-                       (1,2,3)> System load average, 1 is for past 1 minute, 2 for past 5 minutes and 3 for past 15 minutes.
-                       <para></para></listitem>
-       </varlistentry>
-
-       <varlistentry>
-               <term>
-                       <command><option>loadgraph</option></command>
-                       <option>("normal"|"log") (height),(width) (gradient colour 1) (gradient colour 2) (scale) (-t)</option>
-               </term>
-               <listitem>
-                       Load1 average graph, similar to xload, with optional colours in hex, minus the #. Uses a logarithmic scale (to see small numbers) when you use "log" instead of "normal".  Takes the switch '-t' to use a temperature gradient, which makes the gradient values change depending on the amplitude of a particular graph value (try it and see).
-                       <para></para></listitem>
-       </varlistentry>
-
-       <varlistentry>
-               <term>
-                       <command><option>lines</option></command>
-                       <option>textfile</option>
-               </term>
-               <listitem>
-                       Displays the number of lines in the given file
-                       <para></para></listitem>
-       </varlistentry>
-
-       <varlistentry>
-               <term>
-                       <command><option>machine</option></command>
-               </term>
-               <listitem>
-                       Machine, i686 for example
-                       <para></para></listitem>
-       </varlistentry>
-
-       <varlistentry>
-               <term>
-                       <command><option>mails</option></command>
-                       <option>(mailbox)</option>
-                       <option>(interval)</option>
-               </term>
-               <listitem>
-                       Mail count in the specified mailbox or your mail spool if not.
-                       Both mbox and maildir type mailboxes are supported. You can
-                       use a program like fetchmail to get mails from some server
-                       using your favourite protocol. See also new_mails.
-                       <para></para></listitem>
-       </varlistentry>
-
-       <varlistentry>
-               <term>
-                       <command><option>new_mails</option></command>
-                       <option>(mailbox)</option>
-                       <option>(interval)</option>
-               </term>
-               <listitem>
-                       Unread mail count in the specified mailbox or mail spool if
-                       not. Both mbox and maildir type mailboxes are supported.
-                       <para></para></listitem>
-       </varlistentry>
-
-       <varlistentry>
-               <term>
-                       <command><option>seen_mails</option></command>
-                       <option>(maildir)</option>
-                       <option>(interval)</option>
-               </term>
-               <listitem>
-                       Number of mails marked as seen in the specified mailbox or mail spool if
-                       not. Only maildir type mailboxes are supported, mbox type will return -1.
-                       <para></para></listitem>
-       </varlistentry>
-
-       <varlistentry>
-               <term>
-                       <command><option>unseen_mails</option></command>
-                       <option>(maildir)</option>
-                       <option>(interval)</option>
-               </term>
-               <listitem>
-                       Number of new or unseen mails in the specified mailbox or mail spool if
-                       not. Only maildir type mailboxes are supported, mbox type will return -1.
-                       <para></para></listitem>
-       </varlistentry>
-
-       <varlistentry>
-               <term>
-                       <command><option>flagged_mails</option></command>
-                       <option>(maildir)</option>
-                       <option>(interval)</option>
-               </term>
-               <listitem>
-                       Number of mails marked as flagged in the specified mailbox or mail spool if
-                       not. Only maildir type mailboxes are supported, mbox type will return -1.
-                       <para></para></listitem>
-       </varlistentry>
-
-       <varlistentry>
-               <term>
-                       <command><option>unflagged_mails</option></command>
-                       <option>(maildir)</option>
-                       <option>(interval)</option>
-               </term>
-               <listitem>
-                       Number of mails not marked as flagged in the specified mailbox or mail spool if
-                       not. Only maildir type mailboxes are supported, mbox type will return -1.
-                       <para></para></listitem>
-       </varlistentry>
-
-       <varlistentry>
-               <term>
-                       <command><option>forwarded_mails</option></command>
-                       <option>(maildir)</option>
-                       <option>(interval)</option>
-               </term>
-               <listitem>
-                       Number of mails marked as forwarded in the specified mailbox or mail spool if
-                       not. Only maildir type mailboxes are supported, mbox type will return -1.
-                       <para></para></listitem>
-       </varlistentry>
-
-       <varlistentry>
-               <term>
-                       <command><option>unforwarded_mails</option></command>
-                       <option>(maildir)</option>
-                       <option>(interval)</option>
-               </term>
-               <listitem>
-                       Number of mails not marked as forwarded in the specified mailbox or mail spool if
-                       not. Only maildir type mailboxes are supported, mbox type will return -1.
-                       <para></para></listitem>
-       </varlistentry>
-
-       <varlistentry>
-               <term>
-                       <command><option>replied_mails</option></command>
-                       <option>(maildir)</option>
-                       <option>(interval)</option>
-               </term>
-               <listitem>
-                       Number of mails marked as replied in the specified mailbox or mail spool if
-                       not. Only maildir type mailboxes are supported, mbox type will return -1.
-                       <para></para></listitem>
-       </varlistentry>
-
-       <varlistentry>
-               <term>
-                       <command><option>unreplied_mails</option></command>
-                       <option>(maildir)</option>
-                       <option>(interval)</option>
-               </term>
-               <listitem>
-                       Number of mails not marked as replied in the specified mailbox or mail spool if
-                       not. Only maildir type mailboxes are supported, mbox type will return -1.
-                       <para></para></listitem>
-       </varlistentry>
-
-       <varlistentry>
-               <term>
-                       <command><option>draft_mails</option></command>
-                       <option>(maildir)</option>
-                       <option>(interval)</option>
-               </term>
-               <listitem>
-                       Number of mails marked as draft in the specified mailbox or mail spool if
-                       not. Only maildir type mailboxes are supported, mbox type will return -1.
-                       <para></para></listitem>
-       </varlistentry>
-
-       <varlistentry>
-               <term>
-                       <command><option>trashed_mails</option></command>
-                       <option>(maildir)</option>
-                       <option>(interval)</option>
-               </term>
-               <listitem>
-                       Number of mails marked as trashed in the specified mailbox or mail spool if
-                       not. Only maildir type mailboxes are supported, mbox type will return -1.
-                       <para></para></listitem>
-       </varlistentry>
-
-       <varlistentry>
-               <term>
-                       <command><option>mboxscan</option></command>
-                       <option>(-n number of messages to print) (-fw from width) (-sw subject width) mbox</option>
-               </term>
-               <listitem>
-                       Print a summary of recent messages in an mbox format mailbox.  mbox parameter is the filename of the mailbox (can be encapsulated using '"', ie. ${mboxscan -n 10 "/home/brenden/some box"}
-                       <para></para></listitem>
-       </varlistentry>
-
-       <varlistentry>
-               <term>
-                       <command><option>mem</option></command>
-               </term>
-               <listitem>
-                       Amount of memory in use
-                       <para></para></listitem>
-       </varlistentry>
-
-       <varlistentry>
-               <term>
-                       <command><option>membar</option></command>
-                       <option>(height),(width)</option>
-               </term>
-               <listitem>
-                       Bar that shows amount of memory in use
-                       <para></para></listitem>
-       </varlistentry>
-
-       <varlistentry>
-               <term>
-                       <command><option>memgauge</option></command>
-                       <option>(height),(width)</option>
-               </term>
-               <listitem>
-                       Gauge that shows amount of memory in use (see cpugauge)
-                       <para></para></listitem>
-       </varlistentry>
-
-       <varlistentry>
-               <term>
-                       <command><option>memgraph</option></command>
-                       <option>("normal"|"log") (height),(width) (gradient colour 1) (gradient colour 2) (scale) (-t)</option>
-               </term>
-               <listitem>
-                       Memory usage graph. Uses a logarithmic scale (to see small numbers) when you use "log" instead of "normal".  Takes the switch '-t' to use a temperature gradient, which makes the gradient values change depending on the amplitude of a particular graph value (try it and see).
-                       <para></para></listitem>
-       </varlistentry>
-
-       <varlistentry>
-               <term>
-                       <command><option>memeasyfree</option></command>
-               </term>
-               <listitem>
-                       Amount of free memory including the memory that is very easily freed (buffers/cache)
-                       <para></para></listitem>
-       </varlistentry>
-
-       <varlistentry>
-               <term>
-                       <command><option>memfree</option></command>
-               </term>
-               <listitem>
-                       Amount of free memory
-                       <para></para></listitem>
-       </varlistentry>
-
-       <varlistentry>
-               <term>
-                       <command><option>memmax</option></command>
-               </term>
-               <listitem>
-                       Total amount of memory
-                       <para></para></listitem>
-       </varlistentry>
-
-       <varlistentry>
-               <term>
-                       <command><option>memperc</option></command>
-               </term>
-               <listitem>
-                       Percentage of memory in use
-                       <para></para></listitem>
-       </varlistentry>
-
-       <varlistentry>
-               <term>
-                       <command><option>mixer</option></command>
-                       <option>(device)</option>
-               </term>
-               <listitem>
-                       Prints the mixer value as reported by the OS.  Default mixer is "vol", but you can specify one of the following optional arguments: "vol", "bass", "treble", "synth", "pcm", "speaker", "line", "mic", "cd", "mix", "pcm2", "rec", "igain", "ogain", "line1", "line2", "line3", "dig1", "dig2", "dig3", "phin", "phout", "video", "radio", "monitor".  Refer to the definition of SOUND_DEVICE_NAMES in &lt;linux/soundcard.h&gt; (on Linux), &lt;soundcard.h&gt; (on OpenBSD), or &lt;sys/soundcard.h&gt; to find the exact options available on your system.
-                       <para></para></listitem>
-       </varlistentry>
-
-       <varlistentry>
-               <term>
-                       <command><option>mixerbar</option></command>
-                       <option>(device)</option>
-               </term>
-               <listitem>
-                       Displays mixer value in a bar as reported by the OS.  See docs for $mixer for details on arguments.
-                       <para></para></listitem>
-       </varlistentry>
-
-       <varlistentry>
-               <term>
-                       <command><option>mixerr</option></command>
-                       <option>(device)</option>
-               </term>
-               <listitem>
-                       Prints the right channel mixer value as reported by the OS.  See docs for $mixer for details on arguments.
-                       <para></para></listitem>
-       </varlistentry>
-
-       <varlistentry>
-               <term>
-                       <command><option>mixerrbar</option></command>
-                       <option>(device)</option>
-               </term>
-               <listitem>
-                       Displays the right channel mixer value in a bar as reported by the OS.  See docs for $mixer for details on arguments.
-                       <para></para></listitem>
-       </varlistentry>
-
-       <varlistentry>
-               <term>
-                       <command><option>mixerl</option></command>
-                       <option>(device)</option>
-               </term>
-               <listitem>
-                       Prints the left channel mixer value as reported by the OS.  See docs for $mixer for details on arguments.
-                       <para></para></listitem>
-       </varlistentry>
-
-       <varlistentry>
-               <term>
-                       <command><option>mixerlbar</option></command>
-                       <option>(device)</option>
-               </term>
-               <listitem>
-                       Displays the left channel mixer value in a bar as reported by the OS.  See docs for $mixer for details on arguments.
-                       <para></para></listitem>
-       </varlistentry>
-
-       <varlistentry>
-               <term>
-                       <command><option>moc_state</option></command>
-               </term>
-               <listitem>
-                       Current state of MOC; playing, stopped etc.
-                       <para></para></listitem>
-       </varlistentry>
-
-       <varlistentry>
-               <term>
-                       <command><option>moc_file</option></command>
-               </term>
-               <listitem>
-                       File name of the current MOC song
-                       <para></para></listitem>
-       </varlistentry>
-
-       <varlistentry>
-               <term>
-                       <command><option>moc_title</option></command>
-               </term>
-               <listitem>
-                       Title of the current MOC song
-                       <para></para></listitem>
-       </varlistentry>
-
-       <varlistentry>
-               <term>
-                       <command><option>moc_artist</option></command>
-               </term>
-               <listitem>
-                       Artist of the current MOC song
-                       <para></para></listitem>
-       </varlistentry>
-
-       <varlistentry>
-               <term>
-                       <command><option>moc_song</option></command>
-               </term>
-               <listitem>
-                       The current song name being played in MOC.
-                       <para></para></listitem>
-       </varlistentry>
-
-       <varlistentry>
-               <term>
-                       <command><option>moc_album</option></command>
-               </term>
-               <listitem>
-                       Album of the current MOC song
-                       <para></para></listitem>
-       </varlistentry>
-
-       <varlistentry>
-               <term>
-                       <command><option>moc_totaltime</option></command>
-               </term>
-               <listitem>
-                       Total length of the current MOC song
-                       <para></para></listitem>
-       </varlistentry>
-
-       <varlistentry>
-               <term>
-                       <command><option>moc_timeleft</option></command>
-               </term>
-               <listitem>
-                       Time left in the current MOC song
-                       <para></para></listitem>
-       </varlistentry>
-
-       <varlistentry>
-               <term>
-                       <command><option>moc_curtime</option></command>
-               </term>
-               <listitem>
-                       Current time of the current MOC song
-                       <para></para></listitem>
-       </varlistentry>
-
-       <varlistentry>
-               <term>
-                       <command><option>moc_bitrate</option></command>
-               </term>
-               <listitem>
-                       Bitrate in the current MOC song
-                       <para></para></listitem>
-       </varlistentry>
-
-       <varlistentry>
-               <term>
-                       <command><option>moc_rate</option></command>
-               </term>
-               <listitem>
-                       Rate of the current MOC song
-                       <para></para></listitem>
-       </varlistentry>
-
-       <varlistentry>
-               <term>
-                       <command><option>monitor</option></command>
-               </term>
-               <listitem>
-                       Number of the monitor on which conky is running
-                       <para></para></listitem>
-       </varlistentry>
-
-       <varlistentry>
-               <term>
-                       <command><option>monitor_number</option></command>
-               </term>
-               <listitem>
-                       Number of monitors
-                       <para></para></listitem>
-       </varlistentry>
-
-       <varlistentry>
-               <term>
-                       <command><option>mpd_artist</option></command>
-               </term>
-               <listitem>
-                       Artist in current MPD song must be enabled at compile
-                       <para></para></listitem>
-       </varlistentry>
-
-       <varlistentry>
-               <term>
-                       <command><option>mpd_album</option></command>
-               </term>
-               <listitem>
-                       Album in current MPD song
-                       <para></para></listitem>
-       </varlistentry>
-
-       <varlistentry>
-               <term>
-                       <command><option>mpd_bar</option></command>
-                       <option>(height),(width)</option>
-               </term>
-               <listitem>
-                       Bar of mpd's progress
-                       <para></para></listitem>
-       </varlistentry>
-
-       <varlistentry>
-               <term>
-                       <command><option>mpd_bitrate</option></command>
-               </term>
-               <listitem>
-                       Bitrate of current song
-                       <para></para></listitem>
-       </varlistentry>
-
-       <varlistentry>
-               <term>
-                       <command><option>mpd_status</option></command>
-               </term>
-               <listitem>
-                       Playing, stopped, et cetera.
-                       <para></para></listitem>
-       </varlistentry>
-
-       <varlistentry>
-               <term>
-                       <command><option>mpd_title</option></command>
-                       <option>(max length)</option>
-               </term>
-               <listitem>
-                       Title of current MPD song
-                       <para></para></listitem>
-       </varlistentry>
-
-       <varlistentry>
-               <term>
-                       <command><option>mpd_vol</option></command>
-               </term>
-               <listitem>
-                       MPD's volume
-                       <para></para></listitem>
-       </varlistentry>
-
-       <varlistentry>
-               <term>
-                       <command><option>mpd_elapsed</option></command>
-               </term>
-               <listitem>
-                       Song's elapsed time
-                       <para></para></listitem>
-       </varlistentry>
-
-       <varlistentry>
-               <term>
-                       <command><option>mpd_length</option></command>
-               </term>
-               <listitem>
-                       Song's length
-                       <para></para></listitem>
-       </varlistentry>
-
-       <varlistentry>
-               <term>
-                       <command><option>mpd_percent</option></command>
-               </term>
-               <listitem>
-                       Percent of song's progress
-                       <para></para></listitem>
-       </varlistentry>
-
-       <varlistentry>
-               <term>
-                       <command><option>mpd_random</option></command>
-               </term>
-               <listitem>
-                       Random status (On/Off)
-                       <para></para></listitem>
-       </varlistentry>
-
-       <varlistentry>
-               <term>
-                       <command><option>mpd_repeat</option></command>
-               </term>
-               <listitem>
-                       Repeat status (On/Off)
-                       <para></para></listitem>
-       </varlistentry>
-
-       <varlistentry>
-               <term>
-                       <command><option>mpd_track</option></command>
-               </term>
-               <listitem>
-                       Prints the MPD track field
-                       <para></para></listitem>
-       </varlistentry>
-
-       <varlistentry>
-               <term>
-                       <command><option>mpd_name</option></command>
-               </term>
-               <listitem>
-                       Prints the MPD name field
-                       <para></para></listitem>
-       </varlistentry>
-
-       <varlistentry>
-               <term>
-                       <command><option>mpd_file</option></command>
-               </term>
-               <listitem>
-                       Prints the file name of the current MPD song
-                       <para></para></listitem>
-       </varlistentry>
-
-       <varlistentry>
-               <term>
-                       <command><option>mpd_smart</option></command>
-                       <option>(max length)</option>
-               </term>
-               <listitem>
-                       Prints the song name in either the form "artist - title" or file name, depending on whats available
-                       <para></para></listitem>
-       </varlistentry>
-
-       <varlistentry>
-               <term>
-                       <command><option>if_mpd_playing</option></command>
-               </term>
-               <listitem>
-                       if mpd is playing or paused, display everything between $if_mpd_playing and the matching $endif
-                       <para></para></listitem>
-       </varlistentry>
-
-       <varlistentry>
-               <term>
-                       <command><option>nameserver</option></command>
-                       <option>(index)</option>
-               </term>
-               <listitem>
-                       Print a nameserver from /etc/resolv.conf. Index starts at and defaults to 0.
-                       <para></para></listitem>
-       </varlistentry>
-
-       <varlistentry>
-               <term>
-                       <command><option>nodename</option></command>
-               </term>
-               <listitem>
-                       Hostname
-                       <para></para></listitem>
-       </varlistentry>
-
-       <varlistentry>
-               <term>
-                       <command><option>nvidia</option></command>
-                       <option>threshold</option>
-                       <option>temp</option>
-                       <option>ambient</option>
-                       <option>gpufreq</option>
-                       <option>memfreq</option>
-                       <option>imagequality</option>
-               </term>
-               <listitem>
-                       Nvidia graficcard support for the XNVCtrl library.
-                       Each option can be shortened to the least significant part.
-                       Temperatures are printed as float, all other values as integer.
-                       <simplelist>
-                               <member><command>threshold</command>:
-                                       the thresholdtemperature at which the gpu slows down
-                               </member>
-                               <member><command>temp</command>:
-                                       gives the gpu current temperature
-                               </member>
-                               <member><command>ambient</command>:
-                                       gives current air temperature near GPU case
-                               </member>
-                               <member><command>gpufreq</command>:
-                                       gives the current gpu frequency
-                               </member>
-                               <member><command>memfreq</command>:
-                                       gives the current mem frequency
-                               </member>
-                               <member><command>imagequality</command>:
-                                       which imagequality should be choosen by OpenGL applications
-                               </member>
-                       </simplelist>
-                       <para></para>
-               </listitem>
-       </varlistentry>
-
-       <varlistentry>
-               <term>
-                       <command><option>outlinecolor</option></command>
-                       <option>(color)</option>
-               </term>
-               <listitem>
-                       Change outline color
-                       <para></para></listitem>
-       </varlistentry>
-
-       <varlistentry>
-               <term>
-                       <command><option>pb_battery</option></command>
-                       <option>item</option>
-               </term>
-               <listitem>
-                       If running on Apple powerbook/ibook, display
-                       information on battery status. The item parameter
-                       specifies, what information to display. Exactly one item
-                       must be specified. Valid items are:
-                       <simplelist>
-                               <member><command>status</command>:
-                                       Display if battery is fully charged, charging,
-                                       discharging or absent (running on AC)
-                               </member>
-                               <member><command>percent</command>:
-                                       Display charge of battery in percent, if
-                                       charging or discharging. Nothing will be
-                                       displayed, if battery is fully charged
-                                       or absent.
-                               </member>
-                               <member><command>time</command>:
-                                       Display the time remaining until the battery
-                                       will be fully charged or discharged at current
-                                       rate.  Nothing is displayed, if battery is
-                                       absent or if it's present but fully charged
-                                       and not discharging.
-                               </member>
-                       </simplelist>
-                       <para></para></listitem>
-       </varlistentry>
-
-       <varlistentry>
-               <term>
-                       <command><option>platform</option></command>
-                       <option>(dev) type n (factor offset)</option>
-               </term>
-               <listitem>
-                       Platform sensor from sysfs (Linux 2.6). Parameter dev may be omitted if you have only one platform device. Platform type is either 'in' or 'vol' meaning voltage; 'fan' meaning fan; 'temp' meaning temperature. Parameter n is number of the sensor. See /sys/bus/platform/devices/ on your local computer.  The optional arguments 'factor' and 'offset' allow precalculation of the raw input, which is being modified as follows: 'input = input * factor + offset'. Note that they have to be given as decimal values (i.e. contain at least one decimal place).
-                       <para></para></listitem>
-       </varlistentry>
-
-       <varlistentry>
-               <term>
-                       <command><option>pop3_unseen</option></command>
-                       <option>(args)</option>
-               </term>
-               <listitem>
-                       Displays the number of unseen messages in your global POP3 inbox by default.  You can define individual POP3 inboxes seperately by passing arguments to this object.  Arguments are: "host user pass [-i interval (in seconds)] [-p port] [-e command] [-r retries]".  Default port is 110, default interval is 5 minutes, and default number of retries before giving up is 5.  If the password is supplied as '*', you will be prompted to enter the password when Conky starts.
-
-                       <para></para></listitem>
-       </varlistentry>
-
-       <varlistentry>
-               <term>
-                       <command><option>pop3_used</option></command>
-                       <option>(args)</option>
-               </term>
-               <listitem>
-                       Displays the amount of space (in MiB, 2^20) used in your global POP3 inbox by default.  You can define individual POP3 inboxes seperately by passing arguments to this object.  Arguments are: "host user pass [-i interval (in seconds)] [-p port] [-e command] [-r retries]".  Default port is 110, default interval is 5 minutes, and default number of retries before giving up is 5.  If the password is supplied as '*', you will be prompted to enter the password when Conky starts.
-
-                       <para></para></listitem>
-       </varlistentry>
-
-       <varlistentry>
-               <term>
-                       <command><option>pre_exec</option></command>
-                       <option>shell command</option>
-               </term>
-               <listitem>
-                       Executes a shell command one time before conky displays anything and puts output as text.
-                       <para></para></listitem>
-       </varlistentry>
-
-       <varlistentry>
-               <term>
-                       <command><option>processes</option></command>
-               </term>
-               <listitem>
-                       Total processes (sleeping and running)
-                       <para></para></listitem>
-       </varlistentry>
-
-       <varlistentry>
-               <term>
-                       <command><option>running_processes</option></command>
-               </term>
-               <listitem>
-                       Running processes (not sleeping), requires Linux 2.6
-                       <para></para></listitem>
-       </varlistentry>
-
-       <varlistentry>
-               <term>
-                       <command><option>scroll</option></command>
-                       <option>length (step) text</option>
-               </term>
-               <listitem>
-                       Scroll 'text' by 'step' characters showing 'length' number of characters at the same time. The text may also contain variables. 'step' is optional and defaults to 1 if not set. If a var creates output on multiple lines then the lines are placed behind each other separated with a '|'-sign. Do NOT use vars that change colors or otherwise affect the design inside a scrolling text. If you want spaces between the start and the end of 'text', place them at the end of 'text' not at the front ("foobar" and "    foobar" can both generate "barfoo" but "foobar    " will keep the spaces like this "bar    foo").
-                       <para></para></listitem>
-       </varlistentry>
-
-       <varlistentry>
-               <term>
-                       <command><option>shadecolor</option></command>
-                       <option>(color)</option>
-               </term>
-               <listitem>
-                       Change shading color
-                       <para></para></listitem>
-       </varlistentry>
-
-       <varlistentry>
-               <term>
-                       <command><option>smapi</option></command>
-                       <option>(ARGS)</option>
-               </term>
-               <listitem>
-                       when using smapi, display contents of the /sys/devices/platform/smapi directory. ARGS are either '(FILENAME)' or 'bat (INDEX) (FILENAME)' to display the corresponding files' content. This is a very raw method of accessing the smapi values. When available, better use one of the smapi_* variables instead.
-                       <para></para></listitem>
-       </varlistentry>
-
-       <varlistentry>
-               <term>
-                       <command><option>smapi_bat_bar</option></command>
-                       <option>(INDEX),(height),(width)</option>
-               </term>
-               <listitem>
-                       when using smapi, display the remaining capacity of the battery with index INDEX as a bar.
-                       <para></para></listitem>
-       </varlistentry>
-
-       <varlistentry>
-               <term>
-                       <command><option>smapi_bat_perc</option></command>
-                       <option>(INDEX)</option>
-               </term>
-               <listitem>
-                       when using smapi, display the remaining capacity in percent of the battery with index INDEX. This is a separate variable because it supports the 'use_spacer' configuration option.
-                       <para></para></listitem>
-       </varlistentry>
-
-       <varlistentry>
-               <term>
-                       <command><option>smapi_bat_power</option></command>
-                       <option>INDEX</option>
-               </term>
-               <listitem>
-                       when using smapi, display the current power of the battery with index INDEX in watt. This is a separate variable because the original read out value is being converted from mW. The sign of the output reflects charging (positive) or discharging (negative) state.
-                       <para></para></listitem>
-       </varlistentry>
-
-       <varlistentry>
-               <term>
-                       <command><option>smapi_bat_temp</option></command>
-                       <option>INDEX</option>
-               </term>
-               <listitem>
-                       when using smapi, display the current temperature of the battery with index INDEX in degree Celsius. This is a separate variable because the original read out value is being converted from milli degree Celsius.
-                       <para></para></listitem>
-       </varlistentry>
-
-       <varlistentry>
-               <term>
-                       <command><option>stippled_hr</option></command>
-                       <option>(space)</option>
-               </term>
-               <listitem>
-                       Stippled (dashed) horizontal line
-                       <para></para></listitem>
-       </varlistentry>
-
-       <varlistentry>
-               <term>
-                       <command><option>swapbar</option></command>
-                       <option>(height),(width)</option>
-               </term>
-               <listitem>
-                       Bar that shows amount of swap in use
-                       <para></para></listitem>
-       </varlistentry>
-
-       <varlistentry>
-               <term>
-                       <command><option>swap</option></command>
-               </term>
-               <listitem>
-                       Amount of swap in use
-                       <para></para></listitem>
-       </varlistentry>
-
-       <varlistentry>
-               <term>
-                       <command><option>swapmax</option></command>
-               </term>
-               <listitem>
-                       Total amount of swap
-                       <para></para></listitem>
-       </varlistentry>
-
-       <varlistentry>
-               <term>
-                       <command><option>swapperc</option></command>
-               </term>
-               <listitem>
-                       Percentage of swap in use
-                       <para></para></listitem>
-       </varlistentry>
-
-       <varlistentry>
-               <term>
-                       <command><option>sysname</option></command>
-               </term>
-               <listitem>
-                       System name, Linux for example
-                       <para></para></listitem>
-       </varlistentry>
-
-       <varlistentry>
-               <term>
-                       <command><option>tcp_portmon</option></command>
-                       <option>port_begin port_end item (index)</option>
-                       <emphasis>(ip4 only at present)</emphasis>
-               </term>
-               <listitem>
-                       TCP port monitor for specified local ports.  Port numbers must be in the range 1 to 65535. Valid items are:
-                       <simplelist>
-                               <member><command>count</command> - total number of connections in the range
-                               </member>
-                               <member><command>rip</command> - remote ip address
-                               </member>
-                               <member><command>rhost</command> - remote host name
-                               </member>
-                               <member><command>rport</command> - remote port number
-                               </member>
-                               <member><command>rservice</command> - remote service name from /etc/services
-                               </member>
-                               <member><command>lip</command> - local ip address
-                               </member>
-                               <member><command>lhost</command> - local host name
-                               </member>
-                               <member><command>lport</command> - local port number
-                               </member>
-                               <member><command>lservice</command> - local service name from /etc/services
-                               </member>
-                       </simplelist>The connection index provides you with access to each connection in the port monitor.  The monitor will return information for index values from 0 to n-1 connections.  Values higher than n-1 are simply ignored.  For the "count" item, the connection index must be omitted.  It is required for all other items.
-                       <simplelist>
-                               <member>Examples:</member>
-                               <member><command>${tcp_portmon 6881 6999 count}</command> -
-                                       displays the number of connections in the bittorrent port range</member>
-                               <member><command>${tcp_portmon 22 22 rip 0}</command> -
-                                       displays the remote host ip of the first sshd connection</member>
-                               <member><command>${tcp_portmon 22 22 rip 9}</command> -
-                                       displays the remote host ip of the tenth sshd connection</member>
-                               <member><command>${tcp_portmon 1 1024 rhost 0}</command> -
-                                       displays the remote host name of the first connection on a privileged port</member>
-                               <member><command>${tcp_portmon 1 1024 rport 4}</command> -
-                                       displays the remote host port of the fifth connection on a privileged port</member>
-                               <member><command>${tcp_portmon 1 65535 lservice 14}</command> -
-                                       displays the local service name of the fifteenth connection in the range of all ports</member>
-                       </simplelist>Note that port monitor variables which share the same port range actually refer to the same monitor, so many references to a single port range for different items and different indexes all use the same monitor internally.  In other words, the program avoids creating redundant monitors.
-               </listitem>
-       </varlistentry>
-
-       <varlistentry>
-               <term>
-                       <command><option>texeci</option></command>
-                       <option>interval command</option>
-               </term>
-               <listitem>
-                       Runs a command at an interval inside a thread and displays the output.  Same as $execi, except the command is run inside a thread.  Use this if you have a slow script to keep Conky updating.  You should make the interval slightly longer then the time it takes your script to execute.  For example, if you have a script that take 5 seconds to execute, you should make the interval at least 6 seconds. See also $execi.
-                       <para></para></listitem>
-       </varlistentry>
-
-       <varlistentry>
-               <term>
-                       <command><option>offset</option></command>
-                       <option>(pixels)</option>
-               </term>
-               <listitem>
-                       Move text over by N pixels.  See also $voffset.
-                       <para></para></listitem>
-       </varlistentry>
-
-       <varlistentry>
-               <term>
-                       <command><option>rss</option></command>
-                       <option>url delay_in_minutes action (num_par (spaces_in_front))</option>
-               </term>
-               <listitem>
-                       Download and parse RSS feeds. Action may be one of the following: feed_title, item_title (with num par), item_desc (with num par) and item_titles (when using this action and spaces_in_front is given conky places that many spaces in front of each item).
-                       <para></para></listitem>
-       </varlistentry>
-
-       <varlistentry>
-               <term>
-                       <command><option>lua</option></command>
-                       <option>function_name (function parameters)</option>
-               </term>
-               <listitem>
-                       Executes a Lua function with given parameters, then prints the returned string.  See also 'lua_load' on how to load scripts.
-                       <para></para></listitem>
-       </varlistentry>
-
-       <varlistentry>
-               <term>
-                       <command><option>lua_parse</option></command>
-                       <option>function_name (function parameters)</option>
-               </term>
-               <listitem>
-                       Executes a Lua function with given parameters as per $lua, then parses and prints the result value as per the syntax for Conky's TEXT section.  See also 'lua_load' on how to load scripts.
-                       <para></para></listitem>
-       </varlistentry>
-
-       <varlistentry>
-               <term>
-                       <command><option>lua_read_parse</option></command>
-                       <option>function_name (conky text)</option>
-               </term>
-               <listitem>
-                       Executes a Lua function per $lua, except takes a 2nd argument which is first evaluated as per Conky's TEXT section and passed to the function first.  The return value is then parsed and prints the result value as per the syntax for Conky's TEXT section.  See also 'lua_load' on how to load scripts.
-                       <para></para></listitem>
-       </varlistentry>
-
-       <varlistentry>
-               <term>
-                       <command><option>lua_bar</option></command>
-                       <option>(height, width) function_name (function parameters)</option>
-               </term>
-               <listitem>
-                       Executes a Lua function with given parameters and draws a bar. Expects result value to be an integer between 0 and 100.  See also 'lua_load' on how to load scripts.
-                       <para></para></listitem>
-       </varlistentry>
-
-       <varlistentry>
-               <term>
-                       <command><option>lua_graph</option></command>
-                       <option>("normal"|"log") (height),(width) (gradient colour 1) (gradient colour 2) (scale) (-t) function_name (function parameters)</option>
-               </term>
-               <listitem>
-                       Executes a Lua function with given parameters and draws a graph. Expects result value to be an integer between 0 and 100.  See also 'lua_load' on how to load scripts.  Takes the switch '-t' to use a temperature gradient, which makes the gradient values change depending on the amplitude of a particular graph value (try it and see).
-                       <para></para></listitem>
-       </varlistentry>
-
-       <varlistentry>
-               <term>
-                       <command><option>lua_gauge</option></command>
-                       <option>(height, width) function_name (function parameters)</option>
-               </term>
-               <listitem>
-                       Executes a Lua function with given parameters and draws a gauge. Expects result value to be an integer between 0 and 100.  See also 'lua_load' on how to load scripts.
-                       <para></para></listitem>
-       </varlistentry>
-
-       <varlistentry>
-               <term>
-                       <command><option>tab</option></command>
-                       <option>(width, (start))</option>
-               </term>
-               <listitem>
-                       Puts a tab of the specified width, starting from column 'start'.  The unit is pixels for both arguments.
-                       <para></para></listitem>
-       </varlistentry>
-
-       <varlistentry>
-               <term>
-                       <command><option>tail</option></command>
-                       <option>logfile lines (interval)</option>
-               </term>
-               <listitem>
-                       Displays last N lines of supplied text text file. If interval is not supplied, Conky assumes 2x Conky's interval. Max of 30 lines can be displayed, or until the text buffer is filled.
-                       <para></para></listitem>
-       </varlistentry>
-
-       <varlistentry>
-               <term>
-                       <command><option>templateN</option></command>
-                       <option>(arg1)</option>
-                       <option>(arg2)</option>
-                       <option>(arg3 ...)</option>
-               </term>
-               <listitem>
-                       Evaluate the content of the templateN configuration variable (where N is a value between 0 and 9, inclusively),
-                       applying substitutions as described in the documentation of the corresponding configuration variable.
-                       The number of arguments is optional, but must match the highest referred index in the template. You can use the
-                       same special sequences in each argument as the ones valid for a template definition, e.g. to allow an argument
-                       to contain a whitespace. Also simple nesting of templates is possible this way.
-                       <para></para></listitem>
-               <listitem>
-                       Here are some examples of template definitions:
-                       <simplelist>
-                               <member>template0 $\1\2</member>
-                               <member>template1 \1: ${fs_used \2} / ${fs_size \2}</member>
-                               <member>template2 \1 \2</member>
-                       </simplelist>
-                       The following list shows sample usage of the templates defined above,
-                       with the equivalent syntax when not using any template at all:
-                       <table>
-                               <tgroup cols="2">
-                                       <thead>
-                                               <row rowsep="1"><entry>using template</entry><entry>same without template</entry></row>
-                                       </thead>
-                                       <tbody>
-                                               <row><entry>${template0 node name}</entry><entry>$nodename</entry></row>
-                                               <row><entry>${template1 root /}</entry><entry>root: ${fs_free /} / ${fs_size /}</entry></row>
-                                               <row>
-                                                       <entry><programlisting>${template1 ${template2\ disk\ root} /}</programlisting></entry>
-                                                       <entry><programlisting>disk root: ${fs_free /} / ${fs_size /}</programlisting></entry>
-                                               </row>
-                                       </tbody>
-                               </tgroup>
-                       </table>
-                       <para></para></listitem>
-       </varlistentry>
-
-       <varlistentry>
-               <term>
-                       <command><option>time</option></command>
-                       <option>(format)</option>
-               </term>
-               <listitem>
-                       Local time, see man strftime to get more information about format
-                       <para></para></listitem>
-       </varlistentry>
-
-       <varlistentry>
-               <term>
-                       <command><option>utime</option></command>
-                       <option>(format)</option>
-               </term>
-               <listitem>
-                       Display time in UTC (universal coordinate time).
-                       <para></para></listitem>
-       </varlistentry>
-
-       <varlistentry>
-               <term>
-                       <command><option>tztime</option></command>
-                       <option>(timezone) (format)</option>
-               </term>
-               <listitem>
-                       Local time for specified timezone, see man strftime to get more information about format. The timezone argument is  specified in similar fashion as TZ environment variable. For hints, look in /usr/share/zoneinfo. e.g. US/Pacific, Europe/Zurich, etc.
-                       <para></para></listitem>
-       </varlistentry>
-
-       <varlistentry>
-               <term>
-                       <command><option>totaldown</option></command>
-                       <option>net</option>
-               </term>
-               <listitem>
-                       Total download, overflows at 4 GB on Linux with 32-bit arch and there doesn't seem to be a way to know how many times it has already done that before conky has started.
-                       <para></para></listitem>
-       </varlistentry>
-
-       <varlistentry>
-               <term>
-                       <command><option>top</option></command>
-                       <option>type, num</option>
-               </term>
-               <listitem>
-                       This takes arguments in the form:top (name) (number) Basically, processes are ranked from highest to lowest in terms of cpu usage, which is what (num) represents. The types are: "name", "pid", "cpu", "mem", "mem_res", "mem_vsize", and "time". There can be a max of 10 processes listed.
-                       <para></para></listitem>
-       </varlistentry>
-
-       <varlistentry>
-               <term>
-                       <command><option>top_mem</option></command>
-                       <option>type, num</option>
-               </term>
-               <listitem>
-                       Same as top, except sorted by mem usage instead of cpu
-                       <para></para></listitem>
-       </varlistentry>
-
-       <varlistentry>
-               <term>
-                       <command><option>top_time</option></command>
-                       <option>type, num</option>
-               </term>
-               <listitem>
-                       Same as top, except sorted by total CPU time instead of current CPU usage
-                       <para></para></listitem>
-       </varlistentry>
-
-       <varlistentry>
-               <term>
-                       <command><option>totalup</option></command>
-                       <option>net</option>
-               </term>
-               <listitem>
-                       Total upload, this one too, may overflow
-                       <para></para></listitem>
-       </varlistentry>
-
-       <varlistentry>
-               <term>
-                       <command><option>updates</option></command>
-                       <option>Number of updates</option>
-               </term>
-               <listitem>
-                       for debugging
-                       <para></para></listitem>
-       </varlistentry>
-
-       <varlistentry>
-               <term>
-                       <command><option>upspeed</option></command>
-                       <option>net</option>
-               </term>
-               <listitem>
-                       Upload speed in KiB
-                       <para></para></listitem>
-       </varlistentry>
-
-       <varlistentry>
-               <term>
-                       <command><option>upspeedf</option></command>
-                       <option>net</option>
-               </term>
-               <listitem>
-                       Upload speed in KiB with one decimal
-                       <para></para></listitem>
-       </varlistentry>
-
-       <varlistentry>
-               <term>
-                       <command><option>upspeedgraph</option></command>
-                       <option>("normal"|"log") (height),(width) (gradient colour 1) (gradient colour 2) (scale) (-t) (net)</option>
-               </term>
-               <listitem>
-                       Upload speed graph, colours defined in hex, minus the #.  If scale is non-zero, it becomes the scale for the graph. Uses a logarithmic scale (to see small numbers) when you use "log" instead of "normal".  Takes the switch '-t' to use a temperature gradient, which makes the gradient values change depending on the amplitude of a particular graph value (try it and see).
-                       <para></para></listitem>
-       </varlistentry>
-
-       <varlistentry>
-               <term>
-                       <command><option>uptime</option></command>
-               </term>
-               <listitem>
-                       Uptime
-                       <para></para></listitem>
-       </varlistentry>
-
-       <varlistentry>
-               <term>
-                       <command><option>uptime_short</option></command>
-               </term>
-               <listitem>
-                       Uptime in a shorter format
-                       <para></para></listitem>
-       </varlistentry>
-
-       <varlistentry>
-               <term>
-                       <command><option>user_number</option></command>
-               </term>
-               <listitem>
-                       Number of users logged in
-                       <para></para></listitem>
-       </varlistentry>
-
-       <varlistentry>
-               <term>
-                       <command><option>user_names</option></command>
-               </term>
-               <listitem>
-                       Lists the names of the users logged in
-                       <para></para></listitem>
-       </varlistentry>
-
-       <varlistentry>
-               <term>
-                       <command><option>user_terms</option></command>
-               </term>
-               <listitem>
-                       Lists the consoles in use
-                       <para></para></listitem>
-       </varlistentry>
-
-       <varlistentry>
-               <term>
-                       <command><option>user_times</option></command>
-               </term>
-               <listitem>
-                       Lists how long users have been logged in for
-                       <para></para></listitem>
-       </varlistentry>
-
-       <varlistentry>
-               <term>
-                       <command><option>voffset</option></command>
-                       <option>(pixels)</option>
-               </term>
-               <listitem>
-                       Change vertical offset by N pixels.  Negative values will cause text to overlap.  See also $offset.
-                       <para></para></listitem>
-       </varlistentry>
-
-       <varlistentry>
-               <term>
-                       <command><option>voltage_mv</option></command>
-                       <option>(n)</option>
-               </term>
-               <listitem>
-                       Returns CPU #n's voltage in mV. CPUs are
-                       counted from 1. If omitted, the parameter
-                       defaults to 1.
-                       <para></para></listitem>
-       </varlistentry>
-
-       <varlistentry>
-               <term>
-                       <command><option>voltage_v</option></command>
-                       <option>(n)</option>
-               </term>
-               <listitem>
-                       Returns CPU #n's voltage in V. CPUs are
-                       counted from 1. If omitted, the parameter
-                       defaults to 1.
-                       <para></para></listitem>
-       </varlistentry>
-
-       <varlistentry>
-               <term>
-                       <command><option>wireless_essid</option></command>
-                       <option>net</option>
-               </term>
-               <listitem>
-                       Wireless access point ESSID (Linux only)
-                       <para></para></listitem>
-       </varlistentry>
-
-       <varlistentry>
-               <term>
-                       <command><option>wireless_mode</option></command>
-                       <option>net</option>
-               </term>
-               <listitem>
-                       Wireless mode (Managed/Ad-Hoc/Master) (Linux only)
-                       <para></para></listitem>
-       </varlistentry>
-
-       <varlistentry>
-               <term>
-                       <command><option>wireless_bitrate</option></command>
-                       <option>net</option>
-               </term>
-               <listitem>
-                       Wireless bitrate (ie 11 Mb/s) (Linux only)
-                       <para></para></listitem>
-       </varlistentry>
-
-       <varlistentry>
-               <term>
-                       <command><option>wireless_ap</option></command>
-                       <option>net</option>
-               </term>
-               <listitem>
-                       Wireless access point MAC address (Linux only)
-                       <para></para></listitem>
-       </varlistentry>
-
-       <varlistentry>
-               <term>
-                       <command><option>wireless_link_qual</option></command>
-                       <option>net</option>
-               </term>
-               <listitem>
-                       Wireless link quality (Linux only)
-                       <para></para></listitem>
-       </varlistentry>
-
-       <varlistentry>
-               <term>
-                       <command><option>wireless_link_qual_max</option></command>
-                       <option>net</option>
-               </term>
-               <listitem>
-                       Wireless link quality maximum value (Linux only)
-                       <para></para></listitem>
-       </varlistentry>
-
-       <varlistentry>
-               <term>
-                       <command><option>wireless_link_qual_perc</option></command>
-                       <option>net</option>
-               </term>
-               <listitem>
-                       Wireless link quality in percents (Linux only)
-                       <para></para></listitem>
-       </varlistentry>
-
-       <varlistentry>
-               <term>
-                       <command><option>wireless_link_bar</option></command>
-                       <option>(height), (width) net</option>
-               </term>
-               <listitem>
-                       Wireless link quality bar (Linux only)
-                       <para></para></listitem>
-       </varlistentry>
-
-       <varlistentry>
-               <term>
-                       <command><option>words</option></command>
-                       <option>textfile</option>
-               </term>
-               <listitem>
-                       Displays the number of words in the given file
-                       <para></para></listitem>
-       </varlistentry>
-
-       <varlistentry>
-               <term>
-                       <command><option>xmms2_artist</option></command>
-               </term>
-               <listitem>
-                       Artist in current XMMS2 song
-                       <para></para></listitem>
-       </varlistentry>
-
-       <varlistentry>
-               <term>
-                       <command><option>xmms2_album</option></command>
-               </term>
-               <listitem>
-                       Album in current XMMS2 song
-                       <para></para></listitem>
-       </varlistentry>
-
-       <varlistentry>
-               <term>
-                       <command><option>xmms2_title</option></command>
-               </term>
-               <listitem>
-                       Title in current XMMS2 song
-                       <para></para></listitem>
-       </varlistentry>
-
-       <varlistentry>
-               <term>
-                       <command><option>xmms2_genre</option></command>
-               </term>
-               <listitem>
-                       Genre in current XMMS2 song
-                       <para></para></listitem>
-       </varlistentry>
-
-       <varlistentry>
-               <term>
-                       <command><option>xmms2_comment</option></command>
-               </term>
-               <listitem>
-                       Comment in current XMMS2 song
-                       <para></para></listitem>
-       </varlistentry>
-
-       <varlistentry>
-               <term>
-                       <command><option>xmms2_url</option></command>
-               </term>
-               <listitem>
-                       Full path to current song
-                       <para></para></listitem>
-       </varlistentry>
-
-       <varlistentry>
-               <term>
-                       <command><option>xmms2_tracknr</option></command>
-               </term>
-               <listitem>
-                       Track number in current XMMS2 song
-                       <para></para></listitem>
-       </varlistentry>
-
-       <varlistentry>
-               <term>
-                       <command><option>xmms2_bitrate</option></command>
-               </term>
-               <listitem>
-                       Bitrate of current song
-                       <para></para></listitem>
-       </varlistentry>
-
-       <varlistentry>
-               <term>
-                       <command><option>xmms2_id</option></command>
-               </term>
-               <listitem>
-                       XMMS2 id of current song
-                       <para></para></listitem>
-       </varlistentry>
-
-       <varlistentry>
-               <term>
-                       <command><option>xmms2_duration</option></command>
-               </term>
-               <listitem>
-                       Duration of current song
-                       <para></para></listitem>
-       </varlistentry>
-
-       <varlistentry>
-               <term>
-                       <command><option>xmms2_elapsed</option></command>
-               </term>
-               <listitem>
-                       Song's elapsed time
-                       <para></para></listitem>
-       </varlistentry>
-
-       <varlistentry>
-               <term>
-                       <command><option>xmms2_size</option></command>
-               </term>
-               <listitem>
-                       Size of current song
-                       <para></para></listitem>
-       </varlistentry>
-
-       <varlistentry>
-               <term>
-                       <command><option>xmms2_percent</option></command>
-               </term>
-               <listitem>
-                       Percent of song's progress
-                       <para></para></listitem>
-       </varlistentry>
-
-       <varlistentry>
-               <term>
-                       <command><option>xmms2_date</option></command>
-               </term>
-               <listitem>
-                       Returns song's date.
-                       <para></para></listitem>
-       </varlistentry>
-
-       <varlistentry>
-               <term>
-                       <command><option>xmms2_playlist</option></command>
-               </term>
-               <listitem>
-                       Returns the XMMS2 playlist.
-                       <para></para></listitem>
-       </varlistentry>
-
-       <varlistentry>
-               <term>
-                       <command><option>xmms2_timesplayed</option></command>
-               </term>
-               <listitem>
-                       Number of times a song was played (presumably).
-                       <para></para></listitem>
-       </varlistentry>
-
-       <varlistentry>
-               <term>
-                       <command><option>xmms2_status</option></command>
-               </term>
-               <listitem>
-                       XMMS2 status (Playing, Paused, Stopped, or Disconnected)
-                       <para></para></listitem>
-       </varlistentry>
-
-       <varlistentry>
-               <term>
-                       <command><option>xmms2_bar</option></command>
-                       <option>(height),(width)</option>
-               </term>
-               <listitem>
-                       Bar of XMMS2's progress
-                       <para></para></listitem>
-       </varlistentry>
-
-       <varlistentry>
-               <term>
-                       <command><option>xmms2_smart</option></command>
-               </term>
-               <listitem>
-                       Prints the song name in either the form "artist - title" or file name, depending on whats available
-                       <para></para></listitem>
-       </varlistentry>
-
-       <varlistentry>
-               <term>
-                       <command><option>if_xmms2_connected</option></command>
-               </term>
-               <listitem>
-                       Display everything between $if_xmms2_connected and the matching $endif if xmms2 is running.
-                       <para></para></listitem>
-       </varlistentry>
-
-       <varlistentry>
-               <term>
-                       <command><option>sony_fanspeed</option></command>
-               </term>
-               <listitem>
-                       Displays the Sony VAIO fanspeed information if sony-laptop kernel support is enabled.  Linux only.
-                       <para></para></listitem>
-       </varlistentry>
-
-       <varlistentry>
-               <term>
-                       <command><option>eve</option></command>
-                       <option>api_userid api_key character_id</option>
-               </term>
-               <listitem>
-                       Fetches your currently training skill from the Eve Online API servers (http://www.eve-online.com/) and displays the skill along with the remaining training time.
-                       <para></para></listitem>
-       </varlistentry>
-
-       <varlistentry>
-               <term>
-                       <command><option>endif</option></command>
-                       <option></option>
-               </term>
-               <listitem>
-                       Ends an $if block.
-                       <para></para></listitem>
-       </varlistentry>
-
-       <varlistentry>
-               <term>
-                       <command><option>read_tcp</option></command>
-                       <option>(host) port</option>
-               </term>
-               <listitem>
-                       Connects to a tcp port on a host (default is localhost), reads every char available at the moment and shows them.
-                       <para></para></listitem>
-       </varlistentry>
-
+    <varlistentry>
+        <term>
+            <command>
+                <option>acpiacadapter</option>
+            </command>
+        </term>
+        <listitem>ACPI ac adapter state.
+        <para /></listitem>
+    </varlistentry>
+    <varlistentry>
+        <term>
+            <command>
+                <option>acpifan</option>
+            </command>
+        </term>
+        <listitem>ACPI fan state
+        <para /></listitem>
+    </varlistentry>
+    <varlistentry>
+        <term>
+            <command>
+                <option>acpitemp</option>
+            </command>
+        </term>
+        <listitem>ACPI temperature in C.
+        <para /></listitem>
+    </varlistentry>
+    <varlistentry>
+        <term>
+            <command>
+                <option>addr</option>
+            </command>
+            <option>interface</option>
+        </term>
+        <listitem>IP address for an interface, or "No Address" if
+        no address is assigned.
+        <para /></listitem>
+    </varlistentry>
+    <varlistentry>
+        <term>
+            <command>
+                <option>addrs</option>
+            </command>
+            <option>interface</option>
+        </term>
+        <listitem>IP addresses for an interface (if one - works
+        like addr). Linux only.
+        <para /></listitem>
+    </varlistentry>
+    <varlistentry>
+        <term>
+            <command>
+                <option>adt746xcpu</option>
+            </command>
+        </term>
+        <listitem>CPU temperature from therm_adt746x
+        <para /></listitem>
+    </varlistentry>
+    <varlistentry>
+        <term>
+            <command>
+                <option>adt746xfan</option>
+            </command>
+        </term>
+        <listitem>Fan speed from therm_adt746x
+        <para /></listitem>
+    </varlistentry>
+    <varlistentry>
+        <term>
+            <command>
+                <option>alignc</option>
+            </command>
+            <option>(num)</option>
+        </term>
+        <listitem>Align text to centre
+        <para /></listitem>
+    </varlistentry>
+    <varlistentry>
+        <term>
+            <command>
+                <option>alignr</option>
+            </command>
+            <option>(num)</option>
+        </term>
+        <listitem>Right-justify text, with space of N
+        <para /></listitem>
+    </varlistentry>
+    <varlistentry>
+        <term>
+            <command>
+                <option>apcupsd</option>
+            </command>
+            <option>host</option>
+            <option>port</option>
+        </term>
+        <listitem>Sets up the connection to apcupsd daemon. Prints
+        nothing, defaults to localhost:3551
+        <para /></listitem>
+    </varlistentry>
+    <varlistentry>
+        <term>
+            <command>
+                <option>apcupsd_cable</option>
+            </command>
+        </term>
+        <listitem>Prints the UPS connection type.
+        <para /></listitem>
+    </varlistentry>
+    <varlistentry>
+        <term>
+            <command>
+                <option>apcupsd_charge</option>
+            </command>
+        </term>
+        <listitem>Current battery capacity in percent.
+        <para /></listitem>
+    </varlistentry>
+    <varlistentry>
+        <term>
+            <command>
+                <option>apcupsd_lastxfer</option>
+            </command>
+        </term>
+        <listitem>Reason for last transfer from line to battery.
+        <para /></listitem>
+    </varlistentry>
+    <varlistentry>
+        <term>
+            <command>
+                <option>apcupsd_linev</option>
+            </command>
+        </term>
+        <listitem>Nominal input voltage.
+        <para /></listitem>
+    </varlistentry>
+    <varlistentry>
+        <term>
+            <command>
+                <option>apcupsd_load</option>
+            </command>
+        </term>
+        <listitem>Current load in percent.
+        <para /></listitem>
+    </varlistentry>
+    <varlistentry>
+        <term>
+            <command>
+                <option>apcupsd_loadbar</option>
+            </command>
+        </term>
+        <listitem>Bar showing current load.
+        <para /></listitem>
+    </varlistentry>
+    <varlistentry>
+        <term>
+            <command>
+                <option>apcupsd_loadgauge</option>
+            </command>
+            <option>(height),(width)</option>
+        </term>
+        <listitem>Gauge that shows current load.
+        <para /></listitem>
+    </varlistentry>
+    <varlistentry>
+        <term>
+            <command>
+                <option>apcupsd_loadgraph</option>
+            </command>
+            <option>("normal"|"log") (height),(width) (gradient
+            colour 1) (gradient colour 2) (scale) (-t)</option>
+        </term>
+        <listitem>History graph of current load.
+        <para /></listitem>
+    </varlistentry>
+    <varlistentry>
+        <term>
+            <command>
+                <option>apcupsd_model</option>
+            </command>
+        </term>
+        <listitem>Prints the model of the UPS.
+        <para /></listitem>
+    </varlistentry>
+    <varlistentry>
+        <term>
+            <command>
+                <option>apcupsd_name</option>
+            </command>
+        </term>
+        <listitem>Prints the UPS user-defined name.
+        <para /></listitem>
+    </varlistentry>
+    <varlistentry>
+        <term>
+            <command>
+                <option>apcupsd_status</option>
+            </command>
+        </term>
+        <listitem>Prints current status (on-line, on-battery).
+        <para /></listitem>
+    </varlistentry>
+    <varlistentry>
+        <term>
+            <command>
+                <option>apcupsd_temp</option>
+            </command>
+        </term>
+        <listitem>Current internal temperature.
+        <para /></listitem>
+    </varlistentry>
+    <varlistentry>
+        <term>
+            <command>
+                <option>apcupsd_timeleft</option>
+            </command>
+        </term>
+        <listitem>Time left to run on battery.
+        <para /></listitem>
+    </varlistentry>
+    <varlistentry>
+        <term>
+            <command>
+                <option>apcupsd_upsmode</option>
+            </command>
+        </term>
+        <listitem>Prints the UPS mode (e.g. standalone).
+        <para /></listitem>
+    </varlistentry>
+    <varlistentry>
+        <term>
+            <command>
+                <option>apm_adapter</option>
+            </command>
+        </term>
+        <listitem>Display APM AC adapter status (FreeBSD only)
+        <para /></listitem>
+    </varlistentry>
+    <varlistentry>
+        <term>
+            <command>
+                <option>apm_battery_life</option>
+            </command>
+        </term>
+        <listitem>Display APM battery life in percent (FreeBSD
+        only)
+        <para /></listitem>
+    </varlistentry>
+    <varlistentry>
+        <term>
+            <command>
+                <option>apm_battery_time</option>
+            </command>
+        </term>
+        <listitem>Display remaining APM battery life in hh:mm:ss or
+        "unknown" if AC adapterstatus is on-line or charging
+        (FreeBSD only)
+        <para /></listitem>
+    </varlistentry>
+    <varlistentry>
+        <term>
+            <command>
+                <option>audacious_bar</option>
+            </command>
+            <option>(height),(width)</option>
+        </term>
+        <listitem>Progress bar
+        <para /></listitem>
+    </varlistentry>
+    <varlistentry>
+        <term>
+            <command>
+                <option>audacious_bitrate</option>
+            </command>
+        </term>
+        <listitem>Bitrate of current tune
+        <para /></listitem>
+    </varlistentry>
+    <varlistentry>
+        <term>
+            <command>
+                <option>audacious_channels</option>
+            </command>
+        </term>
+        <listitem>Number of audio channels of current tune
+        <para /></listitem>
+    </varlistentry>
+    <varlistentry>
+        <term>
+            <command>
+                <option>audacious_filename</option>
+            </command>
+        </term>
+        <listitem>Full path and filename of current tune
+        <para /></listitem>
+    </varlistentry>
+    <varlistentry>
+        <term>
+            <command>
+                <option>audacious_frequency</option>
+            </command>
+        </term>
+        <listitem>Sampling frequency of current tune
+        <para /></listitem>
+    </varlistentry>
+    <varlistentry>
+        <term>
+            <command>
+                <option>audacious_length</option>
+            </command>
+        </term>
+        <listitem>Total length of current tune as MM:SS
+        <para /></listitem>
+    </varlistentry>
+    <varlistentry>
+        <term>
+            <command>
+                <option>audacious_length_seconds</option>
+            </command>
+        </term>
+        <listitem>Total length of current tune in seconds
+        <para /></listitem>
+    </varlistentry>
+    <varlistentry>
+        <term>
+            <command>
+                <option>audacious_main_volume</option>
+            </command>
+        </term>
+        <listitem>The current volume fetched from Audacious
+        <para /></listitem>
+    </varlistentry>
+    <varlistentry>
+        <term>
+            <command>
+                <option>audacious_playlist_length</option>
+            </command>
+        </term>
+        <listitem>Number of tunes in playlist
+        <para /></listitem>
+    </varlistentry>
+    <varlistentry>
+        <term>
+            <command>
+                <option>audacious_playlist_position</option>
+            </command>
+        </term>
+        <listitem>Playlist position of current tune
+        <para /></listitem>
+    </varlistentry>
+    <varlistentry>
+        <term>
+            <command>
+                <option>audacious_position</option>
+            </command>
+        </term>
+        <listitem>Position of current tune (MM:SS)
+        <para /></listitem>
+    </varlistentry>
+    <varlistentry>
+        <term>
+            <command>
+                <option>audacious_position_seconds</option>
+            </command>
+        </term>
+        <listitem>Position of current tune in seconds
+        <para /></listitem>
+    </varlistentry>
+    <varlistentry>
+        <term>
+            <command>
+                <option>audacious_status</option>
+            </command>
+        </term>
+        <listitem>Player status (Playing/Paused/Stopped/Not
+        running)
+        <para /></listitem>
+    </varlistentry>
+    <varlistentry>
+        <term>
+            <command>
+                <option>audacious_title</option>
+            </command>
+            <option>(max length)</option>
+        </term>
+        <listitem>Title of current tune with optional maximum
+        length specifier
+        <para /></listitem>
+    </varlistentry>
+    <varlistentry>
+        <term>
+            <command>
+                <option>battery</option>
+            </command>
+            <option>(num)</option>
+        </term>
+        <listitem>Battery status and remaining percentage capacity
+        of ACPI or APM battery. ACPI battery number can be given as
+        argument (default is BAT0).
+        <para /></listitem>
+    </varlistentry>
+    <varlistentry>
+        <term>
+            <command>
+                <option>battery_bar</option>
+            </command>
+            <option>(height),(width) (num)</option>
+        </term>
+        <listitem>Battery percentage remaining of ACPI battery in a
+        bar. ACPI battery number can be given as argument (default
+        is BAT0).
+        <para /></listitem>
+    </varlistentry>
+    <varlistentry>
+        <term>
+            <command>
+                <option>battery_percent</option>
+            </command>
+            <option>(num)</option>
+        </term>
+        <listitem>Battery percentage remaining for ACPI battery.
+        ACPI battery number can be given as argument (default is
+        BAT0).
+        <para /></listitem>
+    </varlistentry>
+    <varlistentry>
+        <term>
+            <command>
+                <option>battery_short</option>
+            </command>
+            <option>(num)</option>
+        </term>
+        <listitem>Battery status and remaining percentage capacity
+        of ACPI or APM battery. ACPI battery number can be given as
+        argument (default is BAT0). This mode display a short
+        status, which means that C is displayed instead of charging
+        and D is displayed instead of discharging.
+        <para /></listitem>
+    </varlistentry>
+    <varlistentry>
+        <term>
+            <command>
+                <option>battery_time</option>
+            </command>
+            <option>(num)</option>
+        </term>
+        <listitem>Battery charge/discharge time remaining of ACPI
+        battery. ACPI battery number can be given as argument
+        (default is BAT0).
+        <para /></listitem>
+    </varlistentry>
+    <varlistentry>
+        <term>
+            <command>
+                <option>bmpx_album</option>
+            </command>
+        </term>
+        <listitem>Album in current BMPx track
+        <para /></listitem>
+    </varlistentry>
+    <varlistentry>
+        <term>
+            <command>
+                <option>bmpx_artist</option>
+            </command>
+        </term>
+        <listitem>Artist in current BMPx track
+        <para /></listitem>
+    </varlistentry>
+    <varlistentry>
+        <term>
+            <command>
+                <option>bmpx_bitrate</option>
+            </command>
+        </term>
+        <listitem>Bitrate of the current BMPx track
+        <para /></listitem>
+    </varlistentry>
+    <varlistentry>
+        <term>
+            <command>
+                <option>bmpx_title</option>
+            </command>
+        </term>
+        <listitem>Title of the current BMPx track
+        <para /></listitem>
+    </varlistentry>
+    <varlistentry>
+        <term>
+            <command>
+                <option>bmpx_track</option>
+            </command>
+        </term>
+        <listitem>Track number of the current BMPx track
+        <para /></listitem>
+    </varlistentry>
+    <varlistentry>
+        <term>
+            <command>
+                <option>bmpx_uri</option>
+            </command>
+        </term>
+        <listitem>URI of the current BMPx track
+        <para /></listitem>
+    </varlistentry>
+    <varlistentry>
+        <term>
+            <command>
+                <option>buffers</option>
+            </command>
+        </term>
+        <listitem>Amount of memory buffered
+        <para /></listitem>
+    </varlistentry>
+    <varlistentry>
+        <term>
+            <command>
+                <option>cached</option>
+            </command>
+        </term>
+        <listitem>Amount of memory cached
+        <para /></listitem>
+    </varlistentry>
+    <varlistentry>
+        <term>
+            <command>
+                <option>color</option>
+            </command>
+            <option>(color)</option>
+        </term>
+        <listitem>Change drawing color to color
+        <para /></listitem>
+    </varlistentry>
+    <varlistentry>
+        <term>
+            <command>
+                <option>colorN</option>
+            </command>
+        </term>
+        <listitem>Change drawing color to colorN configuration
+        option, where N is a digit between 0 and 9, inclusively.
+        <para /></listitem>
+    </varlistentry>
+    <varlistentry>
+        <term>
+            <command>
+                <option>combine</option>
+            </command>
+            <option>var1 var2</option>
+        </term>
+        <listitem>Places the lines of var2 to the right of the
+        lines of var1 seperated by the chars that are put between
+        var1 and var2. For example: ${combine ${head /proc/cpuinfo
+        2} - ${head /proc/meminfo 1}} gives as output
+        "cpuinfo_line1 - meminfo_line1" on line 1 and
+        "cpuinfo_line2 -" on line 2. $combine vars can also be
+        nested to place more vars next to each other.
+        <para /></listitem>
+    </varlistentry>
+    <varlistentry>
+        <term>
+            <command>
+                <option>conky_build_arch</option>
+            </command>
+        </term>
+        <listitem>CPU architecture Conky was built for
+        <para /></listitem>
+    </varlistentry>
+    <varlistentry>
+        <term>
+            <command>
+                <option>conky_build_date</option>
+            </command>
+        </term>
+        <listitem>Date Conky was built
+        <para /></listitem>
+    </varlistentry>
+    <varlistentry>
+        <term>
+            <command>
+                <option>conky_version</option>
+            </command>
+        </term>
+        <listitem>Conky version
+        <para /></listitem>
+    </varlistentry>
+    <varlistentry>
+        <term>
+            <command>
+                <option>cpu</option>
+            </command>
+            <option>(cpuN)</option>
+        </term>
+        <listitem>CPU usage in percents. For SMP machines, the CPU
+        number can be provided as an argument. ${cpu cpu0} is the
+        total usage, and ${cpu cpuX} (X &gt;= 1) are individual
+        CPUs.
+        <para /></listitem>
+    </varlistentry>
+    <varlistentry>
+        <term>
+            <command>
+                <option>cpubar</option>
+            </command>
+            <option>(cpuN) (height),(width)</option>
+        </term>
+        <listitem>Bar that shows CPU usage, height is bar's height
+        in pixels. See $cpu for more info on SMP.
+        <para /></listitem>
+    </varlistentry>
+    <varlistentry>
+        <term>
+            <command>
+                <option>cpugauge</option>
+            </command>
+            <option>(cpuN) (height),(width)</option>
+        </term>
+        <listitem>Elliptical gauge that shows CPU usage, height and
+        width are gauge's vertical and horizontal axis
+        respectively. See $cpu for more info on SMP.
+        <para /></listitem>
+    </varlistentry>
+    <varlistentry>
+        <term>
+            <command>
+                <option>cpugraph</option>
+            </command>
+            <option>(cpuN) ("normal"|"log") (height),(width)
+            (gradient colour 1) (gradient colour 2) (scale)
+            (-t)</option>
+        </term>
+        <listitem>CPU usage graph, with optional colours in hex,
+        minus the #. See $cpu for more info on SMP. Uses a
+        logarithmic scale (to see small numbers) when you use "log"
+        instead of "normal". Takes the switch '-t' to use a
+        temperature gradient, which makes the gradient values
+        change depending on the amplitude of a particular graph
+        value (try it and see).
+        <para /></listitem>
+    </varlistentry>
+    <varlistentry>
+        <term>
+            <command>
+                <option>disk_protect</option>
+            </command>
+            <option>device</option>
+        </term>
+        <listitem>Disk protection status, if supported (needs
+        kernel-patch). Prints either "frozen" or "free " (note the
+        padding).
+        <para /></listitem>
+    </varlistentry>
+    <varlistentry>
+        <term>
+            <command>
+                <option>diskio</option>
+            </command>
+            <option>(device)</option>
+        </term>
+        <listitem>Displays current disk IO. Device is optional, and
+        takes the form of sda for /dev/sda. Individual partitions
+        are allowed.
+        <para /></listitem>
+    </varlistentry>
+    <varlistentry>
+        <term>
+            <command>
+                <option>diskio_read</option>
+            </command>
+            <option>(device)</option>
+        </term>
+        <listitem>Displays current disk IO for reads. Device as in
+        diskio.
+        <para /></listitem>
+    </varlistentry>
+    <varlistentry>
+        <term>
+            <command>
+                <option>diskio_write</option>
+            </command>
+            <option>(device)</option>
+        </term>
+        <listitem>Displays current disk IO for writes. Device as in
+        diskio.
+        <para /></listitem>
+    </varlistentry>
+    <varlistentry>
+        <term>
+            <command>
+                <option>diskiograph</option>
+            </command>
+            <option>("normal"|"log") (height),(width) (gradient
+            colour 1) (gradient colour 2) (scale) (-t)
+            (device)</option>
+        </term>
+        <listitem>Disk IO graph, colours defined in hex, minus the
+        #. If scale is non-zero, it becomes the scale for the
+        graph. Uses a logarithmic scale (to see small numbers) when
+        you use "log" instead of "normal". Takes the switch '-t' to
+        use a temperature gradient, which makes the gradient values
+        change depending on the amplitude of a particular graph
+        value (try it and see).
+        <para /></listitem>
+    </varlistentry>
+    <varlistentry>
+        <term>
+            <command>
+                <option>diskiograph_read</option>
+            </command>
+            <option>("normal"|"log") (height),(width) (gradient
+            colour 1) (gradient colour 2) (scale) (-t)
+            (device)</option>
+        </term>
+        <listitem>Disk IO graph for reads, colours defined in hex,
+        minus the #. If scale is non-zero, it becomes the scale for
+        the graph. Device as in diskio. Uses a logarithmic scale
+        (to see small numbers) when you use "log" instead of
+        "normal". Takes the switch '-t' to use a temperature
+        gradient, which makes the gradient values change depending
+        on the amplitude of a particular graph value (try it and
+        see).
+        <para /></listitem>
+    </varlistentry>
+    <varlistentry>
+        <term>
+            <command>
+                <option>diskiograph_write</option>
+            </command>
+            <option>("normal"|"log") (height),(width) (gradient
+            colour 1) (gradient colour 2) (scale) (-t)
+            (device)</option>
+        </term>
+        <listitem>Disk IO graph for writes, colours defined in hex,
+        minus the #. If scale is non-zero, it becomes the scale for
+        the graph. Device as in diskio. Uses a logarithmic scale
+        (to see small numbers) when you use "log" instead of
+        "normal". Takes the switch '-t' to use a temperature
+        gradient, which makes the gradient values change depending
+        on the amplitude of a particular graph value (try it and
+        see).
+        <para /></listitem>
+    </varlistentry>
+    <varlistentry>
+        <term>
+            <command>
+                <option>downspeed</option>
+            </command>
+            <option>net</option>
+        </term>
+        <listitem>Download speed in KiB
+        <para /></listitem>
+    </varlistentry>
+    <varlistentry>
+        <term>
+            <command>
+                <option>downspeedf</option>
+            </command>
+            <option>net</option>
+        </term>
+        <listitem>Download speed in KiB with one decimal
+        <para /></listitem>
+    </varlistentry>
+    <varlistentry>
+        <term>
+            <command>
+                <option>downspeedgraph</option>
+            </command>
+            <option>("normal"|"log") (height),(width) (gradient
+            colour 1) (gradient colour 2) (scale) (-t)
+            (net)</option>
+        </term>
+        <listitem>Download speed graph, colours defined in hex,
+        minus the #. If scale is non-zero, it becomes the scale for
+        the graph. Uses a logarithmic scale (to see small numbers)
+        when you use "log" instead of "normal". Takes the switch
+        '-t' to use a temperature gradient, which makes the
+        gradient values change depending on the amplitude of a
+        particular graph value (try it and see).
+        <para /></listitem>
+    </varlistentry>
+    <varlistentry>
+        <term>
+            <command>
+                <option>draft_mails</option>
+            </command>
+            <option>(maildir)</option>
+            <option>(interval)</option>
+        </term>
+        <listitem>Number of mails marked as draft in the specified
+        mailbox or mail spool if not. Only maildir type mailboxes
+        are supported, mbox type will return -1.
+        <para /></listitem>
+    </varlistentry>
+    <varlistentry>
+        <term>
+            <command>
+                <option>else</option>
+            </command>
+        </term>
+        <listitem>Text to show if any of the above are not true
+        <para /></listitem>
+    </varlistentry>
+    <varlistentry>
+        <term>
+            <command>
+                <option>endif</option>
+            </command>
+            <option />
+        </term>
+        <listitem>Ends an $if block.
+        <para /></listitem>
+    </varlistentry>
+    <varlistentry>
+        <term>
+            <command>
+                <option>entropy_avail</option>
+            </command>
+        </term>
+        <listitem>Current entropy available for crypto freaks
+        <para /></listitem>
+    </varlistentry>
+    <varlistentry>
+        <term>
+            <command>
+                <option>entropy_bar</option>
+            </command>
+            <option>(height),(width)</option>
+        </term>
+        <listitem>Normalized bar of available entropy for crypto
+        freaks
+        <para /></listitem>
+    </varlistentry>
+    <varlistentry>
+        <term>
+            <command>
+                <option>entropy_perc</option>
+            </command>
+        </term>
+        <listitem>Percentage of entropy available in comparison to
+        the poolsize
+        <para /></listitem>
+    </varlistentry>
+    <varlistentry>
+        <term>
+            <command>
+                <option>entropy_poolsize</option>
+            </command>
+        </term>
+        <listitem>Total size of system entropy pool for crypto
+        freaks
+        <para /></listitem>
+    </varlistentry>
+    <varlistentry>
+        <term>
+            <command>
+                <option>eval</option>
+            </command>
+            <option>string</option>
+        </term>
+        <listitem>Evalutates given string according to the rules of
+        TEXT interpretation, i.e. parsing any contained text object
+        specifications into their output, any occuring '$$' into a
+        single '$' and so on. The output is then being parsed
+        again.
+        <para /></listitem>
+    </varlistentry>
+    <varlistentry>
+        <term>
+            <command>
+                <option>eve</option>
+            </command>
+            <option>api_userid api_key character_id</option>
+        </term>
+        <listitem>Fetches your currently training skill from the
+        Eve Online API servers (http://www.eve-online.com/) and
+        displays the skill along with the remaining training time.
+        <para /></listitem>
+    </varlistentry>
+    <varlistentry>
+        <term>
+            <command>
+                <option>exec</option>
+            </command>
+            <option>command</option>
+        </term>
+        <listitem>Executes a shell command and displays the output
+        in conky. warning: this takes a lot more resources than
+        other variables. I'd recommend coding wanted behaviour in C
+        and posting a patch.
+        <para /></listitem>
+    </varlistentry>
+    <varlistentry>
+        <term>
+            <command>
+                <option>execbar</option>
+            </command>
+            <option>command</option>
+        </term>
+        <listitem>Same as exec, except if the first value return is
+        a value between 0-100, it will use that number for a bar.
+        The size for bars can be controlled via the
+        default_bar_size config setting.
+        <para /></listitem>
+    </varlistentry>
+    <varlistentry>
+        <term>
+            <command>
+                <option>execgauge</option>
+            </command>
+            <option>command</option>
+        </term>
+        <listitem>Same as exec, except if the first value returned
+        is a value between 0-100, it will use that number for a
+        gauge. The size for gauges can be controlled via the
+        default_gauge_size config setting.
+        <para /></listitem>
+    </varlistentry>
+    <varlistentry>
+        <term>
+            <command>
+                <option>execgraph</option>
+            </command>
+            <option>("normal"|"log") (-t) command</option>
+        </term>
+        <listitem>Same as execbar, but graphs values. Uses a
+        logaritmic scale when the log option is given (to see small
+        numbers). Values still have to be between 0 and 100. The
+        size for graphs can be controlled via the
+        default_graph_size config setting. Takes the switch '-t' to
+        use a temperature gradient, which makes the gradient values
+        change depending on the amplitude of a particular graph
+        value (try it and see).
+        <para /></listitem>
+    </varlistentry>
+    <varlistentry>
+        <term>
+            <command>
+                <option>execi</option>
+            </command>
+            <option>interval command</option>
+        </term>
+        <listitem>Same as exec but with specific interval. Interval
+        can't be less than update_interval in configuration. See
+        also $texeci
+        <para /></listitem>
+    </varlistentry>
+    <varlistentry>
+        <term>
+            <command>
+                <option>execibar</option>
+            </command>
+            <option>interval command</option>
+        </term>
+        <listitem>Same as execbar, except with an interval
+        <para /></listitem>
+    </varlistentry>
+    <varlistentry>
+        <term>
+            <command>
+                <option>execigauge</option>
+            </command>
+            <option>interval command</option>
+        </term>
+        <listitem>Same as execgauge, but takes an interval arg and
+        gauges values.
+        <para /></listitem>
+    </varlistentry>
+    <varlistentry>
+        <term>
+            <command>
+                <option>execigraph</option>
+            </command>
+            <option>interval ("normal"|"log") (-t) command</option>
+        </term>
+        <listitem>Same as execgraph, but takes an interval arg and
+        graphs values.
+        <para /></listitem>
+    </varlistentry>
+    <varlistentry>
+        <term>
+            <command>
+                <option>execp</option>
+            </command>
+            <option>command</option>
+        </term>
+        <listitem>Executes a shell command and displays the output
+        in conky. warning: this takes a lot more resources than
+        other variables. I'd recommend coding wanted behaviour in C
+        and posting a patch. This differs from $exec in that it
+        parses the output of the command, so you can insert things
+        like ${color red}hi!${color} in your script and have it
+        correctly parsed by Conky. Caveats: Conky parses and
+        evaluates the output of $execp every time Conky loops, and
+        then destroys all the objects. If you try to use anything
+        like $execi within an $execp statement, it will
+        functionally run at the same interval that the $execp
+        statement runs, as it is created and destroyed at every
+        interval.
+        <para /></listitem>
+    </varlistentry>
+    <varlistentry>
+        <term>
+            <command>
+                <option>execpi</option>
+            </command>
+            <option>interval command</option>
+        </term>
+        <listitem>Same as execp but with specific interval.
+        Interval can't be less than update_interval in
+        configuration. Note that the output from the $execpi
+        command is still parsed and evaluated at every interval.
+        <para /></listitem>
+    </varlistentry>
+    <varlistentry>
+        <term>
+            <command>
+                <option>flagged_mails</option>
+            </command>
+            <option>(maildir)</option>
+            <option>(interval)</option>
+        </term>
+        <listitem>Number of mails marked as flagged in the
+        specified mailbox or mail spool if not. Only maildir type
+        mailboxes are supported, mbox type will return -1.
+        <para /></listitem>
+    </varlistentry>
+    <varlistentry>
+        <term>
+            <command>
+                <option>font</option>
+            </command>
+            <option>(font)</option>
+        </term>
+        <listitem>Specify a different font. This new font will
+        apply to the current line and everything following. You can
+        use a $font with no arguments to change back to the default
+        font (much like with $color)
+        <para /></listitem>
+    </varlistentry>
+    <varlistentry>
+        <term>
+            <command>
+                <option>forwarded_mails</option>
+            </command>
+            <option>(maildir)</option>
+            <option>(interval)</option>
+        </term>
+        <listitem>Number of mails marked as forwarded in the
+        specified mailbox or mail spool if not. Only maildir type
+        mailboxes are supported, mbox type will return -1.
+        <para /></listitem>
+    </varlistentry>
+    <varlistentry>
+        <term>
+            <command>
+                <option>freq</option>
+            </command>
+            <option>(n)</option>
+        </term>
+        <listitem>Returns CPU #n's frequency in MHz. CPUs are
+        counted from 1. If omitted, the parameter defaults to 1.
+        <para /></listitem>
+    </varlistentry>
+    <varlistentry>
+        <term>
+            <command>
+                <option>freq_g</option>
+            </command>
+            <option>(n)</option>
+        </term>
+        <listitem>Returns CPU #n's frequency in GHz. CPUs are
+        counted from 1. If omitted, the parameter defaults to 1.
+        <para /></listitem>
+    </varlistentry>
+    <varlistentry>
+        <term>
+            <command>
+                <option>fs_bar</option>
+            </command>
+            <option>(height),(width) fs</option>
+        </term>
+        <listitem>Bar that shows how much space is used on a file
+        system. height is the height in pixels. fs is any file on
+        that file system.
+        <para /></listitem>
+    </varlistentry>
+    <varlistentry>
+        <term>
+            <command>
+                <option>fs_bar_free</option>
+            </command>
+            <option>(height),(width) fs</option>
+        </term>
+        <listitem>Bar that shows how much space is free on a file
+        system. height is the height in pixels. fs is any file on
+        that file system.
+        <para /></listitem>
+    </varlistentry>
+    <varlistentry>
+        <term>
+            <command>
+                <option>fs_free</option>
+            </command>
+            <option>(fs)</option>
+        </term>
+        <listitem>Free space on a file system available for users.
+        <para /></listitem>
+    </varlistentry>
+    <varlistentry>
+        <term>
+            <command>
+                <option>fs_free_perc</option>
+            </command>
+            <option>(fs)</option>
+        </term>
+        <listitem>Free percentage of space on a file system
+        available for users.
+        <para /></listitem>
+    </varlistentry>
+    <varlistentry>
+        <term>
+            <command>
+                <option>fs_size</option>
+            </command>
+            <option>(fs)</option>
+        </term>
+        <listitem>File system size.
+        <para /></listitem>
+    </varlistentry>
+    <varlistentry>
+        <term>
+            <command>
+                <option>fs_type</option>
+            </command>
+            <option>(fs)</option>
+        </term>
+        <listitem>File system type.
+        <para /></listitem>
+    </varlistentry>
+    <varlistentry>
+        <term>
+            <command>
+                <option>fs_used</option>
+            </command>
+            <option>(fs)</option>
+        </term>
+        <listitem>File system used space.
+        <para /></listitem>
+    </varlistentry>
+    <varlistentry>
+        <term>
+            <command>
+                <option>fs_used_perc</option>
+            </command>
+            <option>(fs)</option>
+        </term>
+        <listitem>Percent of file system used space.
+        <para /></listitem>
+    </varlistentry>
+    <varlistentry>
+        <term>
+            <command>
+                <option>goto</option>
+            </command>
+            <option>x</option>
+        </term>
+        <listitem>The next element will be printed at position 'x'.
+
+        <para /></listitem>
+    </varlistentry>
+    <varlistentry>
+        <term>
+            <command>
+                <option>gw_iface</option>
+            </command>
+        </term>
+        <listitem>Displays the default route's interface or
+        "multiple"/"none" accordingly.
+        <para /></listitem>
+    </varlistentry>
+    <varlistentry>
+        <term>
+            <command>
+                <option>gw_ip</option>
+            </command>
+        </term>
+        <listitem>Displays the default gateway's IP or
+        "multiple"/"none" accordingly.
+        <para /></listitem>
+    </varlistentry>
+    <varlistentry>
+        <term>
+            <command>
+                <option>hddtemp</option>
+            </command>
+            <option>dev, (host,(port))</option>
+        </term>
+        <listitem>Displays temperature of a selected hard disk
+        drive as reported by the hddtemp daemon running on
+        host:port. Default host is 127.0.0.1, default port is 7634.
+
+        <para /></listitem>
+    </varlistentry>
+    <varlistentry>
+        <term>
+            <command>
+                <option>head</option>
+            </command>
+            <option>logfile lines (interval)</option>
+        </term>
+        <listitem>Displays first N lines of supplied text text
+        file. If interval is not supplied, Conky assumes 2x Conky's
+        interval. Max of 30 lines can be displayed, or until the
+        text buffer is filled.
+        <para /></listitem>
+    </varlistentry>
+    <varlistentry>
+        <term>
+            <command>
+                <option>hr</option>
+            </command>
+            <option>(height)</option>
+        </term>
+        <listitem>Horizontal line, height is the height in pixels
+        <para /></listitem>
+    </varlistentry>
+    <varlistentry>
+        <term>
+            <command>
+                <option>hwmon</option>
+            </command>
+            <option>(dev) type n (factor offset)</option>
+        </term>
+        <listitem>Hwmon sensor from sysfs (Linux 2.6). Parameter
+        dev may be omitted if you have only one hwmon device.
+        Parameter type is either 'in' or 'vol' meaning voltage;
+        'fan' meaning fan; 'temp' meaning temperature. Parameter n
+        is number of the sensor. See /sys/class/hwmon/ on your
+        local computer. The optional arguments 'factor' and
+        'offset' allow precalculation of the raw input, which is
+        being modified as follows: 'input = input * factor +
+        offset'. Note that they have to be given as decimal values
+        (i.e. contain at least one decimal place).
+        <para /></listitem>
+    </varlistentry>
+    <varlistentry>
+        <term>
+            <command>
+                <option>i2c</option>
+            </command>
+            <option>(dev) type n (factor offset)</option>
+        </term>
+        <listitem>I2C sensor from sysfs (Linux 2.6). Parameter dev
+        may be omitted if you have only one I2C device. Parameter
+        type is either 'in' or 'vol' meaning voltage; 'fan' meaning
+        fan; 'temp' meaning temperature. Parameter n is number of
+        the sensor. See /sys/bus/i2c/devices/ on your local
+        computer. The optional arguments 'factor' and 'offset'
+        allow precalculation of the raw input, which is being
+        modified as follows: 'input = input * factor + offset'.
+        Note that they have to be given as decimal values (i.e.
+        contain at least one decimal place).
+        <para /></listitem>
+    </varlistentry>
+    <varlistentry>
+        <term>
+            <command>
+                <option>i8k_ac_status</option>
+            </command>
+            <option />
+        </term>
+        <listitem>If running the i8k kernel driver for Inspiron
+        laptops, displays whether ac power is on, as listed in
+        /proc/i8k (translated to human-readable). Beware that this
+        is by default not enabled by i8k itself.
+        <para /></listitem>
+    </varlistentry>
+    <varlistentry>
+        <term>
+            <command>
+                <option>i8k_bios</option>
+            </command>
+            <option />
+        </term>
+        <listitem>If running the i8k kernel driver for Inspiron
+        laptops, displays the bios version as listed in /proc/i8k.
+        <para /></listitem>
+    </varlistentry>
+    <varlistentry>
+        <term>
+            <command>
+                <option>i8k_buttons_status</option>
+            </command>
+            <option />
+        </term>
+        <listitem>If running the i8k kernel driver for Inspiron
+        laptops, displays the volume buttons status as listed in
+        /proc/i8k.
+        <para /></listitem>
+    </varlistentry>
+    <varlistentry>
+        <term>
+            <command>
+                <option>i8k_cpu_temp</option>
+            </command>
+            <option />
+        </term>
+        <listitem>If running the i8k kernel driver for Inspiron
+        laptops, displays the cpu temperature in Celsius, as
+        reported by /proc/i8k.
+        <para /></listitem>
+    </varlistentry>
+    <varlistentry>
+        <term>
+            <command>
+                <option>i8k_left_fan_rpm</option>
+            </command>
+            <option />
+        </term>
+        <listitem>If running the i8k kernel driver for Inspiron
+        laptops, displays the left fan's rate of rotation, in
+        revolutions per minute as listed in /proc/i8k. Beware, some
+        laptops i8k reports these fans in reverse order.
+        <para /></listitem>
+    </varlistentry>
+    <varlistentry>
+        <term>
+            <command>
+                <option>i8k_left_fan_status</option>
+            </command>
+            <option />
+        </term>
+        <listitem>If running the i8k kernel driver for Inspiron
+        laptops, displays the left fan status as listed in
+        /proc/i8k (translated to human-readable). Beware, some
+        laptops i8k reports these fans in reverse order.
+        <para /></listitem>
+    </varlistentry>
+    <varlistentry>
+        <term>
+            <command>
+                <option>i8k_right_fan_rpm</option>
+            </command>
+            <option />
+        </term>
+        <listitem>If running the i8k kernel driver for Inspiron
+        laptops, displays the right fan's rate of rotation, in
+        revolutions per minute as listed in /proc/i8k. Beware, some
+        laptops i8k reports these fans in reverse order.
+        <para /></listitem>
+    </varlistentry>
+    <varlistentry>
+        <term>
+            <command>
+                <option>i8k_right_fan_status</option>
+            </command>
+            <option />
+        </term>
+        <listitem>If running the i8k kernel driver for Inspiron
+        laptops, displays the right fan status as listed in
+        /proc/i8k (translated to human-readable). Beware, some
+        laptops i8k reports these fans in reverse order.
+        <para /></listitem>
+    </varlistentry>
+    <varlistentry>
+        <term>
+            <command>
+                <option>i8k_serial</option>
+            </command>
+            <option />
+        </term>
+        <listitem>If running the i8k kernel driver for Inspiron
+        laptops, displays your laptop serial number as listed in
+        /proc/i8k.
+        <para /></listitem>
+    </varlistentry>
+    <varlistentry>
+        <term>
+            <command>
+                <option>i8k_version</option>
+            </command>
+            <option />
+        </term>
+        <listitem>If running the i8k kernel driver for Inspiron
+        laptops, displays the version formatting of /proc/i8k.
+        <para /></listitem>
+    </varlistentry>
+    <varlistentry>
+        <term>
+            <command>
+                <option>ibm_brightness</option>
+            </command>
+        </term>
+        <listitem>If running the IBM ACPI, displays the brigtness
+        of the laptops's LCD (0-7).
+        <para /></listitem>
+    </varlistentry>
+    <varlistentry>
+        <term>
+            <command>
+                <option>ibm_fan</option>
+            </command>
+        </term>
+        <listitem>If running the IBM ACPI, displays the fan speed.
+        <para /></listitem>
+    </varlistentry>
+    <varlistentry>
+        <term>
+            <command>
+                <option>ibm_temps</option>
+            </command>
+            <option>N</option>
+        </term>
+        <listitem>If running the IBM ACPI, displays the
+        temperatures from the IBM temperature sensors (N=0..7)
+        Sensor 0 is on the CPU, 3 is on the GPU.
+        <para /></listitem>
+    </varlistentry>
+    <varlistentry>
+        <term>
+            <command>
+                <option>ibm_volume</option>
+            </command>
+        </term>
+        <listitem>If running the IBM ACPI, displays the "master"
+        volume, controlled by the volume keys (0-14).
+        <para /></listitem>
+    </varlistentry>
+    <varlistentry>
+        <term>
+            <command>
+                <option>iconv_start</option>
+            </command>
+            <option>codeset_from codeset_to</option>
+        </term>
+        <listitem>Convert text from one codeset to another using
+        GNU iconv. Needs to be stopped with iconv_stop.
+        <para /></listitem>
+    </varlistentry>
+    <varlistentry>
+        <term>
+            <command>
+                <option>iconv_stop</option>
+            </command>
+            <option />
+        </term>
+        <listitem>Stop iconv codeset conversion.
+        <para /></listitem>
+    </varlistentry>
+    <varlistentry>
+        <term>
+            <command>
+                <option>if_empty</option>
+            </command>
+            <option>(var)</option>
+        </term>
+        <listitem>if conky variable VAR is empty, display
+        everything between $if_empty and the matching $endif
+        <para /></listitem>
+    </varlistentry>
+    <varlistentry>
+        <term>
+            <command>
+                <option>if_existing</option>
+            </command>
+            <option>file (string)</option>
+        </term>
+        <listitem>if FILE exists, display everything between
+        if_existing and the matching $endif. The optional second
+        paramater checks for FILE containing the specified string
+        and prints everything between $if_existing and the matching
+        $endif.
+        <para /></listitem>
+    </varlistentry>
+    <varlistentry>
+        <term>
+            <command>
+                <option>if_gw</option>
+            </command>
+        </term>
+        <listitem>if there is at least one default gateway, display
+        everything between $if_gw and the matching $endif
+        <para /></listitem>
+    </varlistentry>
+    <varlistentry>
+        <term>
+            <command>
+                <option>if_match</option>
+            </command>
+            <option>expression</option>
+        </term>
+        <listitem>Evaluates the given boolean expression, printing
+        everything between $if_match and the matching $endif
+        depending on whether the evaluation returns true or not.
+        Valid expressions consist of a left side, an operator and a
+        right side. Left and right sides are being parsed for
+        contained text objects before evaluation. Recognised left
+        and right side types are:
+        <simplelist>
+            <member>
+            <command>double</command>: argument consists of only
+            digits and a single dot.</member>
+            <member>
+            <command>long</command>: argument consists of only
+            digits.</member>
+            <member>
+            <command>string</command>: argument is enclosed in
+            quotation mark or the checks for double and long failed
+            before.</member>
+        </simplelist>Valid operands are: '&gt;', '&lt;', '&gt;=',
+        '&lt;=', '==', '!='.
+        <para /></listitem>
+    </varlistentry>
+    <varlistentry>
+        <term>
+            <command>
+                <option>if_mixer_mute</option>
+            </command>
+            <option>(mixer)</option>
+        </term>
+        <listitem>If mixer exists, display everything between
+        $if_mixer_mute and the matching $endif. If no mixer is
+        specified, "Master" is used.
+        <para /></listitem>
+    </varlistentry>
+    <varlistentry>
+        <term>
+            <command>
+                <option>if_mounted</option>
+            </command>
+            <option>(mountpoint)</option>
+        </term>
+        <listitem>if MOUNTPOINT is mounted, display everything
+        between $if_mounted and the matching $endif
+        <para /></listitem>
+    </varlistentry>
+    <varlistentry>
+        <term>
+            <command>
+                <option>if_mpd_playing</option>
+            </command>
+        </term>
+        <listitem>if mpd is playing or paused, display everything
+        between $if_mpd_playing and the matching $endif
+        <para /></listitem>
+    </varlistentry>
+    <varlistentry>
+        <term>
+            <command>
+                <option>if_running</option>
+            </command>
+            <option>(process)</option>
+        </term>
+        <listitem>if PROCESS is running, display everything
+        $if_running and the matching $endif. This uses the
+        ``pidof'' command, so the -x switch is also supported.
+        <para /></listitem>
+    </varlistentry>
+    <varlistentry>
+        <term>
+            <command>
+                <option>if_smapi_bat_installed</option>
+            </command>
+            <option>(INDEX)</option>
+        </term>
+        <listitem>when using smapi, if the battery with index INDEX
+        is installed, display everything between
+        $if_smapi_bat_installed and the matching $endif
+        <para /></listitem>
+    </varlistentry>
+    <varlistentry>
+        <term>
+            <command>
+                <option>if_up</option>
+            </command>
+            <option>(interface)</option>
+        </term>
+        <listitem>if INTERFACE exists and is up, display everything
+        between $if_up and the matching $endif
+        <para /></listitem>
+    </varlistentry>
+    <varlistentry>
+        <term>
+            <command>
+                <option>if_updatenr</option>
+            </command>
+            <option>(updatenr)</option>
+        </term>
+        <listitem>If it's the UPDATENR-th time that conky updates,
+        display everything between $if_updatenr and the matching
+        $endif. The counter resets when the highest UPDATENR is
+        reached. Example : "{$if_updatenr 1}foo$endif{$if_updatenr
+        2}bar$endif{$if_updatenr 4}$endif" shows foo 25% of the
+        time followed by bar 25% of the time followed by nothing
+        the other half of the time.
+        <para /></listitem>
+    </varlistentry>
+    <varlistentry>
+        <term>
+            <command>
+                <option>if_xmms2_connected</option>
+            </command>
+        </term>
+        <listitem>Display everything between $if_xmms2_connected
+        and the matching $endif if xmms2 is running.
+        <para /></listitem>
+    </varlistentry>
+    <varlistentry>
+        <term>
+            <command>
+                <option>image</option>
+            </command>
+            <option>&lt;path to image&gt; (-p x,y) (-s WxH) (-n)
+            (-f interval)</option>
+        </term>
+        <listitem>Renders an image from the path specified using
+        Imlib2. Takes 4 optional arguments: a position, a size, a
+        no-cache switch, and a cache flush interval. Changing the
+        x,y position will move the position of the image, and
+        changing the WxH will scale the image. If you specify the
+        no-cache flag (-n), the image will not be cached.
+        Alternately, you can specify the -f int switch to specify a
+        cache flust interval for a particular image. Example:
+        ${image /home/brenden/cheeseburger.jpg -p 20,20 -s 200x200}
+        will render 'cheeseburger.jpg' at (20,20) scaled to 200x200
+        pixels. Conky does not make any attempt to adjust the
+        position (or any other formatting) of images, they are just
+        rendered as per the arguments passed. The only reason
+        $image is part of the TEXT section, is to allow for runtime
+        modifications, through $execp $lua_parse, $lua_read_parse,
+        or some other method.
+        <para /></listitem>
+    </varlistentry>
+    <varlistentry>
+        <term>
+            <command>
+                <option>imap_messages</option>
+            </command>
+            <option>(args)</option>
+        </term>
+        <listitem>Displays the number of messages in your global
+        IMAP inbox by default. You can define individual IMAP
+        inboxes seperately by passing arguments to this object.
+        Arguments are: "host user pass [-i interval (in seconds)]
+        [-f folder] [-p port] [-e command] [-r retries]". Default
+        port is 143, default folder is 'INBOX', default interval is
+        5 minutes, and default number of retries before giving up
+        is 5. If the password is supplied as '*', you will be
+        prompted to enter the password when Conky starts.
+        <para /></listitem>
+    </varlistentry>
+    <varlistentry>
+        <term>
+            <command>
+                <option>imap_unseen</option>
+            </command>
+            <option>(args)</option>
+        </term>
+        <listitem>Displays the number of unseen messages in your
+        global IMAP inbox by default. You can define individual
+        IMAP inboxes seperately by passing arguments to this
+        object. Arguments are: "host user pass [-i interval (in
+        seconds)] [-f folder] [-p port] [-e command] [-r retries]".
+        Default port is 143, default folder is 'INBOX', default
+        interval is 5 minutes, and default number of retries before
+        giving up is 5. If the password is supplied as '*', you
+        will be prompted to enter the password when Conky starts.
+        <para /></listitem>
+    </varlistentry>
+    <varlistentry>
+        <term>
+            <command>
+                <option>ioscheduler</option>
+            </command>
+            <option>disk</option>
+        </term>
+        <listitem>Prints the current ioscheduler used for the given
+        disk name (i.e. e.g. "hda" or "sdb")
+        <para /></listitem>
+    </varlistentry>
+    <varlistentry>
+        <term>
+            <command>
+                <option>kernel</option>
+            </command>
+        </term>
+        <listitem>Kernel version
+        <para /></listitem>
+    </varlistentry>
+    <varlistentry>
+        <term>
+            <command>
+                <option>laptop_mode</option>
+            </command>
+        </term>
+        <listitem>The value of /proc/sys/vm/laptop_mode
+        <para /></listitem>
+    </varlistentry>
+    <varlistentry>
+        <term>
+            <command>
+                <option>lines</option>
+            </command>
+            <option>textfile</option>
+        </term>
+        <listitem>Displays the number of lines in the given file
+        <para /></listitem>
+    </varlistentry>
+    <varlistentry>
+        <term>
+            <command>
+                <option>loadavg</option>
+            </command>
+        </term>
+        <listitem>(1,2,3)&gt; System load average, 1 is for past 1
+        minute, 2 for past 5 minutes and 3 for past 15 minutes.
+        <para /></listitem>
+    </varlistentry>
+    <varlistentry>
+        <term>
+            <command>
+                <option>loadgraph</option>
+            </command>
+            <option>("normal"|"log") (height),(width) (gradient
+            colour 1) (gradient colour 2) (scale) (-t)</option>
+        </term>
+        <listitem>Load1 average graph, similar to xload, with
+        optional colours in hex, minus the #. Uses a logarithmic
+        scale (to see small numbers) when you use "log" instead of
+        "normal". Takes the switch '-t' to use a temperature
+        gradient, which makes the gradient values change depending
+        on the amplitude of a particular graph value (try it and
+        see).
+        <para /></listitem>
+    </varlistentry>
+    <varlistentry>
+        <term>
+            <command>
+                <option>lua</option>
+            </command>
+            <option>function_name (function parameters)</option>
+        </term>
+        <listitem>Executes a Lua function with given parameters,
+        then prints the returned string. See also 'lua_load' on how
+        to load scripts.
+        <para /></listitem>
+    </varlistentry>
+    <varlistentry>
+        <term>
+            <command>
+                <option>lua_bar</option>
+            </command>
+            <option>(height, width) function_name (function
+            parameters)</option>
+        </term>
+        <listitem>Executes a Lua function with given parameters and
+        draws a bar. Expects result value to be an integer between
+        0 and 100. See also 'lua_load' on how to load scripts.
+        <para /></listitem>
+    </varlistentry>
+    <varlistentry>
+        <term>
+            <command>
+                <option>lua_gauge</option>
+            </command>
+            <option>(height, width) function_name (function
+            parameters)</option>
+        </term>
+        <listitem>Executes a Lua function with given parameters and
+        draws a gauge. Expects result value to be an integer
+        between 0 and 100. See also 'lua_load' on how to load
+        scripts.
+        <para /></listitem>
+    </varlistentry>
+    <varlistentry>
+        <term>
+            <command>
+                <option>lua_graph</option>
+            </command>
+            <option>("normal"|"log") (height),(width) (gradient
+            colour 1) (gradient colour 2) (scale) (-t)
+            function_name (function parameters)</option>
+        </term>
+        <listitem>Executes a Lua function with given parameters and
+        draws a graph. Expects result value to be an integer
+        between 0 and 100. See also 'lua_load' on how to load
+        scripts. Takes the switch '-t' to use a temperature
+        gradient, which makes the gradient values change depending
+        on the amplitude of a particular graph value (try it and
+        see).
+        <para /></listitem>
+    </varlistentry>
+    <varlistentry>
+        <term>
+            <command>
+                <option>lua_parse</option>
+            </command>
+            <option>function_name (function parameters)</option>
+        </term>
+        <listitem>Executes a Lua function with given parameters as
+        per $lua, then parses and prints the result value as per
+        the syntax for Conky's TEXT section. See also 'lua_load' on
+        how to load scripts.
+        <para /></listitem>
+    </varlistentry>
+    <varlistentry>
+        <term>
+            <command>
+                <option>lua_read_parse</option>
+            </command>
+            <option>function_name (conky text)</option>
+        </term>
+        <listitem>Executes a Lua function per $lua, except takes a
+        2nd argument which is first evaluated as per Conky's TEXT
+        section and passed to the function first. The return value
+        is then parsed and prints the result value as per the
+        syntax for Conky's TEXT section. See also 'lua_load' on how
+        to load scripts.
+        <para /></listitem>
+    </varlistentry>
+    <varlistentry>
+        <term>
+            <command>
+                <option>machine</option>
+            </command>
+        </term>
+        <listitem>Machine, i686 for example
+        <para /></listitem>
+    </varlistentry>
+    <varlistentry>
+        <term>
+            <command>
+                <option>mails</option>
+            </command>
+            <option>(mailbox)</option>
+            <option>(interval)</option>
+        </term>
+        <listitem>Mail count in the specified mailbox or your mail
+        spool if not. Both mbox and maildir type mailboxes are
+        supported. You can use a program like fetchmail to get
+        mails from some server using your favourite protocol. See
+        also new_mails.
+        <para /></listitem>
+    </varlistentry>
+    <varlistentry>
+        <term>
+            <command>
+                <option>mboxscan</option>
+            </command>
+            <option>(-n number of messages to print) (-fw from
+            width) (-sw subject width) mbox</option>
+        </term>
+        <listitem>Print a summary of recent messages in an mbox
+        format mailbox. mbox parameter is the filename of the
+        mailbox (can be encapsulated using '"', ie. ${mboxscan -n
+        10 "/home/brenden/some box"}
+        <para /></listitem>
+    </varlistentry>
+    <varlistentry>
+        <term>
+            <command>
+                <option>mem</option>
+            </command>
+        </term>
+        <listitem>Amount of memory in use
+        <para /></listitem>
+    </varlistentry>
+    <varlistentry>
+        <term>
+            <command>
+                <option>membar</option>
+            </command>
+            <option>(height),(width)</option>
+        </term>
+        <listitem>Bar that shows amount of memory in use
+        <para /></listitem>
+    </varlistentry>
+    <varlistentry>
+        <term>
+            <command>
+                <option>memeasyfree</option>
+            </command>
+        </term>
+        <listitem>Amount of free memory including the memory that
+        is very easily freed (buffers/cache)
+        <para /></listitem>
+    </varlistentry>
+    <varlistentry>
+        <term>
+            <command>
+                <option>memfree</option>
+            </command>
+        </term>
+        <listitem>Amount of free memory
+        <para /></listitem>
+    </varlistentry>
+    <varlistentry>
+        <term>
+            <command>
+                <option>memgauge</option>
+            </command>
+            <option>(height),(width)</option>
+        </term>
+        <listitem>Gauge that shows amount of memory in use (see
+        cpugauge)
+        <para /></listitem>
+    </varlistentry>
+    <varlistentry>
+        <term>
+            <command>
+                <option>memgraph</option>
+            </command>
+            <option>("normal"|"log") (height),(width) (gradient
+            colour 1) (gradient colour 2) (scale) (-t)</option>
+        </term>
+        <listitem>Memory usage graph. Uses a logarithmic scale (to
+        see small numbers) when you use "log" instead of "normal".
+        Takes the switch '-t' to use a temperature gradient, which
+        makes the gradient values change depending on the amplitude
+        of a particular graph value (try it and see).
+        <para /></listitem>
+    </varlistentry>
+    <varlistentry>
+        <term>
+            <command>
+                <option>memmax</option>
+            </command>
+        </term>
+        <listitem>Total amount of memory
+        <para /></listitem>
+    </varlistentry>
+    <varlistentry>
+        <term>
+            <command>
+                <option>memperc</option>
+            </command>
+        </term>
+        <listitem>Percentage of memory in use
+        <para /></listitem>
+    </varlistentry>
+    <varlistentry>
+        <term>
+            <command>
+                <option>mixer</option>
+            </command>
+            <option>(device)</option>
+        </term>
+        <listitem>Prints the mixer value as reported by the OS.
+        Default mixer is "vol", but you can specify one of the
+        following optional arguments: "vol", "bass", "treble",
+        "synth", "pcm", "speaker", "line", "mic", "cd", "mix",
+        "pcm2", "rec", "igain", "ogain", "line1", "line2", "line3",
+        "dig1", "dig2", "dig3", "phin", "phout", "video", "radio",
+        "monitor". Refer to the definition of SOUND_DEVICE_NAMES in
+        &lt;linux/soundcard.h&gt; (on Linux), &lt;soundcard.h&gt;
+        (on OpenBSD), or &lt;sys/soundcard.h&gt; to find the exact
+        options available on your system.
+        <para /></listitem>
+    </varlistentry>
+    <varlistentry>
+        <term>
+            <command>
+                <option>mixerbar</option>
+            </command>
+            <option>(device)</option>
+        </term>
+        <listitem>Displays mixer value in a bar as reported by the
+        OS. See docs for $mixer for details on arguments.
+        <para /></listitem>
+    </varlistentry>
+    <varlistentry>
+        <term>
+            <command>
+                <option>mixerl</option>
+            </command>
+            <option>(device)</option>
+        </term>
+        <listitem>Prints the left channel mixer value as reported
+        by the OS. See docs for $mixer for details on arguments.
+        <para /></listitem>
+    </varlistentry>
+    <varlistentry>
+        <term>
+            <command>
+                <option>mixerlbar</option>
+            </command>
+            <option>(device)</option>
+        </term>
+        <listitem>Displays the left channel mixer value in a bar as
+        reported by the OS. See docs for $mixer for details on
+        arguments.
+        <para /></listitem>
+    </varlistentry>
+    <varlistentry>
+        <term>
+            <command>
+                <option>mixerr</option>
+            </command>
+            <option>(device)</option>
+        </term>
+        <listitem>Prints the right channel mixer value as reported
+        by the OS. See docs for $mixer for details on arguments.
+        <para /></listitem>
+    </varlistentry>
+    <varlistentry>
+        <term>
+            <command>
+                <option>mixerrbar</option>
+            </command>
+            <option>(device)</option>
+        </term>
+        <listitem>Displays the right channel mixer value in a bar
+        as reported by the OS. See docs for $mixer for details on
+        arguments.
+        <para /></listitem>
+    </varlistentry>
+    <varlistentry>
+        <term>
+            <command>
+                <option>moc_album</option>
+            </command>
+        </term>
+        <listitem>Album of the current MOC song
+        <para /></listitem>
+    </varlistentry>
+    <varlistentry>
+        <term>
+            <command>
+                <option>moc_artist</option>
+            </command>
+        </term>
+        <listitem>Artist of the current MOC song
+        <para /></listitem>
+    </varlistentry>
+    <varlistentry>
+        <term>
+            <command>
+                <option>moc_bitrate</option>
+            </command>
+        </term>
+        <listitem>Bitrate in the current MOC song
+        <para /></listitem>
+    </varlistentry>
+    <varlistentry>
+        <term>
+            <command>
+                <option>moc_curtime</option>
+            </command>
+        </term>
+        <listitem>Current time of the current MOC song
+        <para /></listitem>
+    </varlistentry>
+    <varlistentry>
+        <term>
+            <command>
+                <option>moc_file</option>
+            </command>
+        </term>
+        <listitem>File name of the current MOC song
+        <para /></listitem>
+    </varlistentry>
+    <varlistentry>
+        <term>
+            <command>
+                <option>moc_rate</option>
+            </command>
+        </term>
+        <listitem>Rate of the current MOC song
+        <para /></listitem>
+    </varlistentry>
+    <varlistentry>
+        <term>
+            <command>
+                <option>moc_song</option>
+            </command>
+        </term>
+        <listitem>The current song name being played in MOC.
+        <para /></listitem>
+    </varlistentry>
+    <varlistentry>
+        <term>
+            <command>
+                <option>moc_state</option>
+            </command>
+        </term>
+        <listitem>Current state of MOC; playing, stopped etc.
+        <para /></listitem>
+    </varlistentry>
+    <varlistentry>
+        <term>
+            <command>
+                <option>moc_timeleft</option>
+            </command>
+        </term>
+        <listitem>Time left in the current MOC song
+        <para /></listitem>
+    </varlistentry>
+    <varlistentry>
+        <term>
+            <command>
+                <option>moc_title</option>
+            </command>
+        </term>
+        <listitem>Title of the current MOC song
+        <para /></listitem>
+    </varlistentry>
+    <varlistentry>
+        <term>
+            <command>
+                <option>moc_totaltime</option>
+            </command>
+        </term>
+        <listitem>Total length of the current MOC song
+        <para /></listitem>
+    </varlistentry>
+    <varlistentry>
+        <term>
+            <command>
+                <option>monitor</option>
+            </command>
+        </term>
+        <listitem>Number of the monitor on which conky is running
+        <para /></listitem>
+    </varlistentry>
+    <varlistentry>
+        <term>
+            <command>
+                <option>monitor_number</option>
+            </command>
+        </term>
+        <listitem>Number of monitors
+        <para /></listitem>
+    </varlistentry>
+    <varlistentry>
+        <term>
+            <command>
+                <option>mpd_album</option>
+            </command>
+        </term>
+        <listitem>Album in current MPD song
+        <para /></listitem>
+    </varlistentry>
+    <varlistentry>
+        <term>
+            <command>
+                <option>mpd_artist</option>
+            </command>
+        </term>
+        <listitem>Artist in current MPD song must be enabled at
+        compile
+        <para /></listitem>
+    </varlistentry>
+    <varlistentry>
+        <term>
+            <command>
+                <option>mpd_bar</option>
+            </command>
+            <option>(height),(width)</option>
+        </term>
+        <listitem>Bar of mpd's progress
+        <para /></listitem>
+    </varlistentry>
+    <varlistentry>
+        <term>
+            <command>
+                <option>mpd_bitrate</option>
+            </command>
+        </term>
+        <listitem>Bitrate of current song
+        <para /></listitem>
+    </varlistentry>
+    <varlistentry>
+        <term>
+            <command>
+                <option>mpd_elapsed</option>
+            </command>
+        </term>
+        <listitem>Song's elapsed time
+        <para /></listitem>
+    </varlistentry>
+    <varlistentry>
+        <term>
+            <command>
+                <option>mpd_file</option>
+            </command>
+        </term>
+        <listitem>Prints the file name of the current MPD song
+        <para /></listitem>
+    </varlistentry>
+    <varlistentry>
+        <term>
+            <command>
+                <option>mpd_length</option>
+            </command>
+        </term>
+        <listitem>Song's length
+        <para /></listitem>
+    </varlistentry>
+    <varlistentry>
+        <term>
+            <command>
+                <option>mpd_name</option>
+            </command>
+        </term>
+        <listitem>Prints the MPD name field
+        <para /></listitem>
+    </varlistentry>
+    <varlistentry>
+        <term>
+            <command>
+                <option>mpd_percent</option>
+            </command>
+        </term>
+        <listitem>Percent of song's progress
+        <para /></listitem>
+    </varlistentry>
+    <varlistentry>
+        <term>
+            <command>
+                <option>mpd_random</option>
+            </command>
+        </term>
+        <listitem>Random status (On/Off)
+        <para /></listitem>
+    </varlistentry>
+    <varlistentry>
+        <term>
+            <command>
+                <option>mpd_repeat</option>
+            </command>
+        </term>
+        <listitem>Repeat status (On/Off)
+        <para /></listitem>
+    </varlistentry>
+    <varlistentry>
+        <term>
+            <command>
+                <option>mpd_smart</option>
+            </command>
+            <option>(max length)</option>
+        </term>
+        <listitem>Prints the song name in either the form "artist -
+        title" or file name, depending on whats available
+        <para /></listitem>
+    </varlistentry>
+    <varlistentry>
+        <term>
+            <command>
+                <option>mpd_status</option>
+            </command>
+        </term>
+        <listitem>Playing, stopped, et cetera.
+        <para /></listitem>
+    </varlistentry>
+    <varlistentry>
+        <term>
+            <command>
+                <option>mpd_title</option>
+            </command>
+            <option>(max length)</option>
+        </term>
+        <listitem>Title of current MPD song
+        <para /></listitem>
+    </varlistentry>
+    <varlistentry>
+        <term>
+            <command>
+                <option>mpd_track</option>
+            </command>
+        </term>
+        <listitem>Prints the MPD track field
+        <para /></listitem>
+    </varlistentry>
+    <varlistentry>
+        <term>
+            <command>
+                <option>mpd_vol</option>
+            </command>
+        </term>
+        <listitem>MPD's volume
+        <para /></listitem>
+    </varlistentry>
+    <varlistentry>
+        <term>
+            <command>
+                <option>nameserver</option>
+            </command>
+            <option>(index)</option>
+        </term>
+        <listitem>Print a nameserver from /etc/resolv.conf. Index
+        starts at and defaults to 0.
+        <para /></listitem>
+    </varlistentry>
+    <varlistentry>
+        <term>
+            <command>
+                <option>new_mails</option>
+            </command>
+            <option>(mailbox)</option>
+            <option>(interval)</option>
+        </term>
+        <listitem>Unread mail count in the specified mailbox or
+        mail spool if not. Both mbox and maildir type mailboxes are
+        supported.
+        <para /></listitem>
+    </varlistentry>
+    <varlistentry>
+        <term>
+            <command>
+                <option>nodename</option>
+            </command>
+        </term>
+        <listitem>Hostname
+        <para /></listitem>
+    </varlistentry>
+    <varlistentry>
+        <term>
+            <command>
+                <option>nvidia</option>
+            </command>
+            <option>threshold</option>
+            <option>temp</option>
+            <option>ambient</option>
+            <option>gpufreq</option>
+            <option>memfreq</option>
+            <option>imagequality</option>
+        </term>
+        <listitem>Nvidia graficcard support for the XNVCtrl
+        library. Each option can be shortened to the least
+        significant part. Temperatures are printed as float, all
+        other values as integer.
+        <simplelist>
+            <member>
+            <command>threshold</command>: the thresholdtemperature
+            at which the gpu slows down</member>
+            <member>
+            <command>temp</command>: gives the gpu current
+            temperature</member>
+            <member>
+            <command>ambient</command>: gives current air
+            temperature near GPU case</member>
+            <member>
+            <command>gpufreq</command>: gives the current gpu
+            frequency</member>
+            <member>
+            <command>memfreq</command>: gives the current mem
+            frequency</member>
+            <member>
+            <command>imagequality</command>: which imagequality
+            should be choosen by OpenGL applications</member>
+        </simplelist>
+        <para /></listitem>
+    </varlistentry>
+    <varlistentry>
+        <term>
+            <command>
+                <option>offset</option>
+            </command>
+            <option>(pixels)</option>
+        </term>
+        <listitem>Move text over by N pixels. See also $voffset.
+        <para /></listitem>
+    </varlistentry>
+    <varlistentry>
+        <term>
+            <command>
+                <option>outlinecolor</option>
+            </command>
+            <option>(color)</option>
+        </term>
+        <listitem>Change outline color
+        <para /></listitem>
+    </varlistentry>
+    <varlistentry>
+        <term>
+            <command>
+                <option>pb_battery</option>
+            </command>
+            <option>item</option>
+        </term>
+        <listitem>If running on Apple powerbook/ibook, display
+        information on battery status. The item parameter
+        specifies, what information to display. Exactly one item
+        must be specified. Valid items are:
+        <simplelist>
+            <member>
+            <command>status</command>: Display if battery is fully
+            charged, charging, discharging or absent (running on
+            AC)</member>
+            <member>
+            <command>percent</command>: Display charge of battery
+            in percent, if charging or discharging. Nothing will be
+            displayed, if battery is fully charged or
+            absent.</member>
+            <member>
+            <command>time</command>: Display the time remaining
+            until the battery will be fully charged or discharged
+            at current rate. Nothing is displayed, if battery is
+            absent or if it's present but fully charged and not
+            discharging.</member>
+        </simplelist>
+        <para /></listitem>
+    </varlistentry>
+    <varlistentry>
+        <term>
+            <command>
+                <option>platform</option>
+            </command>
+            <option>(dev) type n (factor offset)</option>
+        </term>
+        <listitem>Platform sensor from sysfs (Linux 2.6). Parameter
+        dev may be omitted if you have only one platform device.
+        Platform type is either 'in' or 'vol' meaning voltage;
+        'fan' meaning fan; 'temp' meaning temperature. Parameter n
+        is number of the sensor. See /sys/bus/platform/devices/ on
+        your local computer. The optional arguments 'factor' and
+        'offset' allow precalculation of the raw input, which is
+        being modified as follows: 'input = input * factor +
+        offset'. Note that they have to be given as decimal values
+        (i.e. contain at least one decimal place).
+        <para /></listitem>
+    </varlistentry>
+    <varlistentry>
+        <term>
+            <command>
+                <option>pop3_unseen</option>
+            </command>
+            <option>(args)</option>
+        </term>
+        <listitem>Displays the number of unseen messages in your
+        global POP3 inbox by default. You can define individual
+        POP3 inboxes seperately by passing arguments to this
+        object. Arguments are: "host user pass [-i interval (in
+        seconds)] [-p port] [-e command] [-r retries]". Default
+        port is 110, default interval is 5 minutes, and default
+        number of retries before giving up is 5. If the password is
+        supplied as '*', you will be prompted to enter the password
+        when Conky starts.
+        <para /></listitem>
+    </varlistentry>
+    <varlistentry>
+        <term>
+            <command>
+                <option>pop3_used</option>
+            </command>
+            <option>(args)</option>
+        </term>
+        <listitem>Displays the amount of space (in MiB, 2^20) used
+        in your global POP3 inbox by default. You can define
+        individual POP3 inboxes seperately by passing arguments to
+        this object. Arguments are: "host user pass [-i interval
+        (in seconds)] [-p port] [-e command] [-r retries]". Default
+        port is 110, default interval is 5 minutes, and default
+        number of retries before giving up is 5. If the password is
+        supplied as '*', you will be prompted to enter the password
+        when Conky starts.
+        <para /></listitem>
+    </varlistentry>
+    <varlistentry>
+        <term>
+            <command>
+                <option>pre_exec</option>
+            </command>
+            <option>shell command</option>
+        </term>
+        <listitem>Executes a shell command one time before conky
+        displays anything and puts output as text.
+        <para /></listitem>
+    </varlistentry>
+    <varlistentry>
+        <term>
+            <command>
+                <option>processes</option>
+            </command>
+        </term>
+        <listitem>Total processes (sleeping and running)
+        <para /></listitem>
+    </varlistentry>
+    <varlistentry>
+        <term>
+            <command>
+                <option>read_tcp</option>
+            </command>
+            <option>(host) port</option>
+        </term>
+        <listitem>Connects to a tcp port on a host (default is
+        localhost), reads every char available at the moment and
+        shows them.
+        <para /></listitem>
+    </varlistentry>
+    <varlistentry>
+        <term>
+            <command>
+                <option>replied_mails</option>
+            </command>
+            <option>(maildir)</option>
+            <option>(interval)</option>
+        </term>
+        <listitem>Number of mails marked as replied in the
+        specified mailbox or mail spool if not. Only maildir type
+        mailboxes are supported, mbox type will return -1.
+        <para /></listitem>
+    </varlistentry>
+    <varlistentry>
+        <term>
+            <command>
+                <option>rss</option>
+            </command>
+            <option>url delay_in_minutes action (num_par
+            (spaces_in_front))</option>
+        </term>
+        <listitem>Download and parse RSS feeds. Action may be one
+        of the following: feed_title, item_title (with num par),
+        item_desc (with num par) and item_titles (when using this
+        action and spaces_in_front is given conky places that many
+        spaces in front of each item).
+        <para /></listitem>
+    </varlistentry>
+    <varlistentry>
+        <term>
+            <command>
+                <option>running_processes</option>
+            </command>
+        </term>
+        <listitem>Running processes (not sleeping), requires Linux
+        2.6
+        <para /></listitem>
+    </varlistentry>
+    <varlistentry>
+        <term>
+            <command>
+                <option>scroll</option>
+            </command>
+            <option>length (step) text</option>
+        </term>
+        <listitem>Scroll 'text' by 'step' characters showing
+        'length' number of characters at the same time. The text
+        may also contain variables. 'step' is optional and defaults
+        to 1 if not set. If a var creates output on multiple lines
+        then the lines are placed behind each other separated with
+        a '|'-sign. Do NOT use vars that change colors or otherwise
+        affect the design inside a scrolling text. If you want
+        spaces between the start and the end of 'text', place them
+        at the end of 'text' not at the front ("foobar" and "
+        foobar" can both generate "barfoo" but "foobar " will keep
+        the spaces like this "bar foo").
+        <para /></listitem>
+    </varlistentry>
+    <varlistentry>
+        <term>
+            <command>
+                <option>seen_mails</option>
+            </command>
+            <option>(maildir)</option>
+            <option>(interval)</option>
+        </term>
+        <listitem>Number of mails marked as seen in the specified
+        mailbox or mail spool if not. Only maildir type mailboxes
+        are supported, mbox type will return -1.
+        <para /></listitem>
+    </varlistentry>
+    <varlistentry>
+        <term>
+            <command>
+                <option>shadecolor</option>
+            </command>
+            <option>(color)</option>
+        </term>
+        <listitem>Change shading color
+        <para /></listitem>
+    </varlistentry>
+    <varlistentry>
+        <term>
+            <command>
+                <option>smapi</option>
+            </command>
+            <option>(ARGS)</option>
+        </term>
+        <listitem>when using smapi, display contents of the
+        /sys/devices/platform/smapi directory. ARGS are either
+        '(FILENAME)' or 'bat (INDEX) (FILENAME)' to display the
+        corresponding files' content. This is a very raw method of
+        accessing the smapi values. When available, better use one
+        of the smapi_* variables instead.
+        <para /></listitem>
+    </varlistentry>
+    <varlistentry>
+        <term>
+            <command>
+                <option>smapi_bat_bar</option>
+            </command>
+            <option>(INDEX),(height),(width)</option>
+        </term>
+        <listitem>when using smapi, display the remaining capacity
+        of the battery with index INDEX as a bar.
+        <para /></listitem>
+    </varlistentry>
+    <varlistentry>
+        <term>
+            <command>
+                <option>smapi_bat_perc</option>
+            </command>
+            <option>(INDEX)</option>
+        </term>
+        <listitem>when using smapi, display the remaining capacity
+        in percent of the battery with index INDEX. This is a
+        separate variable because it supports the 'use_spacer'
+        configuration option.
+        <para /></listitem>
+    </varlistentry>
+    <varlistentry>
+        <term>
+            <command>
+                <option>smapi_bat_power</option>
+            </command>
+            <option>INDEX</option>
+        </term>
+        <listitem>when using smapi, display the current power of
+        the battery with index INDEX in watt. This is a separate
+        variable because the original read out value is being
+        converted from mW. The sign of the output reflects charging
+        (positive) or discharging (negative) state.
+        <para /></listitem>
+    </varlistentry>
+    <varlistentry>
+        <term>
+            <command>
+                <option>smapi_bat_temp</option>
+            </command>
+            <option>INDEX</option>
+        </term>
+        <listitem>when using smapi, display the current temperature
+        of the battery with index INDEX in degree Celsius. This is
+        a separate variable because the original read out value is
+        being converted from milli degree Celsius.
+        <para /></listitem>
+    </varlistentry>
+    <varlistentry>
+        <term>
+            <command>
+                <option>sony_fanspeed</option>
+            </command>
+        </term>
+        <listitem>Displays the Sony VAIO fanspeed information if
+        sony-laptop kernel support is enabled. Linux only.
+        <para /></listitem>
+    </varlistentry>
+    <varlistentry>
+        <term>
+            <command>
+                <option>stippled_hr</option>
+            </command>
+            <option>(space)</option>
+        </term>
+        <listitem>Stippled (dashed) horizontal line
+        <para /></listitem>
+    </varlistentry>
+    <varlistentry>
+        <term>
+            <command>
+                <option>swap</option>
+            </command>
+        </term>
+        <listitem>Amount of swap in use
+        <para /></listitem>
+    </varlistentry>
+    <varlistentry>
+        <term>
+            <command>
+                <option>swapbar</option>
+            </command>
+            <option>(height),(width)</option>
+        </term>
+        <listitem>Bar that shows amount of swap in use
+        <para /></listitem>
+    </varlistentry>
+    <varlistentry>
+        <term>
+            <command>
+                <option>swapmax</option>
+            </command>
+        </term>
+        <listitem>Total amount of swap
+        <para /></listitem>
+    </varlistentry>
+    <varlistentry>
+        <term>
+            <command>
+                <option>swapperc</option>
+            </command>
+        </term>
+        <listitem>Percentage of swap in use
+        <para /></listitem>
+    </varlistentry>
+    <varlistentry>
+        <term>
+            <command>
+                <option>sysname</option>
+            </command>
+        </term>
+        <listitem>System name, Linux for example
+        <para /></listitem>
+    </varlistentry>
+    <varlistentry>
+        <term>
+            <command>
+                <option>tab</option>
+            </command>
+            <option>(width, (start))</option>
+        </term>
+        <listitem>Puts a tab of the specified width, starting from
+        column 'start'. The unit is pixels for both arguments.
+        <para /></listitem>
+    </varlistentry>
+    <varlistentry>
+        <term>
+            <command>
+                <option>tail</option>
+            </command>
+            <option>logfile lines (interval)</option>
+        </term>
+        <listitem>Displays last N lines of supplied text text file.
+        If interval is not supplied, Conky assumes 2x Conky's
+        interval. Max of 30 lines can be displayed, or until the
+        text buffer is filled.
+        <para /></listitem>
+    </varlistentry>
+    <varlistentry>
+        <term>
+            <command>
+                <option>tcp_portmon</option>
+            </command>
+            <option>port_begin port_end item (index)</option>
+            <emphasis>(ip4 only at present)</emphasis>
+        </term>
+        <listitem>TCP port monitor for specified local ports. Port
+        numbers must be in the range 1 to 65535. Valid items are:
+        <simplelist>
+            <member>
+            <command>count</command>- total number of connections
+            in the range</member>
+            <member>
+            <command>rip</command>- remote ip address</member>
+            <member>
+            <command>rhost</command>- remote host name</member>
+            <member>
+            <command>rport</command>- remote port number</member>
+            <member>
+            <command>rservice</command>- remote service name from
+            /etc/services</member>
+            <member>
+            <command>lip</command>- local ip address</member>
+            <member>
+            <command>lhost</command>- local host name</member>
+            <member>
+            <command>lport</command>- local port number</member>
+            <member>
+            <command>lservice</command>- local service name from
+            /etc/services</member>
+        </simplelist>The connection index provides you with access
+        to each connection in the port monitor. The monitor will
+        return information for index values from 0 to n-1
+        connections. Values higher than n-1 are simply ignored. For
+        the "count" item, the connection index must be omitted. It
+        is required for all other items.
+        <simplelist>
+            <member>Examples:</member>
+            <member>
+            <command>${tcp_portmon 6881 6999 count}</command>-
+            displays the number of connections in the bittorrent
+            port range</member>
+            <member>
+            <command>${tcp_portmon 22 22 rip 0}</command>- displays
+            the remote host ip of the first sshd
+            connection</member>
+            <member>
+            <command>${tcp_portmon 22 22 rip 9}</command>- displays
+            the remote host ip of the tenth sshd
+            connection</member>
+            <member>
+            <command>${tcp_portmon 1 1024 rhost 0}</command>-
+            displays the remote host name of the first connection
+            on a privileged port</member>
+            <member>
+            <command>${tcp_portmon 1 1024 rport 4}</command>-
+            displays the remote host port of the fifth connection
+            on a privileged port</member>
+            <member>
+            <command>${tcp_portmon 1 65535 lservice 14}</command>-
+            displays the local service name of the fifteenth
+            connection in the range of all ports</member>
+        </simplelist>Note that port monitor variables which share
+        the same port range actually refer to the same monitor, so
+        many references to a single port range for different items
+        and different indexes all use the same monitor internally.
+        In other words, the program avoids creating redundant
+        monitors.</listitem>
+    </varlistentry>
+    <varlistentry>
+        <term>
+            <command>
+                <option>templateN</option>
+            </command>
+            <option>(arg1)</option>
+            <option>(arg2)</option>
+            <option>(arg3 ...)</option>
+        </term>
+        <listitem>Evaluate the content of the templateN
+        configuration variable (where N is a value between 0 and 9,
+        inclusively), applying substitutions as described in the
+        documentation of the corresponding configuration variable.
+        The number of arguments is optional, but must match the
+        highest referred index in the template. You can use the
+        same special sequences in each argument as the ones valid
+        for a template definition, e.g. to allow an argument to
+        contain a whitespace. Also simple nesting of templates is
+        possible this way.
+        <para /></listitem>
+        <listitem>Here are some examples of template definitions:
+        <simplelist>
+            <member>template0 $\1\2</member>
+            <member>template1 \1: ${fs_used \2} / ${fs_size
+            \2}</member>
+            <member>template2 \1 \2</member>
+        </simplelist>The following list shows sample usage of the
+        templates defined above, with the equivalent syntax when
+        not using any template at all:
+        <table>
+            <tgroup cols="2">
+                <thead>
+                    <row rowsep="1">
+                        <entry>using template</entry>
+                        <entry>same without template</entry>
+                    </row>
+                </thead>
+                <tbody>
+                    <row>
+                        <entry>${template0 node name}</entry>
+                        <entry>$nodename</entry>
+                    </row>
+                    <row>
+                        <entry>${template1 root /}</entry>
+                        <entry>root: ${fs_free /} / ${fs_size
+                        /}</entry>
+                    </row>
+                    <row>
+                        <entry>
+                            <programlisting>${template1
+                            ${template2\ disk\ root}
+                            /}</programlisting>
+                        </entry>
+                        <entry>
+                            <programlisting>disk root: ${fs_free /}
+                            / ${fs_size /}</programlisting>
+                        </entry>
+                    </row>
+                </tbody>
+            </tgroup>
+        </table>
+        <para /></listitem>
+    </varlistentry>
+    <varlistentry>
+        <term>
+            <command>
+                <option>texeci</option>
+            </command>
+            <option>interval command</option>
+        </term>
+        <listitem>Runs a command at an interval inside a thread and
+        displays the output. Same as $execi, except the command is
+        run inside a thread. Use this if you have a slow script to
+        keep Conky updating. You should make the interval slightly
+        longer then the time it takes your script to execute. For
+        example, if you have a script that take 5 seconds to
+        execute, you should make the interval at least 6 seconds.
+        See also $execi.
+        <para /></listitem>
+    </varlistentry>
+    <varlistentry>
+        <term>
+            <command>
+                <option>time</option>
+            </command>
+            <option>(format)</option>
+        </term>
+        <listitem>Local time, see man strftime to get more
+        information about format
+        <para /></listitem>
+    </varlistentry>
+    <varlistentry>
+        <term>
+            <command>
+                <option>top</option>
+            </command>
+            <option>type, num</option>
+        </term>
+        <listitem>This takes arguments in the form:top (name)
+        (number) Basically, processes are ranked from highest to
+        lowest in terms of cpu usage, which is what (num)
+        represents. The types are: "name", "pid", "cpu", "mem",
+        "mem_res", "mem_vsize", and "time". There can be a max of
+        10 processes listed.
+        <para /></listitem>
+    </varlistentry>
+    <varlistentry>
+        <term>
+            <command>
+                <option>top_mem</option>
+            </command>
+            <option>type, num</option>
+        </term>
+        <listitem>Same as top, except sorted by mem usage instead
+        of cpu
+        <para /></listitem>
+    </varlistentry>
+    <varlistentry>
+        <term>
+            <command>
+                <option>top_time</option>
+            </command>
+            <option>type, num</option>
+        </term>
+        <listitem>Same as top, except sorted by total CPU time
+        instead of current CPU usage
+        <para /></listitem>
+    </varlistentry>
+    <varlistentry>
+        <term>
+            <command>
+                <option>totaldown</option>
+            </command>
+            <option>net</option>
+        </term>
+        <listitem>Total download, overflows at 4 GB on Linux with
+        32-bit arch and there doesn't seem to be a way to know how
+        many times it has already done that before conky has
+        started.
+        <para /></listitem>
+    </varlistentry>
+    <varlistentry>
+        <term>
+            <command>
+                <option>totalup</option>
+            </command>
+            <option>net</option>
+        </term>
+        <listitem>Total upload, this one too, may overflow
+        <para /></listitem>
+    </varlistentry>
+    <varlistentry>
+        <term>
+            <command>
+                <option>trashed_mails</option>
+            </command>
+            <option>(maildir)</option>
+            <option>(interval)</option>
+        </term>
+        <listitem>Number of mails marked as trashed in the
+        specified mailbox or mail spool if not. Only maildir type
+        mailboxes are supported, mbox type will return -1.
+        <para /></listitem>
+    </varlistentry>
+    <varlistentry>
+        <term>
+            <command>
+                <option>tztime</option>
+            </command>
+            <option>(timezone) (format)</option>
+        </term>
+        <listitem>Local time for specified timezone, see man
+        strftime to get more information about format. The timezone
+        argument is specified in similar fashion as TZ environment
+        variable. For hints, look in /usr/share/zoneinfo. e.g.
+        US/Pacific, Europe/Zurich, etc.
+        <para /></listitem>
+    </varlistentry>
+    <varlistentry>
+        <term>
+            <command>
+                <option>unflagged_mails</option>
+            </command>
+            <option>(maildir)</option>
+            <option>(interval)</option>
+        </term>
+        <listitem>Number of mails not marked as flagged in the
+        specified mailbox or mail spool if not. Only maildir type
+        mailboxes are supported, mbox type will return -1.
+        <para /></listitem>
+    </varlistentry>
+    <varlistentry>
+        <term>
+            <command>
+                <option>unforwarded_mails</option>
+            </command>
+            <option>(maildir)</option>
+            <option>(interval)</option>
+        </term>
+        <listitem>Number of mails not marked as forwarded in the
+        specified mailbox or mail spool if not. Only maildir type
+        mailboxes are supported, mbox type will return -1.
+        <para /></listitem>
+    </varlistentry>
+    <varlistentry>
+        <term>
+            <command>
+                <option>unreplied_mails</option>
+            </command>
+            <option>(maildir)</option>
+            <option>(interval)</option>
+        </term>
+        <listitem>Number of mails not marked as replied in the
+        specified mailbox or mail spool if not. Only maildir type
+        mailboxes are supported, mbox type will return -1.
+        <para /></listitem>
+    </varlistentry>
+    <varlistentry>
+        <term>
+            <command>
+                <option>unseen_mails</option>
+            </command>
+            <option>(maildir)</option>
+            <option>(interval)</option>
+        </term>
+        <listitem>Number of new or unseen mails in the specified
+        mailbox or mail spool if not. Only maildir type mailboxes
+        are supported, mbox type will return -1.
+        <para /></listitem>
+    </varlistentry>
+    <varlistentry>
+        <term>
+            <command>
+                <option>updates</option>
+            </command>
+            <option>Number of updates</option>
+        </term>
+        <listitem>for debugging
+        <para /></listitem>
+    </varlistentry>
+    <varlistentry>
+        <term>
+            <command>
+                <option>upspeed</option>
+            </command>
+            <option>net</option>
+        </term>
+        <listitem>Upload speed in KiB
+        <para /></listitem>
+    </varlistentry>
+    <varlistentry>
+        <term>
+            <command>
+                <option>upspeedf</option>
+            </command>
+            <option>net</option>
+        </term>
+        <listitem>Upload speed in KiB with one decimal
+        <para /></listitem>
+    </varlistentry>
+    <varlistentry>
+        <term>
+            <command>
+                <option>upspeedgraph</option>
+            </command>
+            <option>("normal"|"log") (height),(width) (gradient
+            colour 1) (gradient colour 2) (scale) (-t)
+            (net)</option>
+        </term>
+        <listitem>Upload speed graph, colours defined in hex, minus
+        the #. If scale is non-zero, it becomes the scale for the
+        graph. Uses a logarithmic scale (to see small numbers) when
+        you use "log" instead of "normal". Takes the switch '-t' to
+        use a temperature gradient, which makes the gradient values
+        change depending on the amplitude of a particular graph
+        value (try it and see).
+        <para /></listitem>
+    </varlistentry>
+    <varlistentry>
+        <term>
+            <command>
+                <option>uptime</option>
+            </command>
+        </term>
+        <listitem>Uptime
+        <para /></listitem>
+    </varlistentry>
+    <varlistentry>
+        <term>
+            <command>
+                <option>uptime_short</option>
+            </command>
+        </term>
+        <listitem>Uptime in a shorter format
+        <para /></listitem>
+    </varlistentry>
+    <varlistentry>
+        <term>
+            <command>
+                <option>user_names</option>
+            </command>
+        </term>
+        <listitem>Lists the names of the users logged in
+        <para /></listitem>
+    </varlistentry>
+    <varlistentry>
+        <term>
+            <command>
+                <option>user_number</option>
+            </command>
+        </term>
+        <listitem>Number of users logged in
+        <para /></listitem>
+    </varlistentry>
+    <varlistentry>
+        <term>
+            <command>
+                <option>user_terms</option>
+            </command>
+        </term>
+        <listitem>Lists the consoles in use
+        <para /></listitem>
+    </varlistentry>
+    <varlistentry>
+        <term>
+            <command>
+                <option>user_times</option>
+            </command>
+        </term>
+        <listitem>Lists how long users have been logged in for
+        <para /></listitem>
+    </varlistentry>
+    <varlistentry>
+        <term>
+            <command>
+                <option>utime</option>
+            </command>
+            <option>(format)</option>
+        </term>
+        <listitem>Display time in UTC (universal coordinate time).
+        <para /></listitem>
+    </varlistentry>
+    <varlistentry>
+        <term>
+            <command>
+                <option>voffset</option>
+            </command>
+            <option>(pixels)</option>
+        </term>
+        <listitem>Change vertical offset by N pixels. Negative
+        values will cause text to overlap. See also $offset.
+        <para /></listitem>
+    </varlistentry>
+    <varlistentry>
+        <term>
+            <command>
+                <option>voltage_mv</option>
+            </command>
+            <option>(n)</option>
+        </term>
+        <listitem>Returns CPU #n's voltage in mV. CPUs are counted
+        from 1. If omitted, the parameter defaults to 1.
+        <para /></listitem>
+    </varlistentry>
+    <varlistentry>
+        <term>
+            <command>
+                <option>voltage_v</option>
+            </command>
+            <option>(n)</option>
+        </term>
+        <listitem>Returns CPU #n's voltage in V. CPUs are counted
+        from 1. If omitted, the parameter defaults to 1.
+        <para /></listitem>
+    </varlistentry>
+    <varlistentry>
+        <term>
+            <command>
+                <option>wireless_ap</option>
+            </command>
+            <option>net</option>
+        </term>
+        <listitem>Wireless access point MAC address (Linux only)
+        <para /></listitem>
+    </varlistentry>
+    <varlistentry>
+        <term>
+            <command>
+                <option>wireless_bitrate</option>
+            </command>
+            <option>net</option>
+        </term>
+        <listitem>Wireless bitrate (ie 11 Mb/s) (Linux only)
+        <para /></listitem>
+    </varlistentry>
+    <varlistentry>
+        <term>
+            <command>
+                <option>wireless_essid</option>
+            </command>
+            <option>net</option>
+        </term>
+        <listitem>Wireless access point ESSID (Linux only)
+        <para /></listitem>
+    </varlistentry>
+    <varlistentry>
+        <term>
+            <command>
+                <option>wireless_link_bar</option>
+            </command>
+            <option>(height), (width) net</option>
+        </term>
+        <listitem>Wireless link quality bar (Linux only)
+        <para /></listitem>
+    </varlistentry>
+    <varlistentry>
+        <term>
+            <command>
+                <option>wireless_link_qual</option>
+            </command>
+            <option>net</option>
+        </term>
+        <listitem>Wireless link quality (Linux only)
+        <para /></listitem>
+    </varlistentry>
+    <varlistentry>
+        <term>
+            <command>
+                <option>wireless_link_qual_max</option>
+            </command>
+            <option>net</option>
+        </term>
+        <listitem>Wireless link quality maximum value (Linux only)
+        <para /></listitem>
+    </varlistentry>
+    <varlistentry>
+        <term>
+            <command>
+                <option>wireless_link_qual_perc</option>
+            </command>
+            <option>net</option>
+        </term>
+        <listitem>Wireless link quality in percents (Linux only)
+        <para /></listitem>
+    </varlistentry>
+    <varlistentry>
+        <term>
+            <command>
+                <option>wireless_mode</option>
+            </command>
+            <option>net</option>
+        </term>
+        <listitem>Wireless mode (Managed/Ad-Hoc/Master) (Linux
+        only)
+        <para /></listitem>
+    </varlistentry>
+    <varlistentry>
+        <term>
+            <command>
+                <option>words</option>
+            </command>
+            <option>textfile</option>
+        </term>
+        <listitem>Displays the number of words in the given file
+        <para /></listitem>
+    </varlistentry>
+    <varlistentry>
+        <term>
+            <command>
+                <option>xmms2_album</option>
+            </command>
+        </term>
+        <listitem>Album in current XMMS2 song
+        <para /></listitem>
+    </varlistentry>
+    <varlistentry>
+        <term>
+            <command>
+                <option>xmms2_artist</option>
+            </command>
+        </term>
+        <listitem>Artist in current XMMS2 song
+        <para /></listitem>
+    </varlistentry>
+    <varlistentry>
+        <term>
+            <command>
+                <option>xmms2_bar</option>
+            </command>
+            <option>(height),(width)</option>
+        </term>
+        <listitem>Bar of XMMS2's progress
+        <para /></listitem>
+    </varlistentry>
+    <varlistentry>
+        <term>
+            <command>
+                <option>xmms2_bitrate</option>
+            </command>
+        </term>
+        <listitem>Bitrate of current song
+        <para /></listitem>
+    </varlistentry>
+    <varlistentry>
+        <term>
+            <command>
+                <option>xmms2_comment</option>
+            </command>
+        </term>
+        <listitem>Comment in current XMMS2 song
+        <para /></listitem>
+    </varlistentry>
+    <varlistentry>
+        <term>
+            <command>
+                <option>xmms2_date</option>
+            </command>
+        </term>
+        <listitem>Returns song's date.
+        <para /></listitem>
+    </varlistentry>
+    <varlistentry>
+        <term>
+            <command>
+                <option>xmms2_duration</option>
+            </command>
+        </term>
+        <listitem>Duration of current song
+        <para /></listitem>
+    </varlistentry>
+    <varlistentry>
+        <term>
+            <command>
+                <option>xmms2_elapsed</option>
+            </command>
+        </term>
+        <listitem>Song's elapsed time
+        <para /></listitem>
+    </varlistentry>
+    <varlistentry>
+        <term>
+            <command>
+                <option>xmms2_genre</option>
+            </command>
+        </term>
+        <listitem>Genre in current XMMS2 song
+        <para /></listitem>
+    </varlistentry>
+    <varlistentry>
+        <term>
+            <command>
+                <option>xmms2_id</option>
+            </command>
+        </term>
+        <listitem>XMMS2 id of current song
+        <para /></listitem>
+    </varlistentry>
+    <varlistentry>
+        <term>
+            <command>
+                <option>xmms2_percent</option>
+            </command>
+        </term>
+        <listitem>Percent of song's progress
+        <para /></listitem>
+    </varlistentry>
+    <varlistentry>
+        <term>
+            <command>
+                <option>xmms2_playlist</option>
+            </command>
+        </term>
+        <listitem>Returns the XMMS2 playlist.
+        <para /></listitem>
+    </varlistentry>
+    <varlistentry>
+        <term>
+            <command>
+                <option>xmms2_size</option>
+            </command>
+        </term>
+        <listitem>Size of current song
+        <para /></listitem>
+    </varlistentry>
+    <varlistentry>
+        <term>
+            <command>
+                <option>xmms2_smart</option>
+            </command>
+        </term>
+        <listitem>Prints the song name in either the form "artist -
+        title" or file name, depending on whats available
+        <para /></listitem>
+    </varlistentry>
+    <varlistentry>
+        <term>
+            <command>
+                <option>xmms2_status</option>
+            </command>
+        </term>
+        <listitem>XMMS2 status (Playing, Paused, Stopped, or
+        Disconnected)
+        <para /></listitem>
+    </varlistentry>
+    <varlistentry>
+        <term>
+            <command>
+                <option>xmms2_timesplayed</option>
+            </command>
+        </term>
+        <listitem>Number of times a song was played (presumably).
+        <para /></listitem>
+    </varlistentry>
+    <varlistentry>
+        <term>
+            <command>
+                <option>xmms2_title</option>
+            </command>
+        </term>
+        <listitem>Title in current XMMS2 song
+        <para /></listitem>
+    </varlistentry>
+    <varlistentry>
+        <term>
+            <command>
+                <option>xmms2_tracknr</option>
+            </command>
+        </term>
+        <listitem>Track number in current XMMS2 song
+        <para /></listitem>
+    </varlistentry>
+    <varlistentry>
+        <term>
+            <command>
+                <option>xmms2_url</option>
+            </command>
+        </term>
+        <listitem>Full path to current song
+        <para /></listitem>
+    </varlistentry>
 </variablelist>
index e1cab49..1608607 100644 (file)
@@ -5,13 +5,13 @@
 syntax "conky" "(\.*conkyrc.*$|conky.conf)"
 
 ## Configuration items
-color green "\<(alias|alignment|append_file|background|border_margin|border_width|color0|color1|color2|color3|color4|color5|color6|color7|color8|color9|colorN|cpu_avg_samples|default_bar_size|default_color|default_gauge_size|default_graph_size|default_outline_color|default_shade_color|diskio_avg_samples|display|double_buffer|draw_borders|draw_graph_borders|draw_outline|draw_shades|font|gap_x|gap_y|if_up_strictness|imap|imlib_cache_size|lua_load|mail_spool|max_port_monitor_connections|max_specials|max_user_text|maximum_width|minimum_size|mpd_host|mpd_password|mpd_port|music_player_interval|net_avg_samples|no_buffers|out_to_console|out_to_stderr|out_to_x|override_utf8_locale|overwrite_file|own_window|own_window_class|own_window_colour|own_window_hints|own_window_title|own_window_transparent|own_window_type|pad_percents|pop3|sensor_device|short_units|show_graph_range|show_graph_scale|stippled_borders|temperature_unit|template|template0|template1|template2|template3|template4|template5|template6|template7|template8|template9|text|text_buffer_size|top_cpu_separate|top_name_width|total_run_times|update_interval|uppercase|use_spacer|use_xft|xftalpha|xftfont)\>"
+color green "\<(alias|alignment|append_file|background|border_margin|border_width|color0|color1|color2|color3|color4|color5|color6|color7|color8|color9|colorN|cpu_avg_samples|default_bar_size|default_color|default_gauge_size|default_graph_size|default_outline_color|default_shade_color|diskio_avg_samples|display|double_buffer|draw_borders|draw_graph_borders|draw_outline|draw_shades|font|gap_x|gap_y|if_up_strictness|imap|imlib_cache_flush_interval|imlib_cache_size|lua_load|mail_spool|max_port_monitor_connections|max_specials|max_user_text|maximum_width|minimum_size|mpd_host|mpd_password|mpd_port|music_player_interval|net_avg_samples|no_buffers|out_to_console|out_to_stderr|out_to_x|override_utf8_locale|overwrite_file|own_window|own_window_class|own_window_colour|own_window_hints|own_window_title|own_window_transparent|own_window_type|pad_percents|pop3|sensor_device|short_units|show_graph_range|show_graph_scale|stippled_borders|temperature_unit|template|template0|template1|template2|template3|template4|template5|template6|template7|template8|template9|text|text_buffer_size|top_cpu_separate|top_name_width|total_run_times|update_interval|uppercase|use_spacer|use_xft|xftalpha|xftfont)\>"
 
 ## Configuration item constants
 color yellow "\<(above|below|bottom_left|bottom_right|bottom_middle|desktop|dock|no|none|normal|override|skip_pager|skip_taskbar|sticky|top_left|top_right|top_middle|middle_left|middle_right|undecorated|yes)\>"
 
 ## Variables
-color brightblue "\<(acpiacadapter|acpifan|acpitemp|addr|addrs|adt746xcpu|adt746xfan|alignc|alignr|apcupsd|apcupsd_cable|apcupsd_charge|apcupsd_lastxfer|apcupsd_linev|apcupsd_load|apcupsd_loadbar|apcupsd_loadgauge|apcupsd_loadgraph|apcupsd_model|apcupsd_name|apcupsd_status|apcupsd_temp|apcupsd_timeleft|apcupsd_upsmode|apm_adapter|apm_battery_life|apm_battery_time|audacious_bar|audacious_bitrate|audacious_channels|audacious_filename|audacious_frequency|audacious_length|audacious_length_seconds|audacious_main_volume|audacious_playlist_length|audacious_playlist_position|audacious_position|audacious_position_seconds|audacious_status|audacious_title|battery|battery_bar|battery_percent|battery_short|battery_time|bmpx_album|bmpx_artist|bmpx_bitrate|bmpx_title|bmpx_track|bmpx_uri|buffers|cached|color|color0|color1|color2|color3|color4|color5|color6|color7|color8|color9|combine|conky_build_arch|conky_build_date|conky_version|cpu|cpubar|cpugauge|cpugraph|disk_protect|diskio|diskio_read|diskio_write|diskiograph|diskiograph_read|diskiograph_write|downspeed|downspeedf|downspeedgraph|draft_mails|else|endif|entropy_avail|entropy_bar|entropy_poolsize|eval|eve|exec|execbar|execgauge|execgraph|execi|execibar|execigauge|execigraph|execp|execpi|flagged_mails|font|forwarded_mails|freq|freq_g|fs_bar|fs_bar_free|fs_free|fs_free_perc|fs_size|fs_type|fs_used|fs_used_perc|goto|gw_iface|gw_ip|hddtemp|head|hr|hwmon|i2c|i8k_ac_status|i8k_bios|i8k_buttons_status|i8k_cpu_temp|i8k_left_fan_rpm|i8k_left_fan_status|i8k_right_fan_rpm|i8k_right_fan_status|i8k_serial|i8k_version|ibm_brightness|ibm_fan|ibm_temps|ibm_volume|iconv_start|iconv_stop|if_empty|if_existing|if_gw|if_match|if_mixer_mute|if_mounted|if_mpd_playing|if_running|if_smapi_bat_installed|if_up|if_updatenr|if_xmms2_connected|image|imap_messages|imap_unseen|ioscheduler|kernel|laptop_mode|lines|loadavg|loadgraph|lua|lua_bar|lua_gauge|lua_graph|lua_parse|lua_read_parse|machine|mails|mboxscan|mem|membar|memeasyfree|memfree|memgauge|memgraph|memmax|memperc|mixer|mixerbar|mixerl|mixerlbar|mixerr|mixerrbar|moc_album|moc_artist|moc_bitrate|moc_curtime|moc_file|moc_rate|moc_song|moc_state|moc_timeleft|moc_title|moc_totaltime|monitor|monitor_number|mpd_album|mpd_artist|mpd_bar|mpd_bitrate|mpd_elapsed|mpd_file|mpd_length|mpd_name|mpd_percent|mpd_random|mpd_repeat|mpd_smart|mpd_status|mpd_title|mpd_track|mpd_vol|nameserver|new_mails|nodename|nvidia|obsd_product|obsd_sensors_fan|obsd_sensors_temp|obsd_sensors_volt|obsd_vendor|offset|outlinecolor|pb_battery|platform|pop3_unseen|pop3_used|pre_exec|processes|read_tcp|replied_mails|rss|running_processes|scroll|seen_mails|shadecolor|smapi|smapi_bat_bar|smapi_bat_perc|smapi_bat_power|smapi_bat_temp|sony_fanspeed|stippled_hr|swap|swapbar|swapmax|swapperc|sysname|tab|tail|tcp_portmon|template0|template1|template2|template3|template4|template5|template6|template7|template8|template9|texeci|time|top|top_mem|top_time|totaldown|totalup|trashed_mails|tztime|unflagged_mails|unforwarded_mails|unreplied_mails|unseen_mails|updates|upspeed|upspeedf|upspeedgraph|uptime|uptime_short|user_names|user_number|user_terms|user_times|utime|voffset|voltage_mv|voltage_v|wireless_ap|wireless_bitrate|wireless_essid|wireless_link_bar|wireless_link_qual|wireless_link_qual_max|wireless_link_qual_perc|wireless_mode|words|xmms2_album|xmms2_artist|xmms2_bar|xmms2_bitrate|xmms2_comment|xmms2_date|xmms2_duration|xmms2_elapsed|xmms2_genre|xmms2_id|xmms2_percent|xmms2_playlist|xmms2_size|xmms2_smart|xmms2_status|xmms2_timesplayed|xmms2_title|xmms2_tracknr|xmms2_url)\>"
+color brightblue "\<(acpiacadapter|acpifan|acpitemp|addr|addrs|adt746xcpu|adt746xfan|alignc|alignr|apcupsd|apcupsd_cable|apcupsd_charge|apcupsd_lastxfer|apcupsd_linev|apcupsd_load|apcupsd_loadbar|apcupsd_loadgauge|apcupsd_loadgraph|apcupsd_model|apcupsd_name|apcupsd_status|apcupsd_temp|apcupsd_timeleft|apcupsd_upsmode|apm_adapter|apm_battery_life|apm_battery_time|audacious_bar|audacious_bitrate|audacious_channels|audacious_filename|audacious_frequency|audacious_length|audacious_length_seconds|audacious_main_volume|audacious_playlist_length|audacious_playlist_position|audacious_position|audacious_position_seconds|audacious_status|audacious_title|battery|battery_bar|battery_percent|battery_short|battery_time|bmpx_album|bmpx_artist|bmpx_bitrate|bmpx_title|bmpx_track|bmpx_uri|buffers|cached|color|color0|color1|color2|color3|color4|color5|color6|color7|color8|color9|combine|conky_build_arch|conky_build_date|conky_version|cpu|cpubar|cpugauge|cpugraph|disk_protect|diskio|diskio_read|diskio_write|diskiograph|diskiograph_read|diskiograph_write|downspeed|downspeedf|downspeedgraph|draft_mails|else|endif|entropy_avail|entropy_bar|entropy_perc|entropy_poolsize|eval|eve|exec|execbar|execgauge|execgraph|execi|execibar|execigauge|execigraph|execp|execpi|flagged_mails|font|forwarded_mails|freq|freq_g|fs_bar|fs_bar_free|fs_free|fs_free_perc|fs_size|fs_type|fs_used|fs_used_perc|goto|gw_iface|gw_ip|hddtemp|head|hr|hwmon|i2c|i8k_ac_status|i8k_bios|i8k_buttons_status|i8k_cpu_temp|i8k_left_fan_rpm|i8k_left_fan_status|i8k_right_fan_rpm|i8k_right_fan_status|i8k_serial|i8k_version|ibm_brightness|ibm_fan|ibm_temps|ibm_volume|iconv_start|iconv_stop|if_empty|if_existing|if_gw|if_match|if_mixer_mute|if_mounted|if_mpd_playing|if_running|if_smapi_bat_installed|if_up|if_updatenr|if_xmms2_connected|image|imap_messages|imap_unseen|ioscheduler|kernel|laptop_mode|lines|loadavg|loadgraph|lua|lua_bar|lua_gauge|lua_graph|lua_parse|lua_read_parse|machine|mails|mboxscan|mem|membar|memeasyfree|memfree|memgauge|memgraph|memmax|memperc|mixer|mixerbar|mixerl|mixerlbar|mixerr|mixerrbar|moc_album|moc_artist|moc_bitrate|moc_curtime|moc_file|moc_rate|moc_song|moc_state|moc_timeleft|moc_title|moc_totaltime|monitor|monitor_number|mpd_album|mpd_artist|mpd_bar|mpd_bitrate|mpd_elapsed|mpd_file|mpd_length|mpd_name|mpd_percent|mpd_random|mpd_repeat|mpd_smart|mpd_status|mpd_title|mpd_track|mpd_vol|nameserver|new_mails|nodename|nvidia|obsd_product|obsd_sensors_fan|obsd_sensors_temp|obsd_sensors_volt|obsd_vendor|offset|outlinecolor|pb_battery|platform|pop3_unseen|pop3_used|pre_exec|processes|read_tcp|replied_mails|rss|running_processes|scroll|seen_mails|shadecolor|smapi|smapi_bat_bar|smapi_bat_perc|smapi_bat_power|smapi_bat_temp|sony_fanspeed|stippled_hr|swap|swapbar|swapmax|swapperc|sysname|tab|tail|tcp_portmon|template0|template1|template2|template3|template4|template5|template6|template7|template8|template9|texeci|time|top|top_mem|top_time|totaldown|totalup|trashed_mails|tztime|unflagged_mails|unforwarded_mails|unreplied_mails|unseen_mails|updates|upspeed|upspeedf|upspeedgraph|uptime|uptime_short|user_names|user_number|user_terms|user_times|utime|voffset|voltage_mv|voltage_v|wireless_ap|wireless_bitrate|wireless_essid|wireless_link_bar|wireless_link_qual|wireless_link_qual_max|wireless_link_qual_perc|wireless_mode|words|xmms2_album|xmms2_artist|xmms2_bar|xmms2_bitrate|xmms2_comment|xmms2_date|xmms2_duration|xmms2_elapsed|xmms2_genre|xmms2_id|xmms2_percent|xmms2_playlist|xmms2_size|xmms2_smart|xmms2_status|xmms2_timesplayed|xmms2_title|xmms2_tracknr|xmms2_url)\>"
 
 color brightblue "\$\{?[0-9A-Z_!@#$*?-]+\}?"
 color cyan "(\{|\}|\(|\)|\;|\]|\[|`|\\|\$|<|>|!|=|&|\|)"
index 9c94470..6897a96 100644 (file)
@@ -12,7 +12,7 @@ endif
 
 syn region ConkyrcComment start=/^\s*#/ end=/$/
 
-syn keyword ConkyrcSetting alias alignment append_file background border_margin border_width color0 color1 color2 color3 color4 color5 color6 color7 color8 color9 colorN cpu_avg_samples default_bar_size default_color default_gauge_size default_graph_size default_outline_color default_shade_color diskio_avg_samples display double_buffer draw_borders draw_graph_borders draw_outline draw_shades font gap_x gap_y if_up_strictness imap imlib_cache_size lua_load mail_spool max_port_monitor_connections max_specials max_user_text maximum_width minimum_size mpd_host mpd_password mpd_port music_player_interval net_avg_samples no_buffers out_to_console out_to_stderr out_to_x override_utf8_locale overwrite_file own_window own_window_class own_window_colour own_window_hints own_window_title own_window_transparent own_window_type pad_percents pop3 sensor_device short_units show_graph_range show_graph_scale stippled_borders temperature_unit template template0 template1 template2 template3 template4 template5 template6 template7 template8 template9 text text_buffer_size top_cpu_separate top_name_width total_run_times update_interval uppercase use_spacer use_xft xftalpha xftfont
+syn keyword ConkyrcSetting alias alignment append_file background border_margin border_width color0 color1 color2 color3 color4 color5 color6 color7 color8 color9 colorN cpu_avg_samples default_bar_size default_color default_gauge_size default_graph_size default_outline_color default_shade_color diskio_avg_samples display double_buffer draw_borders draw_graph_borders draw_outline draw_shades font gap_x gap_y if_up_strictness imap imlib_cache_flush_interval imlib_cache_size lua_load mail_spool max_port_monitor_connections max_specials max_user_text maximum_width minimum_size mpd_host mpd_password mpd_port music_player_interval net_avg_samples no_buffers out_to_console out_to_stderr out_to_x override_utf8_locale overwrite_file own_window own_window_class own_window_colour own_window_hints own_window_title own_window_transparent own_window_type pad_percents pop3 sensor_device short_units show_graph_range show_graph_scale stippled_borders temperature_unit template template0 template1 template2 template3 template4 template5 template6 template7 template8 template9 text text_buffer_size top_cpu_separate top_name_width total_run_times update_interval uppercase use_spacer use_xft xftalpha xftfont
 
 syn keyword ConkyrcConstant
                        \ above
@@ -49,7 +49,7 @@ syn region ConkyrcVar start=/\$\w\@=/ end=/\W\@=\|$/ contained contains=ConkyrcV
 
 syn match ConkyrcVarStuff /{\@<=/ms=s contained nextgroup=ConkyrcVarName
 
-syn keyword ConkyrcVarName contained nextgroup=ConkyrcNumber,ConkyrcColour skipwhite acpiacadapter acpifan acpitemp addr addrs adt746xcpu adt746xfan alignc alignr apcupsd apcupsd_cable apcupsd_charge apcupsd_lastxfer apcupsd_linev apcupsd_load apcupsd_loadbar apcupsd_loadgauge apcupsd_loadgraph apcupsd_model apcupsd_name apcupsd_status apcupsd_temp apcupsd_timeleft apcupsd_upsmode apm_adapter apm_battery_life apm_battery_time audacious_bar audacious_bitrate audacious_channels audacious_filename audacious_frequency audacious_length audacious_length_seconds audacious_main_volume audacious_playlist_length audacious_playlist_position audacious_position audacious_position_seconds audacious_status audacious_title battery battery_bar battery_percent battery_short battery_time bmpx_album bmpx_artist bmpx_bitrate bmpx_title bmpx_track bmpx_uri buffers cached color color0 color1 color2 color3 color4 color5 color6 color7 color8 color9 combine conky_build_arch conky_build_date conky_version cpu cpubar cpugauge cpugraph disk_protect diskio diskio_read diskio_write diskiograph diskiograph_read diskiograph_write downspeed downspeedf downspeedgraph draft_mails else endif entropy_avail entropy_bar entropy_poolsize eval eve exec execbar execgauge execgraph execi execibar execigauge execigraph execp execpi flagged_mails font forwarded_mails freq freq_g fs_bar fs_bar_free fs_free fs_free_perc fs_size fs_type fs_used fs_used_perc goto gw_iface gw_ip hddtemp head hr hwmon i2c i8k_ac_status i8k_bios i8k_buttons_status i8k_cpu_temp i8k_left_fan_rpm i8k_left_fan_status i8k_right_fan_rpm i8k_right_fan_status i8k_serial i8k_version ibm_brightness ibm_fan ibm_temps ibm_volume iconv_start iconv_stop if_empty if_existing if_gw if_match if_mixer_mute if_mounted if_mpd_playing if_running if_smapi_bat_installed if_up if_updatenr if_xmms2_connected image imap_messages imap_unseen ioscheduler kernel laptop_mode lines loadavg loadgraph lua lua_bar lua_gauge lua_graph lua_parse lua_read_parse machine mails mboxscan mem membar memeasyfree memfree memgauge memgraph memmax memperc mixer mixerbar mixerl mixerlbar mixerr mixerrbar moc_album moc_artist moc_bitrate moc_curtime moc_file moc_rate moc_song moc_state moc_timeleft moc_title moc_totaltime monitor monitor_number mpd_album mpd_artist mpd_bar mpd_bitrate mpd_elapsed mpd_file mpd_length mpd_name mpd_percent mpd_random mpd_repeat mpd_smart mpd_status mpd_title mpd_track mpd_vol nameserver new_mails nodename nvidia obsd_product obsd_sensors_fan obsd_sensors_temp obsd_sensors_volt obsd_vendor offset outlinecolor pb_battery platform pop3_unseen pop3_used pre_exec processes read_tcp replied_mails rss running_processes scroll seen_mails shadecolor smapi smapi_bat_bar smapi_bat_perc smapi_bat_power smapi_bat_temp sony_fanspeed stippled_hr swap swapbar swapmax swapperc sysname tab tail tcp_portmon template0 template1 template2 template3 template4 template5 template6 template7 template8 template9 texeci time top top_mem top_time totaldown totalup trashed_mails tztime unflagged_mails unforwarded_mails unreplied_mails unseen_mails updates upspeed upspeedf upspeedgraph uptime uptime_short user_names user_number user_terms user_times utime voffset voltage_mv voltage_v wireless_ap wireless_bitrate wireless_essid wireless_link_bar wireless_link_qual wireless_link_qual_max wireless_link_qual_perc wireless_mode words xmms2_album xmms2_artist xmms2_bar xmms2_bitrate xmms2_comment xmms2_date xmms2_duration xmms2_elapsed xmms2_genre xmms2_id xmms2_percent xmms2_playlist xmms2_size xmms2_smart xmms2_status xmms2_timesplayed xmms2_title xmms2_tracknr xmms2_url
+syn keyword ConkyrcVarName contained nextgroup=ConkyrcNumber,ConkyrcColour skipwhite acpiacadapter acpifan acpitemp addr addrs adt746xcpu adt746xfan alignc alignr apcupsd apcupsd_cable apcupsd_charge apcupsd_lastxfer apcupsd_linev apcupsd_load apcupsd_loadbar apcupsd_loadgauge apcupsd_loadgraph apcupsd_model apcupsd_name apcupsd_status apcupsd_temp apcupsd_timeleft apcupsd_upsmode apm_adapter apm_battery_life apm_battery_time audacious_bar audacious_bitrate audacious_channels audacious_filename audacious_frequency audacious_length audacious_length_seconds audacious_main_volume audacious_playlist_length audacious_playlist_position audacious_position audacious_position_seconds audacious_status audacious_title battery battery_bar battery_percent battery_short battery_time bmpx_album bmpx_artist bmpx_bitrate bmpx_title bmpx_track bmpx_uri buffers cached color color0 color1 color2 color3 color4 color5 color6 color7 color8 color9 combine conky_build_arch conky_build_date conky_version cpu cpubar cpugauge cpugraph disk_protect diskio diskio_read diskio_write diskiograph diskiograph_read diskiograph_write downspeed downspeedf downspeedgraph draft_mails else endif entropy_avail entropy_bar entropy_perc entropy_poolsize eval eve exec execbar execgauge execgraph execi execibar execigauge execigraph execp execpi flagged_mails font forwarded_mails freq freq_g fs_bar fs_bar_free fs_free fs_free_perc fs_size fs_type fs_used fs_used_perc goto gw_iface gw_ip hddtemp head hr hwmon i2c i8k_ac_status i8k_bios i8k_buttons_status i8k_cpu_temp i8k_left_fan_rpm i8k_left_fan_status i8k_right_fan_rpm i8k_right_fan_status i8k_serial i8k_version ibm_brightness ibm_fan ibm_temps ibm_volume iconv_start iconv_stop if_empty if_existing if_gw if_match if_mixer_mute if_mounted if_mpd_playing if_running if_smapi_bat_installed if_up if_updatenr if_xmms2_connected image imap_messages imap_unseen ioscheduler kernel laptop_mode lines loadavg loadgraph lua lua_bar lua_gauge lua_graph lua_parse lua_read_parse machine mails mboxscan mem membar memeasyfree memfree memgauge memgraph memmax memperc mixer mixerbar mixerl mixerlbar mixerr mixerrbar moc_album moc_artist moc_bitrate moc_curtime moc_file moc_rate moc_song moc_state moc_timeleft moc_title moc_totaltime monitor monitor_number mpd_album mpd_artist mpd_bar mpd_bitrate mpd_elapsed mpd_file mpd_length mpd_name mpd_percent mpd_random mpd_repeat mpd_smart mpd_status mpd_title mpd_track mpd_vol nameserver new_mails nodename nvidia obsd_product obsd_sensors_fan obsd_sensors_temp obsd_sensors_volt obsd_vendor offset outlinecolor pb_battery platform pop3_unseen pop3_used pre_exec processes read_tcp replied_mails rss running_processes scroll seen_mails shadecolor smapi smapi_bat_bar smapi_bat_perc smapi_bat_power smapi_bat_temp sony_fanspeed stippled_hr swap swapbar swapmax swapperc sysname tab tail tcp_portmon template0 template1 template2 template3 template4 template5 template6 template7 template8 template9 texeci time top top_mem top_time totaldown totalup trashed_mails tztime unflagged_mails unforwarded_mails unreplied_mails unseen_mails updates upspeed upspeedf upspeedgraph uptime uptime_short user_names user_number user_terms user_times utime voffset voltage_mv voltage_v wireless_ap wireless_bitrate wireless_essid wireless_link_bar wireless_link_qual wireless_link_qual_max wireless_link_qual_perc wireless_mode words xmms2_album xmms2_artist xmms2_bar xmms2_bitrate xmms2_comment xmms2_date xmms2_duration xmms2_elapsed xmms2_genre xmms2_id xmms2_percent xmms2_playlist xmms2_size xmms2_smart xmms2_status xmms2_timesplayed xmms2_title xmms2_tracknr xmms2_url
 
 hi def link ConkyrcComment   Comment
 hi def link ConkyrcSetting   Keyword