<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>64 Bit Jungle &#187; Conky</title>
	<atom:link href="http://www.64bitjungle.com/category/conky/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.64bitjungle.com</link>
	<description>Linux and Programming Tips and Tutorials, Technology and Rants from the Jungle</description>
	<lastBuildDate>Tue, 16 Feb 2010 13:33:57 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Conky: Dual Core Processors in .conkyrc</title>
		<link>http://www.64bitjungle.com/tech/conky-dual-core-processors-in-conkyrc/</link>
		<comments>http://www.64bitjungle.com/tech/conky-dual-core-processors-in-conkyrc/#comments</comments>
		<pubDate>Thu, 27 Mar 2008 07:14:20 +0000</pubDate>
		<dc:creator>Hodge</dc:creator>
				<category><![CDATA[Conky]]></category>
		<category><![CDATA[Programming]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[Ubuntu]]></category>
		<category><![CDATA[64 bit]]></category>
		<category><![CDATA[AMD]]></category>
		<category><![CDATA[conkyrc]]></category>
		<category><![CDATA[Dual Core]]></category>
		<category><![CDATA[HowTo]]></category>

		<guid isPermaLink="false">http://www.64bitjungle.com/tech/conky-dual-core-processors-in-conkyrc/</guid>
		<description><![CDATA[OK, this is a bit of a cheeky post, since I&#8217;m merely extending a previous post &#8220;Conky on Ubuntu 64 Bit &#8211; .conkyrc&#8221; &#8211; or elaborating on it &#8211; to clarify setting up .conkyrc for Dual Core Processors &#8211; specifically for my AMD Turion 64 X2. I&#8217;ve had a few requests specifically about this, so [...]


No related posts.

Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.]]></description>
			<content:encoded><![CDATA[<p>OK, this is a bit of a cheeky post, since I&#8217;m merely extending a previous post &#8220;<a href="http://www.64bitjungle.com/tech/conky-on-ubuntu-64-bit-conkyrc/">Conky on Ubuntu 64 Bit &#8211; .conkyrc</a>&#8221; &#8211; or elaborating on it &#8211; to clarify setting up .conkyrc for Dual Core Processors &#8211; specifically for my AMD Turion 64 X2. I&#8217;ve had a few requests specifically about this, so here goes&#8230;</p>
<p>Now, the part of my .conkyrc file that deals with my Dual Core looks like this:</p>
<p>
<code>${color #42AE4A}Usage (Avg):${color #42AE4A} ${freq_dyn_g}Ghz ${color lightgrey}${cpu cpu0}% ${alignr}${color #42AE4A}${cpubar cpu0 5,80}<br />
${color #42AE4A}Usage (Core 1):${color #42AE4A} ${freq_dyn_g cpu1}Ghz ${color lightgrey}${cpu cpu1}% ${alignr}${color #42AE4A}${cpubar cpu1 5,80}<br />
${color #42AE4A}Usage (Core 2):${color #42AE4A} ${freq_dyn_g cpu2}Ghz ${color lightgrey}${cpu cpu2}% ${alignr}${color #42AE4A}${cpubar cpu2 5,80}<br />
${color #42AE4A}Average<br />
${cpugraph cpu0 42AE4A eeeeee}<br />
${color #42AE4A}Core 1 $alignr Core 2<br />
${color #42AE4A}${cpugraph cpu1 25,120 42AE4A eeeeee} ${color #42AE4A} $alignr${color #42AE4A}${cpugraph cpu2 25,120 42AE4A eeeeee}<br />
${color #42AE4A}Processes:${color lightgrey} $processes  ${color #42AE4A}Run:${color lightgrey} $running_processes ${color #42AE4A}CPU Temp:${color lightgrey} ${execi 1100 cat /proc/acpi/thermal_zone/THRM/temperature | grep -o "[0-9]* C"}<br />
${color #42AE4A}Core 1 Temp: ${color lightgrey}${execi 8 sensors | grep -A 1 'Core0' | cut -c13-16 | sed '/^$/d'} C ${color #42AE4A}Core 2 Temp: ${color lightgrey}${execi 8 sensors | grep -A 1 'Core1' | cut -c13-16 | sed '/^$/d'} C<br />
</code></p>
<p>This outputs the following to Conky:</p>
<p style="text-align: center"><img src="http://www.64bitjungle.com/wp-content/uploads/2008/03/conky_dual_core.png" alt="Conky Dual Core CPU Output" /></p>
<p>Stripping out all the formatting, and colouring gives this:</p>
<p><code>Usage (Avg): ${freq_dyn_g}Ghz ${cpu cpu0}% ${alignr}${cpubar cpu0 5,80}<br />
Usage (Core 1): ${freq_dyn_g cpu1}Ghz ${cpu cpu1}% ${alignr}${cpubar cpu1 5,80}<br />
Usage (Core 2): ${freq_dyn_g cpu2}Ghz ${cpu cpu2}% ${alignr}${cpubar cpu2 5,80}<br />
Average<br />
${cpugraph cpu0 42AE4A eeeeee}<br />
Core 1 $alignr Core 2<br />
${cpugraph cpu1 25,120 42AE4A eeeeee}  $alignr${cpugraph cpu2 25,120 42AE4A eeeeee}<br />
Processes: $processes  Run: $running_processes CPU Temp: ${execi 1100  cat /proc/acpi/thermal_zone/THRM/temperature | grep -o "[0-9]* C"}<br />
Core 1 Temp: ${execi 8 sensors | grep -A 1 'Core0' | cut -c13-16 | sed '/^$/d'} C Core 2 Temp: ${execi 8 sensors | grep -A 1 'Core1' | cut -c13-16 | sed '/^$/d'} C<br />
</code></p>
<p>Now the walk through. The first line, <span style="font-size: 120%; font-family: monospace;">Usage (Avg): ${freq_dyn_g}Ghz ${cpu cpu0}% ${alignr}${cpubar cpu0 5,80}</span> gives the Average clock speed usage for both cores &#8211; <span style="font-size: 120%; font-family: monospace;">${freq_dyn_g}</span> with no parameters, will output the current clock speed usage for the CPU as a whole. Passing <span style="font-size: 120%; font-family: monospace;">cpu0</span> as a parameter to <span style="font-size: 120%; font-family: monospace;">${cpu}</span> will output the overall CPU % used, and similarly, passing <span style="font-size: 120%; font-family: monospace;">cpu0</span> to <span style="font-size: 120%; font-family: monospace;">${cpubar}</span> will draw the overall % used graph (the parameters <span style="font-size: 120%; font-family: monospace;">5,80</span> are just for the height and width.</p>
<p>Now, by passing <span style="font-size: 120%; font-family: monospace;">cpu1</span> or <span style="font-size: 120%; font-family: monospace;">cpu2</span> to <span style="font-size: 120%; font-family: monospace;">${freq_dny_g}</span>, <span style="font-size: 120%; font-family: monospace;">${cpu}</span> and <span style="font-size: 120%; font-family: monospace;">${cpubar}</span> Conky will output the same data but for each individual core. This can be extended by passing <span style="font-size: 120%; font-family: monospace;">cpu<em>N</em></span> where <em><span style="font-size: 120%; font-family: monospace;">N</span></em> is the core number, for quad core etc. this could be <span style="font-size: 120%; font-family: monospace;">cpu<em>3 </em></span><span style="font-size: 120%; font-family: monospace;">cpu<em>4</em></span>. So, the first three lines:</p>
<p><code>Usage (Avg): ${freq_dyn_g}Ghz ${cpu cpu0}% ${alignr}${cpubar cpu0 5,80}<br />
Usage (Core 1): ${freq_dyn_g cpu1}Ghz ${cpu cpu1}% ${alignr}${cpubar cpu1 5,80}<br />
Usage (Core 2): ${freq_dyn_g cpu2}Ghz ${cpu cpu2}% ${alignr}${cpubar cpu2 5,80}<br />
</code></p>
<p>Outputs:</p>
<p style="text-align: center"><img src="http://www.64bitjungle.com/wp-content/uploads/2008/03/conky_dual_core_usage.png" alt="Conky Dual Core CPU Usage" /></p>
<p>The next lines of the file deal with throughput/usage graphs, <span style="font-size: 120%; font-family: monospace;">${cpugraph cpu0 42AE4A eeeeee}</span> being the average for the CPU as a whole, since <span style="font-size: 120%; font-family: monospace;">cpu0</span> is passed as a parameter. <span style="font-size: 120%; font-family: monospace;">42AE4A</span> and <span style="font-size: 120%; font-family: monospace;">eeeeee</span> are just colour parameters to create a gradient overlay on the graph. As before, passing <span style="font-size: 120%; font-family: monospace;">cpu1</span> and <span style="font-size: 120%; font-family: monospace;">cpu2</span> will draw the graphs for the individual cores. The additional parameters, <span style="font-size: 120%; font-family: monospace;">25,120</span> are again just height and width parameters.</p>
<p>So, the lines</p>
<p><code>Average<br />
${cpugraph cpu0 42AE4A eeeeee}<br />
Core 1 $alignr Core 2<br />
${cpugraph cpu1 25,120 42AE4A eeeeee}  $alignr${cpugraph cpu2 25,120 42AE4A eeeeee}<br />
</code></p>
<p>Will output:</p>
<p style="text-align: center"><img src="http://www.64bitjungle.com/wp-content/uploads/2008/03/conky_dual_core_throuput.png" alt="Conky Dual Core CPU Throughput Graphs" /></p>
<p>Finally, I have a bunch of other data output, such as total processes, processes running, and CPU temperature. The first line outputs general information about the CPU as a whole:</p>
<p><code>Processes: $processes  Run: $running_processes CPU Temp: ${execi 1100  cat /proc/acpi/thermal_zone/THRM/temperature | grep -o "[0-9]* C"}<br />
</code></p>
<p><span style="font-size: 120%; font-family: monospace;">$processes</span> outputs the total number of processes, while <span style="font-size: 120%; font-family: monospace;">$running_processes</span> outputs the number of currently running processes on the CPU. To output the overall temperature, I had to call the <span style="font-size: 120%; font-family: monospace;">execi</span> function, and do some tweaking of the output to get the number, so <span style="font-size: 120%; font-family: monospace;">${execi 1100  cat /proc/acpi/thermal_zone/THRM/temperature | grep -o &#8220;[0-9]* C&#8221;}</span> basically outputs <span style="font-size: 120%; font-family: monospace;">/proc/acpi/thermal_zone/THRM/temperature</span>, pipes the output through <span style="font-size: 120%; font-family: monospace;">grep</span> which searches for the regular expression <span style="font-size: 120%; font-family: monospace;">&#8216;[0-9]* C&#8217;</span> (which matches a string of numbers followed by a space followed by an upper-case C), and thus outputs just the temperature value &#8211; e.g. &#8220;45 C&#8221;.</p>
<p>To output the temperature of each Core, I once again run the <span style="font-size: 120%; font-family: monospace;">execi</span> function on a couple of piped shell commands, and pipe the output through other shell commands to get the number I want:</p>
<p><code>Core 1 Temp: ${execi 8 sensors | grep -A 1 'Core0' | cut -c13-16 | sed '/^$/d'} C Core 2 Temp: ${execi 8 sensors | grep -A 1 'Core1' | cut -c13-16 | sed '/^$/d'} C<br />
</code></p>
<p>Basically what is happening here is I&#8217;m running the shell command <span style="font-size: 120%; font-family: monospace;">sensors</span>, piping to <span style="font-size: 120%; font-family: monospace;">grep</span> to search for the string &#8220;<span style="font-size: 120%; font-family: monospace;">Core0</span>&#8220;, piing this output to <span style="font-size: 120%; font-family: monospace;">cut</span> to trim it, and finally editing out some of the crap I don&#8217;t want by piping to <span style="font-size: 120%; font-family: monospace;">sed</span>. This is just repeated for <span style="font-size: 120%; font-family: monospace;">Core1</span>. You may need to customise the output from sensors, by greping, cutting and seding different stuff &#8211; experiment by opening a terminal, and running sensors, then just pipe it through the <span style="font-size: 120%; font-family: monospace;">grep</span>, <span style="font-size: 120%; font-family: monospace;">cut</span>, and <span style="font-size: 120%; font-family: monospace;">sed</span> commands until you get the data you want.</p>
<p>So, the final lines together:</p>
<p><code>Processes: $processes  Run: $running_processes CPU Temp: ${execi 1100  cat /proc/acpi/thermal_zone/THRM/temperature | grep -o "[0-9]* C"}<br />
Core 1 Temp: ${execi 8 sensors | grep -A 1 'Core0' | cut -c13-16 | sed '/^$/d'} C Core 2 Temp: ${execi 8 sensors | grep -A 1 'Core1' | cut -c13-16 | sed '/^$/d'} C<br />
</code></p>
<p>Output:</p>
<p style="text-align: center"><img src="http://www.64bitjungle.com/wp-content/uploads/2008/03/conky_dual_core_misc.png" alt="Conky Dual Core CPU Misc Info" /></p>
<p>Of course, this should work on any Linux distro with Conky installed.</p>
<p>Hope that helps someone.</p>
<script type="text/javascript" class="owbutton" src="http://onlywire.com/button" title="Conky: Dual Core Processors in .conkyrc" url="http://www.64bitjungle.com/tech/conky-dual-core-processors-in-conkyrc/"></script>

<!-- Begin SexyBookmarks Menu Code -->
<div class="sexy-bookmarks sexy-bookmarks-expand sexy-bookmarks-bg-caring-old">
<ul class="socials">
		<li class="sexy-scriptstyle">
			<a href="http://scriptandstyle.com/submit?url=http://www.64bitjungle.com/tech/conky-dual-core-processors-in-conkyrc/&amp;title=Conky%3A+Dual+Core+Processors+in+.conkyrc" rel="nofollow" class="external" title="Submit this to Script &amp; Style">Submit this to Script &amp; Style</a>
		</li>
		<li class="sexy-blinklist">
			<a href="http://www.blinklist.com/index.php?Action=Blink/addblink.php&amp;Url=http://www.64bitjungle.com/tech/conky-dual-core-processors-in-conkyrc/&amp;Title=Conky%3A+Dual+Core+Processors+in+.conkyrc" rel="nofollow" class="external" title="Share this on Blinklist">Share this on Blinklist</a>
		</li>
		<li class="sexy-delicious">
			<a href="http://del.icio.us/post?url=http://www.64bitjungle.com/tech/conky-dual-core-processors-in-conkyrc/&amp;title=Conky%3A+Dual+Core+Processors+in+.conkyrc" rel="nofollow" class="external" title="Share this on del.icio.us">Share this on del.icio.us</a>
		</li>
		<li class="sexy-digg">
			<a href="http://digg.com/submit?phase=2&amp;url=http://www.64bitjungle.com/tech/conky-dual-core-processors-in-conkyrc/&amp;title=Conky%3A+Dual+Core+Processors+in+.conkyrc" rel="nofollow" class="external" title="Digg this!">Digg this!</a>
		</li>
		<li class="sexy-diigo">
			<a href="http://www.diigo.com/post?url=http://www.64bitjungle.com/tech/conky-dual-core-processors-in-conkyrc/&amp;title=Conky%3A+Dual+Core+Processors+in+.conkyrc&amp;desc=OK%2C%20this%20is%20a%20bit%20of%20a%20cheeky%20post%2C%20since%20I%27m%20merely%20extending%20a%20previous%20post%20%22Conky%20on%20Ubuntu%2064%20Bit%20-%20.conkyrc%22%20-%20or%20elaborating%20on%20it%20-%20to%20clarify%20setting%20up%20.conkyrc%20for%20Dual%20Core%20Processors%20-%20specifically%20for%20my%20AMD%20Turion%2064%20X2.%20I%27ve%20had%20a%20few%20requests%20specifically%20about%20this%2C%20so%20here%20goes..." rel="nofollow" class="external" title="Post this on Diigo">Post this on Diigo</a>
		</li>
		<li class="sexy-reddit">
			<a href="http://reddit.com/submit?url=http://www.64bitjungle.com/tech/conky-dual-core-processors-in-conkyrc/&amp;title=Conky%3A+Dual+Core+Processors+in+.conkyrc" rel="nofollow" class="external" title="Share this on Reddit">Share this on Reddit</a>
		</li>
		<li class="sexy-yahoobuzz">
			<a href="http://buzz.yahoo.com/submit/?submitUrl=http://www.64bitjungle.com/tech/conky-dual-core-processors-in-conkyrc/&amp;submitHeadline=Conky%3A+Dual+Core+Processors+in+.conkyrc&amp;submitSummary=OK%2C%20this%20is%20a%20bit%20of%20a%20cheeky%20post%2C%20since%20I%27m%20merely%20extending%20a%20previous%20post%20%22Conky%20on%20Ubuntu%2064%20Bit%20-%20.conkyrc%22%20-%20or%20elaborating%20on%20it%20-%20to%20clarify%20setting%20up%20.conkyrc%20for%20Dual%20Core%20Processors%20-%20specifically%20for%20my%20AMD%20Turion%2064%20X2.%20I%27ve%20had%20a%20few%20requests%20specifically%20about%20this%2C%20so%20here%20goes...&amp;submitCategory=science&amp;submitAssetType=text" rel="nofollow" class="external" title="Buzz up!">Buzz up!</a>
		</li>
		<li class="sexy-stumbleupon">
			<a href="http://www.stumbleupon.com/submit?url=http://www.64bitjungle.com/tech/conky-dual-core-processors-in-conkyrc/&amp;title=Conky%3A+Dual+Core+Processors+in+.conkyrc" rel="nofollow" class="external" title="Stumble upon something good? Share it on StumbleUpon">Stumble upon something good? Share it on StumbleUpon</a>
		</li>
		<li class="sexy-technorati">
			<a href="http://technorati.com/faves?add=http://www.64bitjungle.com/tech/conky-dual-core-processors-in-conkyrc/" rel="nofollow" class="external" title="Share this on Technorati">Share this on Technorati</a>
		</li>
		<li class="sexy-mixx">
			<a href="http://www.mixx.com/submit?page_url=http://www.64bitjungle.com/tech/conky-dual-core-processors-in-conkyrc/&amp;title=Conky%3A+Dual+Core+Processors+in+.conkyrc" rel="nofollow" class="external" title="Share this on Mixx">Share this on Mixx</a>
		</li>
		<li class="sexy-myspace">
			<a href="http://www.myspace.com/Modules/PostTo/Pages/?u=http://www.64bitjungle.com/tech/conky-dual-core-processors-in-conkyrc/&amp;t=Conky%3A+Dual+Core+Processors+in+.conkyrc" rel="nofollow" class="external" title="Post this to MySpace">Post this to MySpace</a>
		</li>
		<li class="sexy-designfloat">
			<a href="http://www.designfloat.com/submit.php?url=http://www.64bitjungle.com/tech/conky-dual-core-processors-in-conkyrc/&amp;title=Conky%3A+Dual+Core+Processors+in+.conkyrc" rel="nofollow" class="external" title="Submit this to DesignFloat">Submit this to DesignFloat</a>
		</li>
		<li class="sexy-facebook">
			<a href="http://www.facebook.com/share.php?v=4&amp;src=bm&amp;u=http://www.64bitjungle.com/tech/conky-dual-core-processors-in-conkyrc/&amp;t=Conky%3A+Dual+Core+Processors+in+.conkyrc" rel="nofollow" class="external" title="Share this on Facebook">Share this on Facebook</a>
		</li>
		<li class="sexy-twitter">
			<a href="http://twitter.com/home?status=Conky%3A+Dual+Core+Processors+in+.conkyrc+-+http://tinyurl.com/5ruuvb+(via+@64bitjungle)" rel="nofollow" class="external" title="Tweet This!">Tweet This!</a>
		</li>
		<li class="sexy-mail">
			<a href="mailto:?subject=%22Conky%3A%20Dual%20Core%20Processors%20in%20.conkyrc%22&amp;body=I%20thought%20this%20article%20might%20interest%20you.%0A%0A%22OK%2C%20this%20is%20a%20bit%20of%20a%20cheeky%20post%2C%20since%20I%27m%20merely%20extending%20a%20previous%20post%20%22Conky%20on%20Ubuntu%2064%20Bit%20-%20.conkyrc%22%20-%20or%20elaborating%20on%20it%20-%20to%20clarify%20setting%20up%20.conkyrc%20for%20Dual%20Core%20Processors%20-%20specifically%20for%20my%20AMD%20Turion%2064%20X2.%20I%27ve%20had%20a%20few%20requests%20specifically%20about%20this%2C%20so%20here%20goes...%22%0A%0AYou%20can%20read%20the%20full%20article%20here%3A%20http://www.64bitjungle.com/tech/conky-dual-core-processors-in-conkyrc/" rel="nofollow" class="external" title="Email this to a friend?">Email this to a friend?</a>
		</li>
		<li class="sexy-tomuse">
			<a href="mailto:tips@tomuse.com?subject=New%20tip%20submitted%20via%20the%20SexyBookmarks%20Plugin!&amp;body=I%20would%20like%20to%20submit%20this%20article%3A%20%22Conky%3A%20Dual%20Core%20Processors%20in%20.conkyrc%22%20for%20possible%20inclusion%20on%20ToMuse.%0A%0A%22OK%2C%20this%20is%20a%20bit%20of%20a%20cheeky%20post%2C%20since%20I%27m%20merely%20extending%20a%20previous%20post%20%22Conky%20on%20Ubuntu%2064%20Bit%20-%20.conkyrc%22%20-%20or%20elaborating%20on%20it%20-%20to%20clarify%20setting%20up%20.conkyrc%20for%20Dual%20Core%20Processors%20-%20specifically%20for%20my%20AMD%20Turion%2064%20X2.%20I%27ve%20had%20a%20few%20requests%20specifically%20about%20this%2C%20so%20here%20goes...%22%0A%0AYou%20can%20read%20the%20full%20article%20here%3A%20http://www.64bitjungle.com/tech/conky-dual-core-processors-in-conkyrc/" rel="nofollow" class="external" title="Suggest this article to ToMuse">Suggest this article to ToMuse</a>
		</li>
		<li class="sexy-comfeed">
			<a href="http://www.64bitjungle.com/tech/conky-dual-core-processors-in-conkyrc/feed" rel="nofollow" class="external" title="Subscribe to the comments for this post?">Subscribe to the comments for this post?</a>
		</li>
		<li class="sexy-linkedin">
			<a href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http://www.64bitjungle.com/tech/conky-dual-core-processors-in-conkyrc/&amp;title=Conky%3A+Dual+Core+Processors+in+.conkyrc&amp;summary=OK%2C%20this%20is%20a%20bit%20of%20a%20cheeky%20post%2C%20since%20I%27m%20merely%20extending%20a%20previous%20post%20%22Conky%20on%20Ubuntu%2064%20Bit%20-%20.conkyrc%22%20-%20or%20elaborating%20on%20it%20-%20to%20clarify%20setting%20up%20.conkyrc%20for%20Dual%20Core%20Processors%20-%20specifically%20for%20my%20AMD%20Turion%2064%20X2.%20I%27ve%20had%20a%20few%20requests%20specifically%20about%20this%2C%20so%20here%20goes...&amp;source=64 Bit Jungle" rel="nofollow" class="external" title="Share this on Linkedin">Share this on Linkedin</a>
		</li>
		<li class="sexy-newsvine">
			<a href="http://www.newsvine.com/_tools/seed&amp;save?u=http://www.64bitjungle.com/tech/conky-dual-core-processors-in-conkyrc/&amp;h=Conky%3A+Dual+Core+Processors+in+.conkyrc" rel="nofollow" class="external" title="Seed this on Newsvine">Seed this on Newsvine</a>
		</li>
		<li class="sexy-devmarks">
			<a href="http://devmarks.com/index.php?posttext=OK%2C%20this%20is%20a%20bit%20of%20a%20cheeky%20post%2C%20since%20I%27m%20merely%20extending%20a%20previous%20post%20%22Conky%20on%20Ubuntu%2064%20Bit%20-%20.conkyrc%22%20-%20or%20elaborating%20on%20it%20-%20to%20clarify%20setting%20up%20.conkyrc%20for%20Dual%20Core%20Processors%20-%20specifically%20for%20my%20AMD%20Turion%2064%20X2.%20I%27ve%20had%20a%20few%20requests%20specifically%20about%20this%2C%20so%20here%20goes...&amp;posturl=http://www.64bitjungle.com/tech/conky-dual-core-processors-in-conkyrc/&amp;posttitle=Conky%3A+Dual+Core+Processors+in+.conkyrc" rel="nofollow" class="external" title="Share this on Devmarks">Share this on Devmarks</a>
		</li>
		<li class="sexy-google">
			<a href="http://www.google.com/bookmarks/mark?op=add&amp;bkmk=http://www.64bitjungle.com/tech/conky-dual-core-processors-in-conkyrc/&amp;title=Conky%3A+Dual+Core+Processors+in+.conkyrc" rel="nofollow" class="external" title="Add this to Google Bookmarks">Add this to Google Bookmarks</a>
		</li>
		<li class="sexy-misterwong">
			<a href="http://www.mister-wong.com/addurl/?bm_url=http://www.64bitjungle.com/tech/conky-dual-core-processors-in-conkyrc/&amp;bm_description=Conky%3A+Dual+Core+Processors+in+.conkyrc&amp;plugin=sexybookmarks" rel="nofollow" class="external" title="Add this to Mister Wong">Add this to Mister Wong</a>
		</li>
		<li class="sexy-izeby">
			<a href="http://izeby.com/submit.php?url=http://www.64bitjungle.com/tech/conky-dual-core-processors-in-conkyrc/" rel="nofollow" class="external" title="Add this to Izeby">Add this to Izeby</a>
		</li>
		<li class="sexy-tipd">
			<a href="http://tipd.com/submit.php?url=http://www.64bitjungle.com/tech/conky-dual-core-processors-in-conkyrc/" rel="nofollow" class="external" title="Share this on Tipd">Share this on Tipd</a>
		</li>
		<li class="sexy-pfbuzz">
			<a href="http://pfbuzz.com/submit?url=http://www.64bitjungle.com/tech/conky-dual-core-processors-in-conkyrc/&amp;title=Conky%3A+Dual+Core+Processors+in+.conkyrc" rel="nofollow" class="external" title="Share this on PFBuzz">Share this on PFBuzz</a>
		</li>
		<li class="sexy-friendfeed">
			<a href="http://www.friendfeed.com/share?title=Conky%3A+Dual+Core+Processors+in+.conkyrc&amp;link=http://www.64bitjungle.com/tech/conky-dual-core-processors-in-conkyrc/" rel="nofollow" class="external" title="Share this on FriendFeed">Share this on FriendFeed</a>
		</li>
		<li class="sexy-blogmarks">
			<a href="http://blogmarks.net/my/new.php?mini=1&amp;simple=1&amp;url=http://www.64bitjungle.com/tech/conky-dual-core-processors-in-conkyrc/&amp;title=Conky%3A+Dual+Core+Processors+in+.conkyrc" rel="nofollow" class="external" title="Mark this on BlogMarks">Mark this on BlogMarks</a>
		</li>
		<li class="sexy-twittley">
			<a href="http://twittley.com/submit/?title=Conky%3A+Dual+Core+Processors+in+.conkyrc&amp;url=http%3A%2F%2Fwww.64bitjungle.com%2Ftech%2Fconky-dual-core-processors-in-conkyrc%2F&amp;desc=OK%2C%20this%20is%20a%20bit%20of%20a%20cheeky%20post%2C%20since%20I%27m%20merely%20extending%20a%20previous%20post%20%22Conky%20on%20Ubuntu%2064%20Bit%20-%20.conkyrc%22%20-%20or%20elaborating%20on%20it%20-%20to%20clarify%20setting%20up%20.conkyrc%20for%20Dual%20Core%20Processors%20-%20specifically%20for%20my%20AMD%20Turion%2064%20X2.%20I%27ve%20had%20a%20few%20requests%20specifically%20about%20this%2C%20so%20here%20goes...&amp;pcat=Technology&amp;tags=" rel="nofollow" class="external" title="Submit this to Twittley">Submit this to Twittley</a>
		</li>
		<li class="sexy-fwisp">
			<a href="http://fwisp.com/submit?url=http://www.64bitjungle.com/tech/conky-dual-core-processors-in-conkyrc/" rel="nofollow" class="external" title="Share this on Fwisp">Share this on Fwisp</a>
		</li>
		<li class="sexy-designmoo">
			<a href="http://designmoo.com/submit?url=http://www.64bitjungle.com/tech/conky-dual-core-processors-in-conkyrc/&amp;title=Conky%3A+Dual+Core+Processors+in+.conkyrc&amp;body=OK%2C%20this%20is%20a%20bit%20of%20a%20cheeky%20post%2C%20since%20I%27m%20merely%20extending%20a%20previous%20post%20%22Conky%20on%20Ubuntu%2064%20Bit%20-%20.conkyrc%22%20-%20or%20elaborating%20on%20it%20-%20to%20clarify%20setting%20up%20.conkyrc%20for%20Dual%20Core%20Processors%20-%20specifically%20for%20my%20AMD%20Turion%2064%20X2.%20I%27ve%20had%20a%20few%20requests%20specifically%20about%20this%2C%20so%20here%20goes..." rel="nofollow" class="external" title="Moo this on DesignMoo!">Moo this on DesignMoo!</a>
		</li>
		<li class="sexy-bobrdobr">
			<a href="http://bobrdobr.ru/addext.html?url=http://www.64bitjungle.com/tech/conky-dual-core-processors-in-conkyrc/&amp;title=Conky%3A+Dual+Core+Processors+in+.conkyrc" rel="nofollow" class="external" title="Share this on BobrDobr">Share this on BobrDobr</a>
		</li>
		<li class="sexy-yandex">
			<a href="http://zakladki.yandex.ru/userarea/links/addfromfav.asp?bAddLink_x=1&amp;lurl=http://www.64bitjungle.com/tech/conky-dual-core-processors-in-conkyrc/&amp;lname=Conky%3A+Dual+Core+Processors+in+.conkyrc" rel="nofollow" class="external" title="Add this to Yandex.Bookmarks">Add this to Yandex.Bookmarks</a>
		</li>
		<li class="sexy-memoryru">
			<a href="http://memori.ru/link/?sm=1&amp;u_data[url]=http://www.64bitjungle.com/tech/conky-dual-core-processors-in-conkyrc/&amp;u_data[name]=Conky%3A+Dual+Core+Processors+in+.conkyrc" rel="nofollow" class="external" title="Add this to Memory.ru">Add this to Memory.ru</a>
		</li>
		<li class="sexy-100zakladok">
			<a href="http://www.100zakladok.ru/save/?bmurl=http://www.64bitjungle.com/tech/conky-dual-core-processors-in-conkyrc/&amp;bmtitle=Conky%3A+Dual+Core+Processors+in+.conkyrc" rel="nofollow" class="external" title="Add this to 100 bookmarks">Add this to 100 bookmarks</a>
		</li>
		<li class="sexy-moemesto">
			<a href="http://moemesto.ru/post.php?url=http://www.64bitjungle.com/tech/conky-dual-core-processors-in-conkyrc/&amp;title=Conky%3A+Dual+Core+Processors+in+.conkyrc" rel="nofollow" class="external" title="Add this to MyPlace">Add this to MyPlace</a>
		</li>
		<li class="sexy-hackernews">
			<a href="http://news.ycombinator.com/submitlink?u=http://www.64bitjungle.com/tech/conky-dual-core-processors-in-conkyrc/&amp;t=Conky%3A+Dual+Core+Processors+in+.conkyrc" rel="nofollow" class="external" title="Submit this to Hacker News">Submit this to Hacker News</a>
		</li>
		<li class="sexy-printfriendly">
			<a href="http://www.printfriendly.com/print?url=http://www.64bitjungle.com/tech/conky-dual-core-processors-in-conkyrc/" rel="nofollow" class="external" title="Send this page to Print Friendly">Send this page to Print Friendly</a>
		</li>
		<li class="sexy-designbump">
			<a href="http://designbump.com/submit?url=http://www.64bitjungle.com/tech/conky-dual-core-processors-in-conkyrc/&amp;title=Conky%3A+Dual+Core+Processors+in+.conkyrc&amp;body=OK%2C%20this%20is%20a%20bit%20of%20a%20cheeky%20post%2C%20since%20I%27m%20merely%20extending%20a%20previous%20post%20%22Conky%20on%20Ubuntu%2064%20Bit%20-%20.conkyrc%22%20-%20or%20elaborating%20on%20it%20-%20to%20clarify%20setting%20up%20.conkyrc%20for%20Dual%20Core%20Processors%20-%20specifically%20for%20my%20AMD%20Turion%2064%20X2.%20I%27ve%20had%20a%20few%20requests%20specifically%20about%20this%2C%20so%20here%20goes..." rel="nofollow" class="external" title="Bump this on DesignBump">Bump this on DesignBump</a>
		</li>
		<li class="sexy-ning">
			<a href="http://bookmarks.ning.com/addItem.php?url=http://www.64bitjungle.com/tech/conky-dual-core-processors-in-conkyrc/&amp;T=Conky%3A+Dual+Core+Processors+in+.conkyrc" rel="nofollow" class="external" title="Add this to Ning">Add this to Ning</a>
		</li>
		<li class="sexy-identica">
			<a href="http://identi.ca//index.php?action=newnotice&amp;status_textarea=Reading:+&quot;Conky%3A+Dual+Core+Processors+in+.conkyrc&quot;+-+from+http://tinyurl.com/5ruuvb" rel="nofollow" class="external" title="Post this to Identica">Post this to Identica</a>
		</li>
		<li class="sexy-xerpi">
			<a href="http://www.xerpi.com/block/add_link_from_extension?url=http://www.64bitjungle.com/tech/conky-dual-core-processors-in-conkyrc/&amp;title=Conky%3A+Dual+Core+Processors+in+.conkyrc" rel="nofollow" class="external" title="Save this to Xerpi">Save this to Xerpi</a>
		</li>
		<li class="sexy-wikio">
			<a href="http://www.wikio.com/sharethis?url=http://www.64bitjungle.com/tech/conky-dual-core-processors-in-conkyrc/&amp;title=Conky%3A+Dual+Core+Processors+in+.conkyrc" rel="nofollow" class="external" title="Share this on Wikio">Share this on Wikio</a>
		</li>
		<li class="sexy-techmeme">
			<a href="http://twitter.com/home/?status=Tip+@Techmeme+http://www.64bitjungle.com/tech/conky-dual-core-processors-in-conkyrc/+&quot;Conky%3A+Dual+Core+Processors+in+.conkyrc&quot;" rel="nofollow" class="external" title="Tip this to TechMeme">Tip this to TechMeme</a>
		</li>
		<li class="sexy-sphinn">
			<a href="http://sphinn.com/index.php?c=post&amp;m=submit&amp;link=http://www.64bitjungle.com/tech/conky-dual-core-processors-in-conkyrc/" rel="nofollow" class="external" title="Sphinn this on Sphinn">Sphinn this on Sphinn</a>
		</li>
		<li class="sexy-posterous">
			<a href="http://posterous.com/share?linkto=http://www.64bitjungle.com/tech/conky-dual-core-processors-in-conkyrc/&amp;title=Conky%3A+Dual+Core+Processors+in+.conkyrc&amp;selection=OK%2C%20this%20is%20a%20bit%20of%20a%20cheeky%20post%2C%20since%20I%27m%20merely%20extending%20a%20previous%20post%20%22Conky%20on%20Ubuntu%2064%20Bit%20-%20.conkyrc%22%20-%20or%20elaborating%20on%20it%20-%20to%20clarify%20setting%20up%20.conkyrc%20for%20Dual%20Core%20Processors%20-%20specifically%20for%20my%20AMD%20Turion%2064%20X2.%20I%27ve%20had%20a%20few%20requests%20specifically%20about%20this%2C%20so%20here%20goes..." rel="nofollow" class="external" title="Post this to Posterous">Post this to Posterous</a>
		</li>
		<li class="sexy-globalgrind">
			<a href="http://globalgrind.com/submission/submit.aspx?url=http://www.64bitjungle.com/tech/conky-dual-core-processors-in-conkyrc/&amp;type=Article&amp;title=Conky%3A+Dual+Core+Processors+in+.conkyrc" rel="nofollow" class="external" title="Grind this! on Global Grind">Grind this! on Global Grind</a>
		</li>
		<li class="sexy-pingfm">
			<a href="http://ping.fm/ref/?link=http://www.64bitjungle.com/tech/conky-dual-core-processors-in-conkyrc/&amp;title=Conky%3A+Dual+Core+Processors+in+.conkyrc&amp;body=OK%2C%20this%20is%20a%20bit%20of%20a%20cheeky%20post%2C%20since%20I%27m%20merely%20extending%20a%20previous%20post%20%22Conky%20on%20Ubuntu%2064%20Bit%20-%20.conkyrc%22%20-%20or%20elaborating%20on%20it%20-%20to%20clarify%20setting%20up%20.conkyrc%20for%20Dual%20Core%20Processors%20-%20specifically%20for%20my%20AMD%20Turion%2064%20X2.%20I%27ve%20had%20a%20few%20requests%20specifically%20about%20this%2C%20so%20here%20goes..." rel="nofollow" class="external" title="Ping this on Ping.fm">Ping this on Ping.fm</a>
		</li>
		<li class="sexy-nujij">
			<a href="http://nujij.nl/jij.lynkx?t=Conky%3A+Dual+Core+Processors+in+.conkyrc&amp;u=http://www.64bitjungle.com/tech/conky-dual-core-processors-in-conkyrc/&amp;b=OK%2C%20this%20is%20a%20bit%20of%20a%20cheeky%20post%2C%20since%20I%27m%20merely%20extending%20a%20previous%20post%20%22Conky%20on%20Ubuntu%2064%20Bit%20-%20.conkyrc%22%20-%20or%20elaborating%20on%20it%20-%20to%20clarify%20setting%20up%20.conkyrc%20for%20Dual%20Core%20Processors%20-%20specifically%20for%20my%20AMD%20Turion%2064%20X2.%20I%27ve%20had%20a%20few%20requests%20specifically%20about%20this%2C%20so%20here%20goes..." rel="nofollow" class="external" title="Submit this to NUjij">Submit this to NUjij</a>
		</li>
		<li class="sexy-ekudos">
			<a href="http://www.ekudos.nl/artikel/nieuw?url=http://www.64bitjungle.com/tech/conky-dual-core-processors-in-conkyrc/&amp;title=Conky%3A+Dual+Core+Processors+in+.conkyrc&amp;desc=OK%2C%20this%20is%20a%20bit%20of%20a%20cheeky%20post%2C%20since%20I%27m%20merely%20extending%20a%20previous%20post%20%22Conky%20on%20Ubuntu%2064%20Bit%20-%20.conkyrc%22%20-%20or%20elaborating%20on%20it%20-%20to%20clarify%20setting%20up%20.conkyrc%20for%20Dual%20Core%20Processors%20-%20specifically%20for%20my%20AMD%20Turion%2064%20X2.%20I%27ve%20had%20a%20few%20requests%20specifically%20about%20this%2C%20so%20here%20goes..." rel="nofollow" class="external" title="Submit this to eKudos">Submit this to eKudos</a>
		</li>
		<li class="sexy-netvouz">
			<a href="http://www.netvouz.com/action/submitBookmark?url=http://www.64bitjungle.com/tech/conky-dual-core-processors-in-conkyrc/&amp;title=Conky%3A+Dual+Core+Processors+in+.conkyrc&amp;popup=no" rel="nofollow" class="external" title="Submit this to Netvouz">Submit this to Netvouz</a>
		</li>
		<li class="sexy-netvibes">
			<a href="http://www.netvibes.com/share?title=Conky%3A+Dual+Core+Processors+in+.conkyrc&amp;url=http://www.64bitjungle.com/tech/conky-dual-core-processors-in-conkyrc/" rel="nofollow" class="external" title="Submit this to Netvibes">Submit this to Netvibes</a>
		</li>
		<li class="sexy-fleck">
			<a href="http://beta3.fleck.com/bookmarklet.php?url=http://www.64bitjungle.com/tech/conky-dual-core-processors-in-conkyrc/&amp;title=Conky%3A+Dual+Core+Processors+in+.conkyrc" rel="nofollow" class="external" title="Share this on Fleck">Share this on Fleck</a>
		</li>
		<li class="sexy-blogospherenews">
			<a href="http://www.blogospherenews.com/submit.php?url=http://www.64bitjungle.com/tech/conky-dual-core-processors-in-conkyrc/&amp;title=Conky%3A+Dual+Core+Processors+in+.conkyrc" rel="nofollow" class="external" title="Share this on Blogosphere News">Share this on Blogosphere News</a>
		</li>
		<li class="sexy-webblend">
			<a href="http://thewebblend.com/submit?url=http://www.64bitjungle.com/tech/conky-dual-core-processors-in-conkyrc/&amp;title=Conky%3A+Dual+Core+Processors+in+.conkyrc&amp;body=OK%2C%20this%20is%20a%20bit%20of%20a%20cheeky%20post%2C%20since%20I%27m%20merely%20extending%20a%20previous%20post%20%22Conky%20on%20Ubuntu%2064%20Bit%20-%20.conkyrc%22%20-%20or%20elaborating%20on%20it%20-%20to%20clarify%20setting%20up%20.conkyrc%20for%20Dual%20Core%20Processors%20-%20specifically%20for%20my%20AMD%20Turion%2064%20X2.%20I%27ve%20had%20a%20few%20requests%20specifically%20about%20this%2C%20so%20here%20goes..." rel="nofollow" class="external" title="Blend this!">Blend this!</a>
		</li>
		<li class="sexy-wykop">
			<a href="http://www.wykop.pl/dodaj?url=http://www.64bitjungle.com/tech/conky-dual-core-processors-in-conkyrc/&amp;title=Conky%3A+Dual+Core+Processors+in+.conkyrc" rel="nofollow" class="external" title="Add this to Wykop!">Add this to Wykop!</a>
		</li>
		<li class="sexy-blogengage">
			<a href="http://www.blogengage.com/submit.php?url=http://www.64bitjungle.com/tech/conky-dual-core-processors-in-conkyrc/" rel="nofollow" class="external" title="Engage with this article!">Engage with this article!</a>
		</li>
		<li class="sexy-hyves">
			<a href="http://www.hyves.nl/profilemanage/add/tips/?name=Conky%3A+Dual+Core+Processors+in+.conkyrc&amp;text=OK%2C%20this%20is%20a%20bit%20of%20a%20cheeky%20post%2C%20since%20I%27m%20merely%20extending%20a%20previous%20post%20%22Conky%20on%20Ubuntu%2064%20Bit%20-%20.conkyrc%22%20-%20or%20elaborating%20on%20it%20-%20to%20clarify%20setting%20up%20.conkyrc%20for%20Dual%20Core%20Processors%20-%20specifically%20for%20my%20AMD%20Turion%2064%20X2.%20I%27ve%20had%20a%20few%20requests%20specifically%20about%20this%2C%20so%20here%20goes...+-+http://www.64bitjungle.com/tech/conky-dual-core-processors-in-conkyrc/&amp;rating=5" rel="nofollow" class="external" title="Share this on Hyves">Share this on Hyves</a>
		</li>
		<li class="sexy-pusha">
			<a href="http://www.pusha.se/posta?url=http://www.64bitjungle.com/tech/conky-dual-core-processors-in-conkyrc/&amp;title=Conky%3A+Dual+Core+Processors+in+.conkyrc" rel="nofollow" class="external" title="Push this on Pusha">Push this on Pusha</a>
		</li>
		<li class="sexy-hatena">
			<a href="http://b.hatena.ne.jp/add?mode=confirm&amp;url=http://www.64bitjungle.com/tech/conky-dual-core-processors-in-conkyrc/&amp;title=Conky%3A+Dual+Core+Processors+in+.conkyrc" rel="nofollow" class="external" title="Bookmarks this on Hatena Bookmarks">Bookmarks this on Hatena Bookmarks</a>
		</li>
		<li class="sexy-mylinkvault">
			<a href="http://www.mylinkvault.com/link-page.php?u=http://www.64bitjungle.com/tech/conky-dual-core-processors-in-conkyrc/&amp;n=Conky%3A+Dual+Core+Processors+in+.conkyrc" rel="nofollow" class="external" title="Store this link on MyLinkVault">Store this link on MyLinkVault</a>
		</li>
		<li class="sexy-slashdot">
			<a href="http://slashdot.org/bookmark.pl?url=http://www.64bitjungle.com/tech/conky-dual-core-processors-in-conkyrc/&amp;title=Conky%3A+Dual+Core+Processors+in+.conkyrc" rel="nofollow" class="external" title="Submit this to SlashDot">Submit this to SlashDot</a>
		</li>
		<li class="sexy-squidoo">
			<a href="http://www.squidoo.com/lensmaster/bookmark?http://www.64bitjungle.com/tech/conky-dual-core-processors-in-conkyrc/" rel="nofollow" class="external" title="Add to a lense on Squidoo">Add to a lense on Squidoo</a>
		</li>
		<li class="sexy-propeller">
			<a href="http://www.propeller.com/submit/?url=http://www.64bitjungle.com/tech/conky-dual-core-processors-in-conkyrc/" rel="nofollow" class="external" title="Submit this story to Propeller">Submit this story to Propeller</a>
		</li>
		<li class="sexy-faqpal">
			<a href="http://www.faqpal.com/submit?url=http://www.64bitjungle.com/tech/conky-dual-core-processors-in-conkyrc/" rel="nofollow" class="external" title="Submit this to FAQpal">Submit this to FAQpal</a>
		</li>
		<li class="sexy-evernote">
			<a href="http://www.evernote.com/clip.action?url=http://www.64bitjungle.com/tech/conky-dual-core-processors-in-conkyrc/&amp;title=Conky%3A+Dual+Core+Processors+in+.conkyrc" rel="nofollow" class="external" title="Clip this to Evernote">Clip this to Evernote</a>
		</li>
		<li class="sexy-meneame">
			<a href="http://meneame.net/submit.php?url=http://www.64bitjungle.com/tech/conky-dual-core-processors-in-conkyrc/" rel="nofollow" class="external" title="Submit this to Meneame">Submit this to Meneame</a>
		</li>
		<li class="sexy-bitacoras">
			<a href="http://bitacoras.com/anotaciones/http://www.64bitjungle.com/tech/conky-dual-core-processors-in-conkyrc/" rel="nofollow" class="external" title="Submit this to Bitacoras">Submit this to Bitacoras</a>
		</li>
		<li class="sexy-jumptags">
			<a href="http://www.jumptags.com/add/?url=http://www.64bitjungle.com/tech/conky-dual-core-processors-in-conkyrc/&amp;title=Conky%3A+Dual+Core+Processors+in+.conkyrc" rel="nofollow" class="external" title="Submit this link to JumpTags">Submit this link to JumpTags</a>
		</li>
		<li class="sexy-bebo">
			<a href="http://www.bebo.com/c/share?Url=http://www.64bitjungle.com/tech/conky-dual-core-processors-in-conkyrc/&amp;Title=Conky%3A+Dual+Core+Processors+in+.conkyrc" rel="nofollow" class="external" title="Share this on Bebo">Share this on Bebo</a>
		</li>
		<li class="sexy-n4g">
			<a href="http://www.n4g.com/tips.aspx?url=http://www.64bitjungle.com/tech/conky-dual-core-processors-in-conkyrc/&amp;title=Conky%3A+Dual+Core+Processors+in+.conkyrc" rel="nofollow" class="external" title="Submit tip to N4G">Submit tip to N4G</a>
		</li>
		<li class="sexy-orkut">
			<a href="http://promote.orkut.com/preview?nt=orkut.com&amp;tt=Conky%3A+Dual+Core+Processors+in+.conkyrc&amp;du=http://www.64bitjungle.com/tech/conky-dual-core-processors-in-conkyrc/&amp;cn=OK%2C%20this%20is%20a%20bit%20of%20a%20cheeky%20post%2C%20since%20I%27m%20merely%20extending%20a%20previous%20post%20%22Conky%20on%20Ubuntu%2064%20Bit%20-%20.conkyrc%22%20-%20or%20elaborating%20on%20it%20-%20to%20clarify%20setting%20up%20.conkyrc%20for%20Dual%20Core%20Processors%20-%20specifically%20for%20my%20AMD%20Turion%2064%20X2.%20I%27ve%20had%20a%20few%20requests%20specifically%20about%20this%2C%20so%20here%20goes..." rel="nofollow" class="external" title="Promote this on Orkut">Promote this on Orkut</a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>
<!-- End SexyBookmarks Menu Code -->



<p>No related posts.</p>
<p>Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://www.64bitjungle.com/tech/conky-dual-core-processors-in-conkyrc/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
		<item>
		<title>BOINC and SETI@Home Data Output with Conky</title>
		<link>http://www.64bitjungle.com/tech/boinc-and-setihome-with-conky-on-ubuntu/</link>
		<comments>http://www.64bitjungle.com/tech/boinc-and-setihome-with-conky-on-ubuntu/#comments</comments>
		<pubDate>Tue, 11 Mar 2008 11:11:02 +0000</pubDate>
		<dc:creator>Hodge</dc:creator>
				<category><![CDATA[Conky]]></category>
		<category><![CDATA[Programming]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[Ubuntu]]></category>
		<category><![CDATA[BOINC]]></category>
		<category><![CDATA[conkyrc]]></category>
		<category><![CDATA[HowTo]]></category>
		<category><![CDATA[SETI]]></category>
		<category><![CDATA[SETI@Home]]></category>

		<guid isPermaLink="false">http://www.64bitjungle.com/tech/boinc-and-setihome-with-conky-on-ubuntu/</guid>
		<description><![CDATA[Since my previous article about Conky, Conky on Ubunty 64 Bit &#8211; .conkyrc, I&#8217;ve been playing around with trying to get Conky to output some BOINC (SETI@Home data), and through a little digging, found a couple of very useful resources. The first being BOINC&#8217;s own client_status.xml file, located on Ubunutu in /var/lib/boinc-client/client_status.xml, which contains a [...]


No related posts.

Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.]]></description>
			<content:encoded><![CDATA[<p><img src="http://www.64bitjungle.com/wp-content/uploads/2008/03/conkyboink.png" alt="BOINC Statistics output to Conky" align="left" />Since my previous article about Conky, <a href="http://www.64bitjungle.com/tech/conky-on-ubuntu-64-bit-conkyrc/">Conky on Ubunty 64 Bit &#8211; .conkyrc</a>, I&#8217;ve been playing around with trying to get Conky to output some BOINC (SETI@Home data), and through a little digging, found a couple of very useful resources. The first being BOINC&#8217;s own <span style="font-family: monospace; font-size: 120%">client_status.xml</span> file, located on Ubunutu in <span style="font-family: monospace; font-size: 120%">/var/lib/boinc-client/client_status.xml</span>, which contains a lot of information about BOINC projects, Work Units, Status and so on. The second being a command line application, again built into BOINC &#8211; <span style="font-family: monospace; font-size: 120%">boinc_cmd</span>. <span style="font-family: monospace; font-size: 120%">boinc_cmd</span> can be executed with a bunch of parameters, such as <span style="font-family: monospace; font-size: 120%">&#8211;get_simple_gui_info</span> and <span style="font-family: monospace; font-size: 120%">&#8211;get_project_status</span> which output to the Terminal a lot of information about Projects and Work Units.</p>
<p>To output BOINC data via Conky, it&#8217;s possible to call the <span style="font-family: monospace; font-size: 120%">boinc_cmd</span> in <span style="font-family: monospace; font-size: 120%">.conkyrc</span> and strip down the information with <span style="font-family: monospace; font-size: 120%">grep</span> and <span style="font-family: monospace; font-size: 120%">sed</span> etc:</p>
<p><code>${execi 10 boinc_cmd --get_simple_gui_info | grep -m 1 "fraction done:" | tail -n 1 - | sed -e 's/   fraction done: //'}<br />
${execi 10 boinc_cmd --get_simple_gui_info | grep -m 2 "fraction done:" | tail -n 1 - | sed -e 's/   fraction done: //'}</code></p>
<p>&#8230;and so on for each piece of data required for output, but this is pretty labourious, and makes for a rather ugly <span style="font-family: monospace; font-size: 120%">.conkyrc</span>, so I&#8217;ve written a really quick and dirty Perl Script (it&#8217;s not pleasant to look at, and needs a LOT of work, so it&#8217;s more of a pre Alpha-Alpha! I&#8217;m not sure how, or if it will work with multiple projects, since I only have SETI@HOME installed&#8230;) &#8211; which actually retrieves all the data from the <span style="font-family: monospace; font-size: 120%">client_status.xml</span> file. The (archived) script, <a href="http://www.64bitjungle.com/wp-content/uploads/2008/03/boinc-pl.tar.gz" title="boinc.pl">boinc.pl</a> can be <a href="http://www.64bitjungle.com/wp-content/uploads/2008/03/boinc-pl.tar.gz" title="boinc.pl">downloaded here</a> (and viewed below &#8211; just copy and paste the text into a file, and save it as &#8220;boinc.pl&#8221; if the download doesn&#8217;t work for you). It&#8217;s also posted over at the <a href="http://ubuntuforums.org/showthread.php?p=4500442" target="_blank">Ubuntu Forums</a>. I&#8217;ve called it in <span style="font-family: monospace; font-size: 120%">.conkyrc</span> by adding one simple line:</p>
<p><code>BOINC:<br />
${color lightgrey}${execi 10 perl ~/ConkyScripts/boinc/boinc.pl}</code></p>
<p>OK, so that&#8217;s actually two lines, but the first line doesn&#8217;t really do anything except output the text &#8220;BOINC:&#8221; to Conky, so it doesn&#8217;t count &#8211; but it&#8217;s much cleaner than potentially dozens of lines, right? The script itself is in my <span style="font-family: monospace; font-size: 120%">~/ConkyScripts/boinc</span> directory and has been made executable:</p>
<p><code>sudo chmod a+x boinc.pl</code></p>
<p>Here&#8217;s the script so far &#8211; it&#8217;s VERY much Work In Progress, but it outputs the data as shown in the image above:</p>
<p><strong>Edit 15/03/08:</strong> I&#8217;ve updated the code, so hopefully it&#8217;ll work with multiple projects:</p>
<pre>
#!/usr/bin/perl

$BoincStatePath="/var/lib/boinc-client";
$BoincClientStateFile="client_state.xml";
$StateFile="$BoincStatePath/$BoincClientStateFile";

open(INFO, $StateFile);
@lines = &lt;INFO&gt;;
close(INFO);
sub strip_tags($);

sub convert_time_to_string($);
sub estimate_time_remaining;
$projectCount = 0;
$wuCount = 0;
$wuActive = 0;
$wuActiveTask = 0;

foreach $line (@lines) {

   if ($line =~ /&lt;master_url&gt;/) {
      $projectMasterURL[$projectCount] = strip_tags($line);
   }

   if ($line =~ /&lt;project_name&gt;/) {
      $projectName[$projectCount] = strip_tags($line);
      $projectCount++;
   }

   if ($line =~ /&lt;workunit&gt;/) {
      $wuCount++;
   }

   if ($line =~ /&lt;active_task_state&gt;1/) {
      $wuActive++;
   }

   if ($line =~ /&lt;active_task&gt;/) {
      $wuActiveTask++;
   }

   if ($line =~ /&lt;result_name&gt;/) {
      $wuName[$wuActiveTask] = strip_tags($line);
   }

   if ($line =~ /&lt;fraction_done&gt;/) {
      $wuPercent[$wuActiveTask] = strip_tags($line) * 100;
   }

   if ($line =~ /&lt;project_master_url&gt;/) {
      $wuMasterURL[$wuActiveTask] = strip_tags($line);
   }

   if ($line =~ /&lt;current_cpu_time&gt;/) {
      $wuCPUTime[$wuActiveTask] = convert_time_to_string(strip_tags($line));
      $wuCPUTimeRaw[$wuActiveTask] = strip_tags($line);
   }

}

print "No. Work Units: ".$wuCount.", Active WU: ".$wuActive."n";

for($i = 0; $i &lt;= $projectCount; ++$i) {
   print $projectName[$i];
   for ($j = 1; $j &lt;= $wuActiveTask; ++$j) {
      if($projectMasterURL[$i] eq $wuMasterURL[$j]) {
         print "WU ".$j.": ".$wuName[$j];
         $estTime = convert_time_to_string(estimate_time_remaining($wuCPUTimeRaw[$j],$wuPercent[$j]));
         print "CPU Time: ".$wuCPUTime[$j]." Time Remaining: ".$estTime."n";
         print $wuPercent[$j]."% Completen";
      }
   }
}

sub strip_tags($) {
   my $string = shift;
   $string =~ s/&lt;(.*?)&gt;//gi;
   $string =~ s/ //gi;
   return $string;
}

sub convert_time_to_string($) {
   $cpuTime = int($_[0]);
   #Calculate the number of days
   if ($cpuTime &gt; 86400) {
      $timeDays = $cpuTime/(24*60*60).":";
   } else {
      $timeDays = "";
   }

   #Calculate the number of hours and minutes
   $timeHours = ($cpuTime/(60*60))%24;
   $timeMinutes = ($cpuTime/60)%60;
   $timeSeconds = $cpuTime%60;
   $cpuTimeString = $timeDays.$timeHours.":".$timeMinutes.":".$timeSeconds;

   return $cpuTimeString;
}

sub estimate_time_remaining {
   $cpuTime = $_[0];
   $currentPercent = $_[1];
   $onePercentTime = $cpuTime/$currentPercent;
   $totalTime = $onePercentTime * 100;
   $estimatedTimeReminaing = $totalTime - $cpuTime;
   return $estimatedTimeReminaing;
}</pre>
<script type="text/javascript" class="owbutton" src="http://onlywire.com/button" title="BOINC and SETI@Home Data Output with Conky" url="http://www.64bitjungle.com/tech/boinc-and-setihome-with-conky-on-ubuntu/"></script>

<!-- Begin SexyBookmarks Menu Code -->
<div class="sexy-bookmarks sexy-bookmarks-expand sexy-bookmarks-bg-caring-old">
<ul class="socials">
		<li class="sexy-scriptstyle">
			<a href="http://scriptandstyle.com/submit?url=http://www.64bitjungle.com/tech/boinc-and-setihome-with-conky-on-ubuntu/&amp;title=BOINC+and+SETI%40Home+Data+Output+with+Conky" rel="nofollow" class="external" title="Submit this to Script &amp; Style">Submit this to Script &amp; Style</a>
		</li>
		<li class="sexy-blinklist">
			<a href="http://www.blinklist.com/index.php?Action=Blink/addblink.php&amp;Url=http://www.64bitjungle.com/tech/boinc-and-setihome-with-conky-on-ubuntu/&amp;Title=BOINC+and+SETI%40Home+Data+Output+with+Conky" rel="nofollow" class="external" title="Share this on Blinklist">Share this on Blinklist</a>
		</li>
		<li class="sexy-delicious">
			<a href="http://del.icio.us/post?url=http://www.64bitjungle.com/tech/boinc-and-setihome-with-conky-on-ubuntu/&amp;title=BOINC+and+SETI%40Home+Data+Output+with+Conky" rel="nofollow" class="external" title="Share this on del.icio.us">Share this on del.icio.us</a>
		</li>
		<li class="sexy-digg">
			<a href="http://digg.com/submit?phase=2&amp;url=http://www.64bitjungle.com/tech/boinc-and-setihome-with-conky-on-ubuntu/&amp;title=BOINC+and+SETI%40Home+Data+Output+with+Conky" rel="nofollow" class="external" title="Digg this!">Digg this!</a>
		</li>
		<li class="sexy-diigo">
			<a href="http://www.diigo.com/post?url=http://www.64bitjungle.com/tech/boinc-and-setihome-with-conky-on-ubuntu/&amp;title=BOINC+and+SETI%40Home+Data+Output+with+Conky&amp;desc=Since%20my%20previous%20article%20about%20Conky%2C%20Conky%20on%20Ubunty%2064%20Bit%20-%20.conkyrc%2C%20I%27ve%20been%20playing%20around%20with%20trying%20to%20get%20Conky%20to%20output%20some%20BOINC%20%28SETI%40Home%20data%29%2C%20and%20through%20a%20little%20digging%2C%20found%20a%20couple%20of%20very%20useful%20resources.%20The%20first%20being%20BOINC%27s%20own%20client_status.xml%20file%2C%20located%20on%20Ubu" rel="nofollow" class="external" title="Post this on Diigo">Post this on Diigo</a>
		</li>
		<li class="sexy-reddit">
			<a href="http://reddit.com/submit?url=http://www.64bitjungle.com/tech/boinc-and-setihome-with-conky-on-ubuntu/&amp;title=BOINC+and+SETI%40Home+Data+Output+with+Conky" rel="nofollow" class="external" title="Share this on Reddit">Share this on Reddit</a>
		</li>
		<li class="sexy-yahoobuzz">
			<a href="http://buzz.yahoo.com/submit/?submitUrl=http://www.64bitjungle.com/tech/boinc-and-setihome-with-conky-on-ubuntu/&amp;submitHeadline=BOINC+and+SETI%40Home+Data+Output+with+Conky&amp;submitSummary=Since%20my%20previous%20article%20about%20Conky%2C%20Conky%20on%20Ubunty%2064%20Bit%20-%20.conkyrc%2C%20I%27ve%20been%20playing%20around%20with%20trying%20to%20get%20Conky%20to%20output%20some%20BOINC%20%28SETI%40Home%20data%29%2C%20and%20through%20a%20little%20digging%2C%20found%20a%20couple%20of%20very%20useful%20resources.%20The%20first%20being%20BOINC%27s%20own%20client_status.xml%20file%2C%20located%20on%20Ubu&amp;submitCategory=science&amp;submitAssetType=text" rel="nofollow" class="external" title="Buzz up!">Buzz up!</a>
		</li>
		<li class="sexy-stumbleupon">
			<a href="http://www.stumbleupon.com/submit?url=http://www.64bitjungle.com/tech/boinc-and-setihome-with-conky-on-ubuntu/&amp;title=BOINC+and+SETI%40Home+Data+Output+with+Conky" rel="nofollow" class="external" title="Stumble upon something good? Share it on StumbleUpon">Stumble upon something good? Share it on StumbleUpon</a>
		</li>
		<li class="sexy-technorati">
			<a href="http://technorati.com/faves?add=http://www.64bitjungle.com/tech/boinc-and-setihome-with-conky-on-ubuntu/" rel="nofollow" class="external" title="Share this on Technorati">Share this on Technorati</a>
		</li>
		<li class="sexy-mixx">
			<a href="http://www.mixx.com/submit?page_url=http://www.64bitjungle.com/tech/boinc-and-setihome-with-conky-on-ubuntu/&amp;title=BOINC+and+SETI%40Home+Data+Output+with+Conky" rel="nofollow" class="external" title="Share this on Mixx">Share this on Mixx</a>
		</li>
		<li class="sexy-myspace">
			<a href="http://www.myspace.com/Modules/PostTo/Pages/?u=http://www.64bitjungle.com/tech/boinc-and-setihome-with-conky-on-ubuntu/&amp;t=BOINC+and+SETI%40Home+Data+Output+with+Conky" rel="nofollow" class="external" title="Post this to MySpace">Post this to MySpace</a>
		</li>
		<li class="sexy-designfloat">
			<a href="http://www.designfloat.com/submit.php?url=http://www.64bitjungle.com/tech/boinc-and-setihome-with-conky-on-ubuntu/&amp;title=BOINC+and+SETI%40Home+Data+Output+with+Conky" rel="nofollow" class="external" title="Submit this to DesignFloat">Submit this to DesignFloat</a>
		</li>
		<li class="sexy-facebook">
			<a href="http://www.facebook.com/share.php?v=4&amp;src=bm&amp;u=http://www.64bitjungle.com/tech/boinc-and-setihome-with-conky-on-ubuntu/&amp;t=BOINC+and+SETI%40Home+Data+Output+with+Conky" rel="nofollow" class="external" title="Share this on Facebook">Share this on Facebook</a>
		</li>
		<li class="sexy-twitter">
			<a href="http://twitter.com/home?status=BOINC+and+SETI%40Home+Data+Output+with+Conky+-+http://tinyurl.com/czb9uz+(via+@64bitjungle)" rel="nofollow" class="external" title="Tweet This!">Tweet This!</a>
		</li>
		<li class="sexy-mail">
			<a href="mailto:?subject=%22BOINC%20and%20SETI%40Home%20Data%20Output%20with%20Conky%22&amp;body=I%20thought%20this%20article%20might%20interest%20you.%0A%0A%22Since%20my%20previous%20article%20about%20Conky%2C%20Conky%20on%20Ubunty%2064%20Bit%20-%20.conkyrc%2C%20I%27ve%20been%20playing%20around%20with%20trying%20to%20get%20Conky%20to%20output%20some%20BOINC%20%28SETI%40Home%20data%29%2C%20and%20through%20a%20little%20digging%2C%20found%20a%20couple%20of%20very%20useful%20resources.%20The%20first%20being%20BOINC%27s%20own%20client_status.xml%20file%2C%20located%20on%20Ubu%22%0A%0AYou%20can%20read%20the%20full%20article%20here%3A%20http://www.64bitjungle.com/tech/boinc-and-setihome-with-conky-on-ubuntu/" rel="nofollow" class="external" title="Email this to a friend?">Email this to a friend?</a>
		</li>
		<li class="sexy-tomuse">
			<a href="mailto:tips@tomuse.com?subject=New%20tip%20submitted%20via%20the%20SexyBookmarks%20Plugin!&amp;body=I%20would%20like%20to%20submit%20this%20article%3A%20%22BOINC%20and%20SETI%40Home%20Data%20Output%20with%20Conky%22%20for%20possible%20inclusion%20on%20ToMuse.%0A%0A%22Since%20my%20previous%20article%20about%20Conky%2C%20Conky%20on%20Ubunty%2064%20Bit%20-%20.conkyrc%2C%20I%27ve%20been%20playing%20around%20with%20trying%20to%20get%20Conky%20to%20output%20some%20BOINC%20%28SETI%40Home%20data%29%2C%20and%20through%20a%20little%20digging%2C%20found%20a%20couple%20of%20very%20useful%20resources.%20The%20first%20being%20BOINC%27s%20own%20client_status.xml%20file%2C%20located%20on%20Ubu%22%0A%0AYou%20can%20read%20the%20full%20article%20here%3A%20http://www.64bitjungle.com/tech/boinc-and-setihome-with-conky-on-ubuntu/" rel="nofollow" class="external" title="Suggest this article to ToMuse">Suggest this article to ToMuse</a>
		</li>
		<li class="sexy-comfeed">
			<a href="http://www.64bitjungle.com/tech/boinc-and-setihome-with-conky-on-ubuntu/feed" rel="nofollow" class="external" title="Subscribe to the comments for this post?">Subscribe to the comments for this post?</a>
		</li>
		<li class="sexy-linkedin">
			<a href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http://www.64bitjungle.com/tech/boinc-and-setihome-with-conky-on-ubuntu/&amp;title=BOINC+and+SETI%40Home+Data+Output+with+Conky&amp;summary=Since%20my%20previous%20article%20about%20Conky%2C%20Conky%20on%20Ubunty%2064%20Bit%20-%20.conkyrc%2C%20I%27ve%20been%20playing%20around%20with%20trying%20to%20get%20Conky%20to%20output%20some%20BOINC%20%28SETI%40Home%20data%29%2C%20and%20through%20a%20little%20digging%2C%20found%20a%20couple%20of%20very%20useful%20resources.%20The%20first%20being%20BOINC%27s%20own%20client_status.xml%20file%2C%20located%20on%20Ubu&amp;source=64 Bit Jungle" rel="nofollow" class="external" title="Share this on Linkedin">Share this on Linkedin</a>
		</li>
		<li class="sexy-newsvine">
			<a href="http://www.newsvine.com/_tools/seed&amp;save?u=http://www.64bitjungle.com/tech/boinc-and-setihome-with-conky-on-ubuntu/&amp;h=BOINC+and+SETI%40Home+Data+Output+with+Conky" rel="nofollow" class="external" title="Seed this on Newsvine">Seed this on Newsvine</a>
		</li>
		<li class="sexy-devmarks">
			<a href="http://devmarks.com/index.php?posttext=Since%20my%20previous%20article%20about%20Conky%2C%20Conky%20on%20Ubunty%2064%20Bit%20-%20.conkyrc%2C%20I%27ve%20been%20playing%20around%20with%20trying%20to%20get%20Conky%20to%20output%20some%20BOINC%20%28SETI%40Home%20data%29%2C%20and%20through%20a%20little%20digging%2C%20found%20a%20couple%20of%20very%20useful%20resources.%20The%20first%20being%20BOINC%27s%20own%20client_status.xml%20file%2C%20located%20on%20Ubu&amp;posturl=http://www.64bitjungle.com/tech/boinc-and-setihome-with-conky-on-ubuntu/&amp;posttitle=BOINC+and+SETI%40Home+Data+Output+with+Conky" rel="nofollow" class="external" title="Share this on Devmarks">Share this on Devmarks</a>
		</li>
		<li class="sexy-google">
			<a href="http://www.google.com/bookmarks/mark?op=add&amp;bkmk=http://www.64bitjungle.com/tech/boinc-and-setihome-with-conky-on-ubuntu/&amp;title=BOINC+and+SETI%40Home+Data+Output+with+Conky" rel="nofollow" class="external" title="Add this to Google Bookmarks">Add this to Google Bookmarks</a>
		</li>
		<li class="sexy-misterwong">
			<a href="http://www.mister-wong.com/addurl/?bm_url=http://www.64bitjungle.com/tech/boinc-and-setihome-with-conky-on-ubuntu/&amp;bm_description=BOINC+and+SETI%40Home+Data+Output+with+Conky&amp;plugin=sexybookmarks" rel="nofollow" class="external" title="Add this to Mister Wong">Add this to Mister Wong</a>
		</li>
		<li class="sexy-izeby">
			<a href="http://izeby.com/submit.php?url=http://www.64bitjungle.com/tech/boinc-and-setihome-with-conky-on-ubuntu/" rel="nofollow" class="external" title="Add this to Izeby">Add this to Izeby</a>
		</li>
		<li class="sexy-tipd">
			<a href="http://tipd.com/submit.php?url=http://www.64bitjungle.com/tech/boinc-and-setihome-with-conky-on-ubuntu/" rel="nofollow" class="external" title="Share this on Tipd">Share this on Tipd</a>
		</li>
		<li class="sexy-pfbuzz">
			<a href="http://pfbuzz.com/submit?url=http://www.64bitjungle.com/tech/boinc-and-setihome-with-conky-on-ubuntu/&amp;title=BOINC+and+SETI%40Home+Data+Output+with+Conky" rel="nofollow" class="external" title="Share this on PFBuzz">Share this on PFBuzz</a>
		</li>
		<li class="sexy-friendfeed">
			<a href="http://www.friendfeed.com/share?title=BOINC+and+SETI%40Home+Data+Output+with+Conky&amp;link=http://www.64bitjungle.com/tech/boinc-and-setihome-with-conky-on-ubuntu/" rel="nofollow" class="external" title="Share this on FriendFeed">Share this on FriendFeed</a>
		</li>
		<li class="sexy-blogmarks">
			<a href="http://blogmarks.net/my/new.php?mini=1&amp;simple=1&amp;url=http://www.64bitjungle.com/tech/boinc-and-setihome-with-conky-on-ubuntu/&amp;title=BOINC+and+SETI%40Home+Data+Output+with+Conky" rel="nofollow" class="external" title="Mark this on BlogMarks">Mark this on BlogMarks</a>
		</li>
		<li class="sexy-twittley">
			<a href="http://twittley.com/submit/?title=BOINC+and+SETI%40Home+Data+Output+with+Conky&amp;url=http%3A%2F%2Fwww.64bitjungle.com%2Ftech%2Fboinc-and-setihome-with-conky-on-ubuntu%2F&amp;desc=Since%20my%20previous%20article%20about%20Conky%2C%20Conky%20on%20Ubunty%2064%20Bit%20-%20.conkyrc%2C%20I%27ve%20been%20playing%20around%20with%20trying%20to%20get%20Conky%20to%20output%20some%20BOINC%20%28SETI%40Home%20data%29%2C%20and%20through%20a%20little%20digging%2C%20found%20a%20couple%20of%20very%20useful%20resources.%20The%20first%20being%20BOINC%27s%20own%20client_status.xml%20file%2C%20located%20on%20Ubu&amp;pcat=Technology&amp;tags=" rel="nofollow" class="external" title="Submit this to Twittley">Submit this to Twittley</a>
		</li>
		<li class="sexy-fwisp">
			<a href="http://fwisp.com/submit?url=http://www.64bitjungle.com/tech/boinc-and-setihome-with-conky-on-ubuntu/" rel="nofollow" class="external" title="Share this on Fwisp">Share this on Fwisp</a>
		</li>
		<li class="sexy-designmoo">
			<a href="http://designmoo.com/submit?url=http://www.64bitjungle.com/tech/boinc-and-setihome-with-conky-on-ubuntu/&amp;title=BOINC+and+SETI%40Home+Data+Output+with+Conky&amp;body=Since%20my%20previous%20article%20about%20Conky%2C%20Conky%20on%20Ubunty%2064%20Bit%20-%20.conkyrc%2C%20I%27ve%20been%20playing%20around%20with%20trying%20to%20get%20Conky%20to%20output%20some%20BOINC%20%28SETI%40Home%20data%29%2C%20and%20through%20a%20little%20digging%2C%20found%20a%20couple%20of%20very%20useful%20resources.%20The%20first%20being%20BOINC%27s%20own%20client_status.xml%20file%2C%20located%20on%20Ubu" rel="nofollow" class="external" title="Moo this on DesignMoo!">Moo this on DesignMoo!</a>
		</li>
		<li class="sexy-bobrdobr">
			<a href="http://bobrdobr.ru/addext.html?url=http://www.64bitjungle.com/tech/boinc-and-setihome-with-conky-on-ubuntu/&amp;title=BOINC+and+SETI%40Home+Data+Output+with+Conky" rel="nofollow" class="external" title="Share this on BobrDobr">Share this on BobrDobr</a>
		</li>
		<li class="sexy-yandex">
			<a href="http://zakladki.yandex.ru/userarea/links/addfromfav.asp?bAddLink_x=1&amp;lurl=http://www.64bitjungle.com/tech/boinc-and-setihome-with-conky-on-ubuntu/&amp;lname=BOINC+and+SETI%40Home+Data+Output+with+Conky" rel="nofollow" class="external" title="Add this to Yandex.Bookmarks">Add this to Yandex.Bookmarks</a>
		</li>
		<li class="sexy-memoryru">
			<a href="http://memori.ru/link/?sm=1&amp;u_data[url]=http://www.64bitjungle.com/tech/boinc-and-setihome-with-conky-on-ubuntu/&amp;u_data[name]=BOINC+and+SETI%40Home+Data+Output+with+Conky" rel="nofollow" class="external" title="Add this to Memory.ru">Add this to Memory.ru</a>
		</li>
		<li class="sexy-100zakladok">
			<a href="http://www.100zakladok.ru/save/?bmurl=http://www.64bitjungle.com/tech/boinc-and-setihome-with-conky-on-ubuntu/&amp;bmtitle=BOINC+and+SETI%40Home+Data+Output+with+Conky" rel="nofollow" class="external" title="Add this to 100 bookmarks">Add this to 100 bookmarks</a>
		</li>
		<li class="sexy-moemesto">
			<a href="http://moemesto.ru/post.php?url=http://www.64bitjungle.com/tech/boinc-and-setihome-with-conky-on-ubuntu/&amp;title=BOINC+and+SETI%40Home+Data+Output+with+Conky" rel="nofollow" class="external" title="Add this to MyPlace">Add this to MyPlace</a>
		</li>
		<li class="sexy-hackernews">
			<a href="http://news.ycombinator.com/submitlink?u=http://www.64bitjungle.com/tech/boinc-and-setihome-with-conky-on-ubuntu/&amp;t=BOINC+and+SETI%40Home+Data+Output+with+Conky" rel="nofollow" class="external" title="Submit this to Hacker News">Submit this to Hacker News</a>
		</li>
		<li class="sexy-printfriendly">
			<a href="http://www.printfriendly.com/print?url=http://www.64bitjungle.com/tech/boinc-and-setihome-with-conky-on-ubuntu/" rel="nofollow" class="external" title="Send this page to Print Friendly">Send this page to Print Friendly</a>
		</li>
		<li class="sexy-designbump">
			<a href="http://designbump.com/submit?url=http://www.64bitjungle.com/tech/boinc-and-setihome-with-conky-on-ubuntu/&amp;title=BOINC+and+SETI%40Home+Data+Output+with+Conky&amp;body=Since%20my%20previous%20article%20about%20Conky%2C%20Conky%20on%20Ubunty%2064%20Bit%20-%20.conkyrc%2C%20I%27ve%20been%20playing%20around%20with%20trying%20to%20get%20Conky%20to%20output%20some%20BOINC%20%28SETI%40Home%20data%29%2C%20and%20through%20a%20little%20digging%2C%20found%20a%20couple%20of%20very%20useful%20resources.%20The%20first%20being%20BOINC%27s%20own%20client_status.xml%20file%2C%20located%20on%20Ubu" rel="nofollow" class="external" title="Bump this on DesignBump">Bump this on DesignBump</a>
		</li>
		<li class="sexy-ning">
			<a href="http://bookmarks.ning.com/addItem.php?url=http://www.64bitjungle.com/tech/boinc-and-setihome-with-conky-on-ubuntu/&amp;T=BOINC+and+SETI%40Home+Data+Output+with+Conky" rel="nofollow" class="external" title="Add this to Ning">Add this to Ning</a>
		</li>
		<li class="sexy-identica">
			<a href="http://identi.ca//index.php?action=newnotice&amp;status_textarea=Reading:+&quot;BOINC+and+SETI%40Home+Data+Output+with+Conky&quot;+-+from+http://tinyurl.com/czb9uz" rel="nofollow" class="external" title="Post this to Identica">Post this to Identica</a>
		</li>
		<li class="sexy-xerpi">
			<a href="http://www.xerpi.com/block/add_link_from_extension?url=http://www.64bitjungle.com/tech/boinc-and-setihome-with-conky-on-ubuntu/&amp;title=BOINC+and+SETI%40Home+Data+Output+with+Conky" rel="nofollow" class="external" title="Save this to Xerpi">Save this to Xerpi</a>
		</li>
		<li class="sexy-wikio">
			<a href="http://www.wikio.com/sharethis?url=http://www.64bitjungle.com/tech/boinc-and-setihome-with-conky-on-ubuntu/&amp;title=BOINC+and+SETI%40Home+Data+Output+with+Conky" rel="nofollow" class="external" title="Share this on Wikio">Share this on Wikio</a>
		</li>
		<li class="sexy-techmeme">
			<a href="http://twitter.com/home/?status=Tip+@Techmeme+http://www.64bitjungle.com/tech/boinc-and-setihome-with-conky-on-ubuntu/+&quot;BOINC+and+SETI%40Home+Data+Output+with+Conky&quot;" rel="nofollow" class="external" title="Tip this to TechMeme">Tip this to TechMeme</a>
		</li>
		<li class="sexy-sphinn">
			<a href="http://sphinn.com/index.php?c=post&amp;m=submit&amp;link=http://www.64bitjungle.com/tech/boinc-and-setihome-with-conky-on-ubuntu/" rel="nofollow" class="external" title="Sphinn this on Sphinn">Sphinn this on Sphinn</a>
		</li>
		<li class="sexy-posterous">
			<a href="http://posterous.com/share?linkto=http://www.64bitjungle.com/tech/boinc-and-setihome-with-conky-on-ubuntu/&amp;title=BOINC+and+SETI%40Home+Data+Output+with+Conky&amp;selection=Since%20my%20previous%20article%20about%20Conky%2C%20Conky%20on%20Ubunty%2064%20Bit%20-%20.conkyrc%2C%20I%27ve%20been%20playing%20around%20with%20trying%20to%20get%20Conky%20to%20output%20some%20BOINC%20%28SETI%40Home%20data%29%2C%20and%20through%20a%20little%20digging%2C%20found%20a%20couple%20of%20very%20useful%20resources.%20The%20first%20being%20BOINC%27s%20own%20client_status.xml%20file%2C%20located%20on%20Ubu" rel="nofollow" class="external" title="Post this to Posterous">Post this to Posterous</a>
		</li>
		<li class="sexy-globalgrind">
			<a href="http://globalgrind.com/submission/submit.aspx?url=http://www.64bitjungle.com/tech/boinc-and-setihome-with-conky-on-ubuntu/&amp;type=Article&amp;title=BOINC+and+SETI%40Home+Data+Output+with+Conky" rel="nofollow" class="external" title="Grind this! on Global Grind">Grind this! on Global Grind</a>
		</li>
		<li class="sexy-pingfm">
			<a href="http://ping.fm/ref/?link=http://www.64bitjungle.com/tech/boinc-and-setihome-with-conky-on-ubuntu/&amp;title=BOINC+and+SETI%40Home+Data+Output+with+Conky&amp;body=Since%20my%20previous%20article%20about%20Conky%2C%20Conky%20on%20Ubunty%2064%20Bit%20-%20.conkyrc%2C%20I%27ve%20been%20playing%20around%20with%20trying%20to%20get%20Conky%20to%20output%20some%20BOINC%20%28SETI%40Home%20data%29%2C%20and%20through%20a%20little%20digging%2C%20found%20a%20couple%20of%20very%20useful%20resources.%20The%20first%20being%20BOINC%27s%20own%20client_status.xml%20file%2C%20located%20on%20Ubu" rel="nofollow" class="external" title="Ping this on Ping.fm">Ping this on Ping.fm</a>
		</li>
		<li class="sexy-nujij">
			<a href="http://nujij.nl/jij.lynkx?t=BOINC+and+SETI%40Home+Data+Output+with+Conky&amp;u=http://www.64bitjungle.com/tech/boinc-and-setihome-with-conky-on-ubuntu/&amp;b=Since%20my%20previous%20article%20about%20Conky%2C%20Conky%20on%20Ubunty%2064%20Bit%20-%20.conkyrc%2C%20I%27ve%20been%20playing%20around%20with%20trying%20to%20get%20Conky%20to%20output%20some%20BOINC%20%28SETI%40Home%20data%29%2C%20and%20through%20a%20little%20digging%2C%20found%20a%20couple%20of%20very%20useful%20resources.%20The%20first%20being%20BOINC%27s%20own%20client_status.xml%20file%2C%20located%20on%20Ubu" rel="nofollow" class="external" title="Submit this to NUjij">Submit this to NUjij</a>
		</li>
		<li class="sexy-ekudos">
			<a href="http://www.ekudos.nl/artikel/nieuw?url=http://www.64bitjungle.com/tech/boinc-and-setihome-with-conky-on-ubuntu/&amp;title=BOINC+and+SETI%40Home+Data+Output+with+Conky&amp;desc=Since%20my%20previous%20article%20about%20Conky%2C%20Conky%20on%20Ubunty%2064%20Bit%20-%20.conkyrc%2C%20I%27ve%20been%20playing%20around%20with%20trying%20to%20get%20Conky%20to%20output%20some%20BOINC%20%28SETI%40Home%20data%29%2C%20and%20through%20a%20little%20digging%2C%20found%20a%20couple%20of%20very%20useful%20resources.%20The%20first%20being%20BOINC%27s%20own%20client_status.xml%20file%2C%20located%20on%20Ubu" rel="nofollow" class="external" title="Submit this to eKudos">Submit this to eKudos</a>
		</li>
		<li class="sexy-netvouz">
			<a href="http://www.netvouz.com/action/submitBookmark?url=http://www.64bitjungle.com/tech/boinc-and-setihome-with-conky-on-ubuntu/&amp;title=BOINC+and+SETI%40Home+Data+Output+with+Conky&amp;popup=no" rel="nofollow" class="external" title="Submit this to Netvouz">Submit this to Netvouz</a>
		</li>
		<li class="sexy-netvibes">
			<a href="http://www.netvibes.com/share?title=BOINC+and+SETI%40Home+Data+Output+with+Conky&amp;url=http://www.64bitjungle.com/tech/boinc-and-setihome-with-conky-on-ubuntu/" rel="nofollow" class="external" title="Submit this to Netvibes">Submit this to Netvibes</a>
		</li>
		<li class="sexy-fleck">
			<a href="http://beta3.fleck.com/bookmarklet.php?url=http://www.64bitjungle.com/tech/boinc-and-setihome-with-conky-on-ubuntu/&amp;title=BOINC+and+SETI%40Home+Data+Output+with+Conky" rel="nofollow" class="external" title="Share this on Fleck">Share this on Fleck</a>
		</li>
		<li class="sexy-blogospherenews">
			<a href="http://www.blogospherenews.com/submit.php?url=http://www.64bitjungle.com/tech/boinc-and-setihome-with-conky-on-ubuntu/&amp;title=BOINC+and+SETI%40Home+Data+Output+with+Conky" rel="nofollow" class="external" title="Share this on Blogosphere News">Share this on Blogosphere News</a>
		</li>
		<li class="sexy-webblend">
			<a href="http://thewebblend.com/submit?url=http://www.64bitjungle.com/tech/boinc-and-setihome-with-conky-on-ubuntu/&amp;title=BOINC+and+SETI%40Home+Data+Output+with+Conky&amp;body=Since%20my%20previous%20article%20about%20Conky%2C%20Conky%20on%20Ubunty%2064%20Bit%20-%20.conkyrc%2C%20I%27ve%20been%20playing%20around%20with%20trying%20to%20get%20Conky%20to%20output%20some%20BOINC%20%28SETI%40Home%20data%29%2C%20and%20through%20a%20little%20digging%2C%20found%20a%20couple%20of%20very%20useful%20resources.%20The%20first%20being%20BOINC%27s%20own%20client_status.xml%20file%2C%20located%20on%20Ubu" rel="nofollow" class="external" title="Blend this!">Blend this!</a>
		</li>
		<li class="sexy-wykop">
			<a href="http://www.wykop.pl/dodaj?url=http://www.64bitjungle.com/tech/boinc-and-setihome-with-conky-on-ubuntu/&amp;title=BOINC+and+SETI%40Home+Data+Output+with+Conky" rel="nofollow" class="external" title="Add this to Wykop!">Add this to Wykop!</a>
		</li>
		<li class="sexy-blogengage">
			<a href="http://www.blogengage.com/submit.php?url=http://www.64bitjungle.com/tech/boinc-and-setihome-with-conky-on-ubuntu/" rel="nofollow" class="external" title="Engage with this article!">Engage with this article!</a>
		</li>
		<li class="sexy-hyves">
			<a href="http://www.hyves.nl/profilemanage/add/tips/?name=BOINC+and+SETI%40Home+Data+Output+with+Conky&amp;text=Since%20my%20previous%20article%20about%20Conky%2C%20Conky%20on%20Ubunty%2064%20Bit%20-%20.conkyrc%2C%20I%27ve%20been%20playing%20around%20with%20trying%20to%20get%20Conky%20to%20output%20some%20BOINC%20%28SETI%40Home%20data%29%2C%20and%20through%20a%20little%20digging%2C%20found%20a%20couple%20of%20very%20useful%20resources.%20The%20first%20being%20BOINC%27s%20own%20client_status.xml%20file%2C%20located%20on%20Ubu+-+http://www.64bitjungle.com/tech/boinc-and-setihome-with-conky-on-ubuntu/&amp;rating=5" rel="nofollow" class="external" title="Share this on Hyves">Share this on Hyves</a>
		</li>
		<li class="sexy-pusha">
			<a href="http://www.pusha.se/posta?url=http://www.64bitjungle.com/tech/boinc-and-setihome-with-conky-on-ubuntu/&amp;title=BOINC+and+SETI%40Home+Data+Output+with+Conky" rel="nofollow" class="external" title="Push this on Pusha">Push this on Pusha</a>
		</li>
		<li class="sexy-hatena">
			<a href="http://b.hatena.ne.jp/add?mode=confirm&amp;url=http://www.64bitjungle.com/tech/boinc-and-setihome-with-conky-on-ubuntu/&amp;title=BOINC+and+SETI%40Home+Data+Output+with+Conky" rel="nofollow" class="external" title="Bookmarks this on Hatena Bookmarks">Bookmarks this on Hatena Bookmarks</a>
		</li>
		<li class="sexy-mylinkvault">
			<a href="http://www.mylinkvault.com/link-page.php?u=http://www.64bitjungle.com/tech/boinc-and-setihome-with-conky-on-ubuntu/&amp;n=BOINC+and+SETI%40Home+Data+Output+with+Conky" rel="nofollow" class="external" title="Store this link on MyLinkVault">Store this link on MyLinkVault</a>
		</li>
		<li class="sexy-slashdot">
			<a href="http://slashdot.org/bookmark.pl?url=http://www.64bitjungle.com/tech/boinc-and-setihome-with-conky-on-ubuntu/&amp;title=BOINC+and+SETI%40Home+Data+Output+with+Conky" rel="nofollow" class="external" title="Submit this to SlashDot">Submit this to SlashDot</a>
		</li>
		<li class="sexy-squidoo">
			<a href="http://www.squidoo.com/lensmaster/bookmark?http://www.64bitjungle.com/tech/boinc-and-setihome-with-conky-on-ubuntu/" rel="nofollow" class="external" title="Add to a lense on Squidoo">Add to a lense on Squidoo</a>
		</li>
		<li class="sexy-propeller">
			<a href="http://www.propeller.com/submit/?url=http://www.64bitjungle.com/tech/boinc-and-setihome-with-conky-on-ubuntu/" rel="nofollow" class="external" title="Submit this story to Propeller">Submit this story to Propeller</a>
		</li>
		<li class="sexy-faqpal">
			<a href="http://www.faqpal.com/submit?url=http://www.64bitjungle.com/tech/boinc-and-setihome-with-conky-on-ubuntu/" rel="nofollow" class="external" title="Submit this to FAQpal">Submit this to FAQpal</a>
		</li>
		<li class="sexy-evernote">
			<a href="http://www.evernote.com/clip.action?url=http://www.64bitjungle.com/tech/boinc-and-setihome-with-conky-on-ubuntu/&amp;title=BOINC+and+SETI%40Home+Data+Output+with+Conky" rel="nofollow" class="external" title="Clip this to Evernote">Clip this to Evernote</a>
		</li>
		<li class="sexy-meneame">
			<a href="http://meneame.net/submit.php?url=http://www.64bitjungle.com/tech/boinc-and-setihome-with-conky-on-ubuntu/" rel="nofollow" class="external" title="Submit this to Meneame">Submit this to Meneame</a>
		</li>
		<li class="sexy-bitacoras">
			<a href="http://bitacoras.com/anotaciones/http://www.64bitjungle.com/tech/boinc-and-setihome-with-conky-on-ubuntu/" rel="nofollow" class="external" title="Submit this to Bitacoras">Submit this to Bitacoras</a>
		</li>
		<li class="sexy-jumptags">
			<a href="http://www.jumptags.com/add/?url=http://www.64bitjungle.com/tech/boinc-and-setihome-with-conky-on-ubuntu/&amp;title=BOINC+and+SETI%40Home+Data+Output+with+Conky" rel="nofollow" class="external" title="Submit this link to JumpTags">Submit this link to JumpTags</a>
		</li>
		<li class="sexy-bebo">
			<a href="http://www.bebo.com/c/share?Url=http://www.64bitjungle.com/tech/boinc-and-setihome-with-conky-on-ubuntu/&amp;Title=BOINC+and+SETI%40Home+Data+Output+with+Conky" rel="nofollow" class="external" title="Share this on Bebo">Share this on Bebo</a>
		</li>
		<li class="sexy-n4g">
			<a href="http://www.n4g.com/tips.aspx?url=http://www.64bitjungle.com/tech/boinc-and-setihome-with-conky-on-ubuntu/&amp;title=BOINC+and+SETI%40Home+Data+Output+with+Conky" rel="nofollow" class="external" title="Submit tip to N4G">Submit tip to N4G</a>
		</li>
		<li class="sexy-orkut">
			<a href="http://promote.orkut.com/preview?nt=orkut.com&amp;tt=BOINC+and+SETI%40Home+Data+Output+with+Conky&amp;du=http://www.64bitjungle.com/tech/boinc-and-setihome-with-conky-on-ubuntu/&amp;cn=Since%20my%20previous%20article%20about%20Conky%2C%20Conky%20on%20Ubunty%2064%20Bit%20-%20.conkyrc%2C%20I%27ve%20been%20playing%20around%20with%20trying%20to%20get%20Conky%20to%20output%20some%20BOINC%20%28SETI%40Home%20data%29%2C%20and%20through%20a%20little%20digging%2C%20found%20a%20couple%20of%20very%20useful%20resources.%20The%20first%20being%20BOINC%27s%20own%20client_status.xml%20file%2C%20located%20on%20Ubu" rel="nofollow" class="external" title="Promote this on Orkut">Promote this on Orkut</a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>
<!-- End SexyBookmarks Menu Code -->



<p>No related posts.</p>
<p>Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://www.64bitjungle.com/tech/boinc-and-setihome-with-conky-on-ubuntu/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>Conky on Ubuntu 64 Bit &#8211; .conkyrc</title>
		<link>http://www.64bitjungle.com/tech/conky-on-ubuntu-64-bit-conkyrc/</link>
		<comments>http://www.64bitjungle.com/tech/conky-on-ubuntu-64-bit-conkyrc/#comments</comments>
		<pubDate>Sun, 09 Mar 2008 09:28:18 +0000</pubDate>
		<dc:creator>Hodge</dc:creator>
				<category><![CDATA[Conky]]></category>
		<category><![CDATA[Programming]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[Ubuntu]]></category>
		<category><![CDATA[64 bit]]></category>
		<category><![CDATA[conkyrc]]></category>
		<category><![CDATA[HowTo]]></category>

		<guid isPermaLink="false">http://www.64bitjungle.com/tech/conky-on-ubuntu-64-bit-conkyrc/</guid>
		<description><![CDATA[I recently installed Conky, which is a highly configurable and &#8220;light weight system monitor&#8221;. As with many packages, it&#8217;s available via the Ubuntu Repositories:
sudo apt-get install conky
The default installation outputs some pretty useful information about the system &#8211; CPU usage, RAM/Swap usage, HD IO, HDD space and so on, and there are also some awesome [...]


No related posts.

Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.]]></description>
			<content:encoded><![CDATA[<p><img src="http://www.64bitjungle.com/wp-content/uploads/2008/03/conky.png" alt="Conky Screenshot" align="right" />I recently installed <a href="http://conky.sourceforge.net/" target="_blank">Conky</a>, which is a highly configurable and &#8220;light weight system monitor&#8221;. As with many packages, it&#8217;s available via the Ubuntu Repositories:</p>
<p><code>sudo apt-get install conky</code></p>
<p>The default installation outputs some pretty useful information about the system &#8211; CPU usage, RAM/Swap usage, HD IO, HDD space and so on, and there are also some awesome scripts available to pull in other information to the display. The data monitored by Conky is controlled by the <span style="font-family: monospace; font-size: 120%">.conkyrc</span> file locate in the user Home directory <span style="font-family: monospace; font-size: 120%">~/.conkyrc</span>. Opening and editing, or creating this file if it doesn&#8217;t exist (Applications -&gt; Accessories -&gt; Text Editor then Save As .conkyrc in the home directory), <span style="font-family: monospace; font-size: 120%">.conkyrc</span> allows full control of how Conky gathers and displays information. The first section of the file, controls how the physical aspects of Conky is handled &#8211; the window size, transparency, position on the desctop etc., and the second part of the file takes a number of variables &#8211; both built in to Conky (which gather information such as RAM usage, etc.), and via <span style="font-family: monospace; font-size: 120%">exec</span>, <span style="font-family: monospace; font-size: 120%">execi</span> and <span style="font-family: monospace; font-size: 120%">texeci</span> commands.</p>
<p>The <a href="http://conky.sourceforge.net/" target="_blank">Conky</a>  website has a great references on the <a href="http://conky.sourceforge.net/config_settings.html" target="_blank">configuration settings</a>, <a href="http://conky.sourceforge.net/variables.html" target="_blank">available variables</a>, and the <a href="http://conky.sourceforge.net/docs.html" target="_blank">man</a> page.</p>
<p>I&#8217;ve also recently written a post which deals specifically with setting up Dual Core processors &#8211; <a href="http://www.64bitjungle.com/tech/conky-dual-core-processors-in-conkyrc/">Conky: Dual Core Processors in .conkyrc</a></p>
<p>As previously mentioned, in addition to Conky&#8217;s built in variables,  it is possible to execute external shell commands, and even Perl/Python etc. scripts, and have the output sent to Conky for processing. I currently have two scripts installed, both obtained from <a href="http://www.ubuntuforums.org" target="_blank">Ubuntu Forums</a>:</p>
<p><strong><a href="http://ubuntuforums.org/showthread.php?t=680265" target="_blank">Conky Gmail Revisited</a>, written by lvleph</strong>, is a Perl script, which logs into your Gmail account, and checks for new mail periodically (the interval of which is actually controlled via the .conkyrc). The Perl script is easy to download and use. Once I saved the script to <span style="font-family: monospace; font-size: 120%">~/ConkyScripts/gmail/gmail.pl</span> I just had to modify the script to enter my Gmail username and password, and make it executable</p>
<p><code>cd ~/ConkyScripts/gmail/<br />
sudo chmod a+x gmail.pl</code></p>
<p>I could then call the script from my <span style="font-family: monospace; font-size: 120%">.conkyrc</span>:</p>
<p><code>You have ${texeci 360 perl ~/ConkyScripts/gmail/gmail.pl n} new gmail(s).</code></p>
<p><span style="font-family: monospace; font-size: 120%">texeci</span> is a Conky command, to which I passed the parameters 360 (an interval in seconds which the script should run), and the shell command to execute &#8211; in this case, perl <span style="font-family: monospace; font-size: 120%">~/ConkyScripts/gmail/gmail.pl n</span> (the n is actually a parameter passed to the gmail.pl script!). The original forum post has a great list of installation instructions, thanks to lvleph.</p>
<p>I also added</p>
<p><code>${execi 360 perl ~/ConkyScripts/gmail/gmail.pl s}</code></p>
<p>to <span style="font-family: monospace; font-size: 120%">.conkyrc</span> which calls the script again, but with &#8220;s&#8221; as the parameter, to output any new email subjects to Conky.</p>
<p><strong><a href="http://ubuntuforums.org/showthread.php?t=666842" target="_blank">Conky Weather Revisited V2</a>, also written by lvleph</strong>, grabs local weather information. It even comes with its own Weather Font! Again, it&#8217;s easy to download and incorporate into the <span style="font-family: monospace; font-size: 120%">.conkyrc</span> file (I recommend the version from <a href="http://ubuntuforums.org/showthread.php?t=666842&amp;page=3" target="_blank">Page 3</a> of the forum thread &#8211; just remember to download the font from the front page). Again, I saved this to its own directory <span style="font-family: monospace; font-size: 120%">~/ConkyScripts/weather/weather.pl</span> and it was just a matter of calling the script from the <span style="font-family: monospace; font-size: 120%">.conkyrc</span> as before. Running</p>
<p><code>./weather.pl</code></p>
<p>in a terminal window outputs the possible parameters which can be passed to the script &#8211; the most important being the area code/city code &#8211; in my case THXX0027, for Mae Hongson. Again, the original forum post has a great list of installation instructions, thanks to lvleph.</p>
<p>I&#8217;ve also recently written a Perl script, which allows BOINC data to be viewed via Conky. See my recent post on <a href="http://www.64bitjungle.com/tech/boinc-and-setihome-with-conky-on-ubuntu/">BOINC and SETI@Home with Conky, on Ubuntu</a>.</p>
<p style="text-align: center"><img src="http://www.64bitjungle.com/wp-content/uploads/2008/03/screenshot.png" alt="Desktop with Conky" /></p>
<p>So, here&#8217;s my full .conkyrc file, for anyone who&#8217;s interested, which outputs the image above &#8211; try and tested on an Acer Aspire 5052, with AMD Turion 64 X2 (Dual Core) Processor:</p>
<p><code># set to yes if you want Conky to be forked in the background<br />
background no<br />
cpu_avg_samples 2<br />
net_avg_samples 2<br />
out_to_console no<br />
# Use Xft?<br />
use_xft yes<br />
# Xft font when Xft is enabled<br />
xftfont Bitstream Vera Sans Mono:size=8<br />
# Text alpha when using Xft<br />
xftalpha 0.8<br />
on_bottom yes<br />
# Update interval in seconds<br />
update_interval 1<br />
# Create own window instead of using desktop (required in nautilus)<br />
own_window yes<br />
own_window_transparent yes<br />
own_window_type override<br />
# Use double buffering (reduces flicker, may not work for everyone)<br />
double_buffer yes<br />
# Minimum size of text area<br />
minimum_size 260 5<br />
maximum_width 260<br />
# Draw shades?<br />
draw_shades no<br />
# Draw outlines?<br />
draw_outline no<br />
# Draw borders around text<br />
draw_borders no<br />
# Stippled borders?<br />
stippled_borders no<br />
# border margins<br />
border_margin 4<br />
# border width<br />
border_width 1<br />
# Default colors and also border colors<br />
default_color white<br />
default_shade_color white<br />
default_outline_color white<br />
# Text alignment, other possible values are commented<br />
gap_x 15<br />
gap_y 30<br />
alignment top_right<br />
# Gap between borders of screen and text<br />
# Add spaces to keep things from moving about?  This only affects certain objects.<br />
use_spacer no<br />
# Subtract file system buffers from used memory?<br />
no_buffers yes<br />
# set to yes if you want all text to be in uppercase<br />
uppercase no<br />
# boinc (seti) dir<br />
seti_dir /usr/lib/boinc-app-seti/setiathome_enhanced<br />
TEXT<br />
${color #42AE4A}$sysname $kernel $machine - $nodename<br />
${color #42AE4A}Uptime:${color lightgrey} $uptime ${color #42AE4A} Load:${color lightgrey} $loadavg<br />
${color lightgrey}${hr}<br />
${color #42AE4A}Usage (Avg):${color #42AE4A} ${freq_dyn_g}Ghz ${color lightgrey}${cpu cpu0}% ${alignr}${color #42AE4A}${cpubar cpu0 5,80}<br />
${color #42AE4A}Usage (Core 1):${color #42AE4A} ${freq_dyn_g cpu1}Ghz ${color lightgrey}${cpu cpu1}% ${alignr}${color #42AE4A}${cpubar cpu1 5,80}<br />
${color #42AE4A}Usage (Core 2):${color #42AE4A} ${freq_dyn_g cpu2}Ghz ${color lightgrey}${cpu cpu2}% ${alignr}${color #42AE4A}${cpubar cpu2 5,80}<br />
${color #42AE4A}Average<br />
${cpugraph cpu0 42AE4A eeeeee}<br />
${color #42AE4A}Core 1 $alignr Core 2<br />
${color #42AE4A}${cpugraph cpu1 25,120 42AE4A eeeeee} ${color #42AE4A} $alignr${color #42AE4A}${cpugraph cpu2 25,120 42AE4A eeeeee}<br />
${color #42AE4A}Processes:${color lightgrey} $processes  ${color #42AE4A}Run:${color lightgrey} $running_processes ${color #42AE4A}CPU Temp:${color lightgrey} ${execi 1100  cat /proc/acpi/thermal_zone/THRM/temperature | grep 'temperature:' | sed -e 's/temperature:             //'}<br />
${color #42AE4A}Core 1 Temp: ${color lightgrey}${execi 8 sensors | grep -A 1 'Core0' | cut -c13-16 | sed '/^$/d'} C ${color #42AE4A}Core 2 Temp: ${color lightgrey}${execi 8 sensors | grep -A 1 'Core1' | cut -c13-16 | sed '/^$/d'} C<br />
${color lightgrey}${hr}<br />
${color #42AE4A}CPU Usage         PID     CPU%   MEM%<br />
${color lightgrey} ${top name 1} ${top pid 1} ${top cpu 1} ${top mem 1}<br />
${color #42AE4A} ${top name 2} ${top pid 2} ${top cpu 2} ${top mem 2}<br />
${color #42AE4A} ${top name 3} ${top pid 3} ${top cpu 3} ${top mem 3}<br />
${color #42AE4A}Mem Usage<br />
${color lightgrey} ${top_mem name 1} ${top_mem pid 1} ${top_mem cpu 1} ${top_mem mem 1}<br />
${color #42AE4A} ${top_mem name 2} ${top_mem pid 2} ${top_mem cpu 2} ${top_mem mem 2}<br />
${color #42AE4A} ${top_mem name 3} ${top_mem pid 3} ${top_mem cpu 3} ${top_mem mem 3}<br />
${color lightgrey}${hr}<br />
${color #42AE4A}RAM:${color lightgrey} $mem/$memmax ($memperc%) ${alignr}${color #42AE4A}${membar 5,100}<br />
${color #42AE4A}SWAP:${color lightgrey} $swap/$swapmax ($swapperc%) ${alignr}${color #42AE4A}${swapbar 5,100}<br />
${color #42AE4A}HD IO: ${color lightgrey}${diskio}<br />
${color #42AE4A}${diskiograph 42AE4A eeeeee}<br />
${color #42AE4A}Hard Disk Space:<br />
${color #42AE4A} Root ${color lightgrey}${fs_used /}/${fs_size /}${alignr}${color #42AE4A}${fs_bar 5,120 /}<br />
${color #42AE4A} Win  ${color lightgrey}${fs_used /media/hda1}/${fs_size /media/hda1}${alignr}${color #42AE4A}${fs_bar 5,120 /media/hda1}<br />
${color #42AE4A} Data ${color lightgrey}${fs_used /media/hda5}/${fs_size /media/hda5}${alignr}${color #42AE4A}${fs_bar 5,120 /media/hda5}<br />
${color lightgrey}${hr}<br />
${color #42AE4A}Network: ${color lightgrey}${addr eth0}<br />
${color #42AE4A}Down:${color lightgrey} ${downspeed eth0} k/s $alignr${color #42AE4A} Up:${color lightgrey} ${upspeed eth0} k/s<br />
${color #42AE4A}${downspeedgraph eth0 27,120 42AE4A eeeeee 180} $alignr${color #42AE4A}${upspeedgraph eth0 27,120 42AE4A eeeeee 25}<br />
${color lightgrey}${totaldown eth0}           $alignr${color lightgrey}${totalup eth0}<br />
${color #42AE4A}Power: ${color lightgrey}${execi 2 acpi | sed -e 's/ .*: //'}<br />
${color #42AE4A}You have ${color lightgrey}${texeci 360 perl ~/ConkyScripts/gmail/gmail.pl n} ${color #42AE4A}new gmail(s).<br />
${color lightgrey}${execi 360 perl ~/ConkyScripts/gmail/gmail.pl s}<br />
${color #42AE4A}$font${alignc}Mae Hongson Weather<br />
${color #42AE4A}$font${alignc}Today<br />
${alignc}${voffset -5}${color lightgrey}${font weather:size=30}${execi 3600 perl ~/ConkyScripts/weather/weather.pl THXX0027 c cp}${font}$color${voffset -15}${offset 10}${color lightgrey}${execi 3600 perl ~/ConkyScripts/weather/weather.pl THXX0027 c c}<br />
${voffset 5}${color #42AE4A}$font${alignc}5 Day Forcast<br />
${voffset -5}${font weather:size=30}${alignc}${offset -45}${execi 3600 perl ~/ConkyScripts/weather/weather.pl THXX0027 c 1p}${offset 25}${color orange}${execi 3600 perl ~/ConkyScripts/weather/weather.pl THXX0027 c 2p}${offset 25}${color cyan}${execi 3600 perl ~/ConkyScripts/weather/weather.pl THXX0027 c 3p}${offset 24}${color green}${execi 3600 perl ~/ConkyScripts/weather/weather.pl THXX0027 c 4p}${offset 23}${color red}${execi 3600 perl ~/ConkyScripts/weather/weather.pl THXX0027 c 5p}${font}$color<br />
${alignc}${offset -15}${execi 3600 perl ~/ConkyScripts/weather/weather.pl THXX0027 c 1}${offset 10}${execi 3600 perl ~/ConkyScripts/weather/weather.pl THXX0027 c 2}${offset 10}${execi 3600 perl ~/ConkyScripts/weather/weather.pl THXX0027 c 3}${offset 10}${execi 3600 perl ~/ConkyScripts/weather/weather.pl THXX0027 c 4}${offset 10}${execi 3600 perl ~/ConkyScripts/weather/weather.pl THXX0027 c 5}<br />
</code></p>
<p>The &#8220;<a href="http://ubuntuforums.org/showthread.php?t=281865" target="_blank">Post your .conkyrc files w/ screenshots</a>&#8221; thread over at Ubuntu Forums has many other <span style="font-family: monospace; font-size: 120%">.conkyrc</span> examples to peruse.</p>
<script type="text/javascript" class="owbutton" src="http://onlywire.com/button" title="Conky on Ubuntu 64 Bit - .conkyrc" url="http://www.64bitjungle.com/tech/conky-on-ubuntu-64-bit-conkyrc/"></script>

<!-- Begin SexyBookmarks Menu Code -->
<div class="sexy-bookmarks sexy-bookmarks-expand sexy-bookmarks-bg-caring-old">
<ul class="socials">
		<li class="sexy-scriptstyle">
			<a href="http://scriptandstyle.com/submit?url=http://www.64bitjungle.com/tech/conky-on-ubuntu-64-bit-conkyrc/&amp;title=Conky+on+Ubuntu+64+Bit+-+.conkyrc" rel="nofollow" class="external" title="Submit this to Script &amp; Style">Submit this to Script &amp; Style</a>
		</li>
		<li class="sexy-blinklist">
			<a href="http://www.blinklist.com/index.php?Action=Blink/addblink.php&amp;Url=http://www.64bitjungle.com/tech/conky-on-ubuntu-64-bit-conkyrc/&amp;Title=Conky+on+Ubuntu+64+Bit+-+.conkyrc" rel="nofollow" class="external" title="Share this on Blinklist">Share this on Blinklist</a>
		</li>
		<li class="sexy-delicious">
			<a href="http://del.icio.us/post?url=http://www.64bitjungle.com/tech/conky-on-ubuntu-64-bit-conkyrc/&amp;title=Conky+on+Ubuntu+64+Bit+-+.conkyrc" rel="nofollow" class="external" title="Share this on del.icio.us">Share this on del.icio.us</a>
		</li>
		<li class="sexy-digg">
			<a href="http://digg.com/submit?phase=2&amp;url=http://www.64bitjungle.com/tech/conky-on-ubuntu-64-bit-conkyrc/&amp;title=Conky+on+Ubuntu+64+Bit+-+.conkyrc" rel="nofollow" class="external" title="Digg this!">Digg this!</a>
		</li>
		<li class="sexy-diigo">
			<a href="http://www.diigo.com/post?url=http://www.64bitjungle.com/tech/conky-on-ubuntu-64-bit-conkyrc/&amp;title=Conky+on+Ubuntu+64+Bit+-+.conkyrc&amp;desc=I%20recently%20installed%20Conky%2C%20which%20is%20a%20highly%20configurable%20and%20%22light%20weight%20system%20monitor%22.%20As%20with%20many%20packages%2C%20it%27s%20available%20via%20the%20Ubuntu%20Repositories%3A%0D%0A%0D%0Asudo%20apt-get%20install%20conky%0D%0A%0D%0AThe%20default%20installation%20outputs%20some%20pretty%20useful%20information%20about%20the%20system%20-%20CPU%20usage%2C%20RAM%2FSwap%20usa" rel="nofollow" class="external" title="Post this on Diigo">Post this on Diigo</a>
		</li>
		<li class="sexy-reddit">
			<a href="http://reddit.com/submit?url=http://www.64bitjungle.com/tech/conky-on-ubuntu-64-bit-conkyrc/&amp;title=Conky+on+Ubuntu+64+Bit+-+.conkyrc" rel="nofollow" class="external" title="Share this on Reddit">Share this on Reddit</a>
		</li>
		<li class="sexy-yahoobuzz">
			<a href="http://buzz.yahoo.com/submit/?submitUrl=http://www.64bitjungle.com/tech/conky-on-ubuntu-64-bit-conkyrc/&amp;submitHeadline=Conky+on+Ubuntu+64+Bit+-+.conkyrc&amp;submitSummary=I%20recently%20installed%20Conky%2C%20which%20is%20a%20highly%20configurable%20and%20%22light%20weight%20system%20monitor%22.%20As%20with%20many%20packages%2C%20it%27s%20available%20via%20the%20Ubuntu%20Repositories%3A%0D%0A%0D%0Asudo%20apt-get%20install%20conky%0D%0A%0D%0AThe%20default%20installation%20outputs%20some%20pretty%20useful%20information%20about%20the%20system%20-%20CPU%20usage%2C%20RAM%2FSwap%20usa&amp;submitCategory=science&amp;submitAssetType=text" rel="nofollow" class="external" title="Buzz up!">Buzz up!</a>
		</li>
		<li class="sexy-stumbleupon">
			<a href="http://www.stumbleupon.com/submit?url=http://www.64bitjungle.com/tech/conky-on-ubuntu-64-bit-conkyrc/&amp;title=Conky+on+Ubuntu+64+Bit+-+.conkyrc" rel="nofollow" class="external" title="Stumble upon something good? Share it on StumbleUpon">Stumble upon something good? Share it on StumbleUpon</a>
		</li>
		<li class="sexy-technorati">
			<a href="http://technorati.com/faves?add=http://www.64bitjungle.com/tech/conky-on-ubuntu-64-bit-conkyrc/" rel="nofollow" class="external" title="Share this on Technorati">Share this on Technorati</a>
		</li>
		<li class="sexy-mixx">
			<a href="http://www.mixx.com/submit?page_url=http://www.64bitjungle.com/tech/conky-on-ubuntu-64-bit-conkyrc/&amp;title=Conky+on+Ubuntu+64+Bit+-+.conkyrc" rel="nofollow" class="external" title="Share this on Mixx">Share this on Mixx</a>
		</li>
		<li class="sexy-myspace">
			<a href="http://www.myspace.com/Modules/PostTo/Pages/?u=http://www.64bitjungle.com/tech/conky-on-ubuntu-64-bit-conkyrc/&amp;t=Conky+on+Ubuntu+64+Bit+-+.conkyrc" rel="nofollow" class="external" title="Post this to MySpace">Post this to MySpace</a>
		</li>
		<li class="sexy-designfloat">
			<a href="http://www.designfloat.com/submit.php?url=http://www.64bitjungle.com/tech/conky-on-ubuntu-64-bit-conkyrc/&amp;title=Conky+on+Ubuntu+64+Bit+-+.conkyrc" rel="nofollow" class="external" title="Submit this to DesignFloat">Submit this to DesignFloat</a>
		</li>
		<li class="sexy-facebook">
			<a href="http://www.facebook.com/share.php?v=4&amp;src=bm&amp;u=http://www.64bitjungle.com/tech/conky-on-ubuntu-64-bit-conkyrc/&amp;t=Conky+on+Ubuntu+64+Bit+-+.conkyrc" rel="nofollow" class="external" title="Share this on Facebook">Share this on Facebook</a>
		</li>
		<li class="sexy-twitter">
			<a href="http://twitter.com/home?status=Conky+on+Ubuntu+64+Bit+-+.conkyrc+-+http://tinyurl.com/cqwbqn+(via+@64bitjungle)" rel="nofollow" class="external" title="Tweet This!">Tweet This!</a>
		</li>
		<li class="sexy-mail">
			<a href="mailto:?subject=%22Conky%20on%20Ubuntu%2064%20Bit%20-%20.conkyrc%22&amp;body=I%20thought%20this%20article%20might%20interest%20you.%0A%0A%22I%20recently%20installed%20Conky%2C%20which%20is%20a%20highly%20configurable%20and%20%22light%20weight%20system%20monitor%22.%20As%20with%20many%20packages%2C%20it%27s%20available%20via%20the%20Ubuntu%20Repositories%3A%0D%0A%0D%0Asudo%20apt-get%20install%20conky%0D%0A%0D%0AThe%20default%20installation%20outputs%20some%20pretty%20useful%20information%20about%20the%20system%20-%20CPU%20usage%2C%20RAM%2FSwap%20usa%22%0A%0AYou%20can%20read%20the%20full%20article%20here%3A%20http://www.64bitjungle.com/tech/conky-on-ubuntu-64-bit-conkyrc/" rel="nofollow" class="external" title="Email this to a friend?">Email this to a friend?</a>
		</li>
		<li class="sexy-tomuse">
			<a href="mailto:tips@tomuse.com?subject=New%20tip%20submitted%20via%20the%20SexyBookmarks%20Plugin!&amp;body=I%20would%20like%20to%20submit%20this%20article%3A%20%22Conky%20on%20Ubuntu%2064%20Bit%20-%20.conkyrc%22%20for%20possible%20inclusion%20on%20ToMuse.%0A%0A%22I%20recently%20installed%20Conky%2C%20which%20is%20a%20highly%20configurable%20and%20%22light%20weight%20system%20monitor%22.%20As%20with%20many%20packages%2C%20it%27s%20available%20via%20the%20Ubuntu%20Repositories%3A%0D%0A%0D%0Asudo%20apt-get%20install%20conky%0D%0A%0D%0AThe%20default%20installation%20outputs%20some%20pretty%20useful%20information%20about%20the%20system%20-%20CPU%20usage%2C%20RAM%2FSwap%20usa%22%0A%0AYou%20can%20read%20the%20full%20article%20here%3A%20http://www.64bitjungle.com/tech/conky-on-ubuntu-64-bit-conkyrc/" rel="nofollow" class="external" title="Suggest this article to ToMuse">Suggest this article to ToMuse</a>
		</li>
		<li class="sexy-comfeed">
			<a href="http://www.64bitjungle.com/tech/conky-on-ubuntu-64-bit-conkyrc/feed" rel="nofollow" class="external" title="Subscribe to the comments for this post?">Subscribe to the comments for this post?</a>
		</li>
		<li class="sexy-linkedin">
			<a href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http://www.64bitjungle.com/tech/conky-on-ubuntu-64-bit-conkyrc/&amp;title=Conky+on+Ubuntu+64+Bit+-+.conkyrc&amp;summary=I%20recently%20installed%20Conky%2C%20which%20is%20a%20highly%20configurable%20and%20%22light%20weight%20system%20monitor%22.%20As%20with%20many%20packages%2C%20it%27s%20available%20via%20the%20Ubuntu%20Repositories%3A%0D%0A%0D%0Asudo%20apt-get%20install%20conky%0D%0A%0D%0AThe%20default%20installation%20outputs%20some%20pretty%20useful%20information%20about%20the%20system%20-%20CPU%20usage%2C%20RAM%2FSwap%20usa&amp;source=64 Bit Jungle" rel="nofollow" class="external" title="Share this on Linkedin">Share this on Linkedin</a>
		</li>
		<li class="sexy-newsvine">
			<a href="http://www.newsvine.com/_tools/seed&amp;save?u=http://www.64bitjungle.com/tech/conky-on-ubuntu-64-bit-conkyrc/&amp;h=Conky+on+Ubuntu+64+Bit+-+.conkyrc" rel="nofollow" class="external" title="Seed this on Newsvine">Seed this on Newsvine</a>
		</li>
		<li class="sexy-devmarks">
			<a href="http://devmarks.com/index.php?posttext=I%20recently%20installed%20Conky%2C%20which%20is%20a%20highly%20configurable%20and%20%22light%20weight%20system%20monitor%22.%20As%20with%20many%20packages%2C%20it%27s%20available%20via%20the%20Ubuntu%20Repositories%3A%0D%0A%0D%0Asudo%20apt-get%20install%20conky%0D%0A%0D%0AThe%20default%20installation%20outputs%20some%20pretty%20useful%20information%20about%20the%20system%20-%20CPU%20usage%2C%20RAM%2FSwap%20usa&amp;posturl=http://www.64bitjungle.com/tech/conky-on-ubuntu-64-bit-conkyrc/&amp;posttitle=Conky+on+Ubuntu+64+Bit+-+.conkyrc" rel="nofollow" class="external" title="Share this on Devmarks">Share this on Devmarks</a>
		</li>
		<li class="sexy-google">
			<a href="http://www.google.com/bookmarks/mark?op=add&amp;bkmk=http://www.64bitjungle.com/tech/conky-on-ubuntu-64-bit-conkyrc/&amp;title=Conky+on+Ubuntu+64+Bit+-+.conkyrc" rel="nofollow" class="external" title="Add this to Google Bookmarks">Add this to Google Bookmarks</a>
		</li>
		<li class="sexy-misterwong">
			<a href="http://www.mister-wong.com/addurl/?bm_url=http://www.64bitjungle.com/tech/conky-on-ubuntu-64-bit-conkyrc/&amp;bm_description=Conky+on+Ubuntu+64+Bit+-+.conkyrc&amp;plugin=sexybookmarks" rel="nofollow" class="external" title="Add this to Mister Wong">Add this to Mister Wong</a>
		</li>
		<li class="sexy-izeby">
			<a href="http://izeby.com/submit.php?url=http://www.64bitjungle.com/tech/conky-on-ubuntu-64-bit-conkyrc/" rel="nofollow" class="external" title="Add this to Izeby">Add this to Izeby</a>
		</li>
		<li class="sexy-tipd">
			<a href="http://tipd.com/submit.php?url=http://www.64bitjungle.com/tech/conky-on-ubuntu-64-bit-conkyrc/" rel="nofollow" class="external" title="Share this on Tipd">Share this on Tipd</a>
		</li>
		<li class="sexy-pfbuzz">
			<a href="http://pfbuzz.com/submit?url=http://www.64bitjungle.com/tech/conky-on-ubuntu-64-bit-conkyrc/&amp;title=Conky+on+Ubuntu+64+Bit+-+.conkyrc" rel="nofollow" class="external" title="Share this on PFBuzz">Share this on PFBuzz</a>
		</li>
		<li class="sexy-friendfeed">
			<a href="http://www.friendfeed.com/share?title=Conky+on+Ubuntu+64+Bit+-+.conkyrc&amp;link=http://www.64bitjungle.com/tech/conky-on-ubuntu-64-bit-conkyrc/" rel="nofollow" class="external" title="Share this on FriendFeed">Share this on FriendFeed</a>
		</li>
		<li class="sexy-blogmarks">
			<a href="http://blogmarks.net/my/new.php?mini=1&amp;simple=1&amp;url=http://www.64bitjungle.com/tech/conky-on-ubuntu-64-bit-conkyrc/&amp;title=Conky+on+Ubuntu+64+Bit+-+.conkyrc" rel="nofollow" class="external" title="Mark this on BlogMarks">Mark this on BlogMarks</a>
		</li>
		<li class="sexy-twittley">
			<a href="http://twittley.com/submit/?title=Conky+on+Ubuntu+64+Bit+-+.conkyrc&amp;url=http%3A%2F%2Fwww.64bitjungle.com%2Ftech%2Fconky-on-ubuntu-64-bit-conkyrc%2F&amp;desc=I%20recently%20installed%20Conky%2C%20which%20is%20a%20highly%20configurable%20and%20%22light%20weight%20system%20monitor%22.%20As%20with%20many%20packages%2C%20it%27s%20available%20via%20the%20Ubuntu%20Repositories%3A%0D%0A%0D%0Asudo%20apt-get%20install%20conky%0D%0A%0D%0AThe%20default%20installation%20outputs%20some%20pretty%20useful%20information%20about%20the%20system%20-%20CPU%20usage%2C%20RAM%2FSwap%20usa&amp;pcat=Technology&amp;tags=" rel="nofollow" class="external" title="Submit this to Twittley">Submit this to Twittley</a>
		</li>
		<li class="sexy-fwisp">
			<a href="http://fwisp.com/submit?url=http://www.64bitjungle.com/tech/conky-on-ubuntu-64-bit-conkyrc/" rel="nofollow" class="external" title="Share this on Fwisp">Share this on Fwisp</a>
		</li>
		<li class="sexy-designmoo">
			<a href="http://designmoo.com/submit?url=http://www.64bitjungle.com/tech/conky-on-ubuntu-64-bit-conkyrc/&amp;title=Conky+on+Ubuntu+64+Bit+-+.conkyrc&amp;body=I%20recently%20installed%20Conky%2C%20which%20is%20a%20highly%20configurable%20and%20%22light%20weight%20system%20monitor%22.%20As%20with%20many%20packages%2C%20it%27s%20available%20via%20the%20Ubuntu%20Repositories%3A%0D%0A%0D%0Asudo%20apt-get%20install%20conky%0D%0A%0D%0AThe%20default%20installation%20outputs%20some%20pretty%20useful%20information%20about%20the%20system%20-%20CPU%20usage%2C%20RAM%2FSwap%20usa" rel="nofollow" class="external" title="Moo this on DesignMoo!">Moo this on DesignMoo!</a>
		</li>
		<li class="sexy-bobrdobr">
			<a href="http://bobrdobr.ru/addext.html?url=http://www.64bitjungle.com/tech/conky-on-ubuntu-64-bit-conkyrc/&amp;title=Conky+on+Ubuntu+64+Bit+-+.conkyrc" rel="nofollow" class="external" title="Share this on BobrDobr">Share this on BobrDobr</a>
		</li>
		<li class="sexy-yandex">
			<a href="http://zakladki.yandex.ru/userarea/links/addfromfav.asp?bAddLink_x=1&amp;lurl=http://www.64bitjungle.com/tech/conky-on-ubuntu-64-bit-conkyrc/&amp;lname=Conky+on+Ubuntu+64+Bit+-+.conkyrc" rel="nofollow" class="external" title="Add this to Yandex.Bookmarks">Add this to Yandex.Bookmarks</a>
		</li>
		<li class="sexy-memoryru">
			<a href="http://memori.ru/link/?sm=1&amp;u_data[url]=http://www.64bitjungle.com/tech/conky-on-ubuntu-64-bit-conkyrc/&amp;u_data[name]=Conky+on+Ubuntu+64+Bit+-+.conkyrc" rel="nofollow" class="external" title="Add this to Memory.ru">Add this to Memory.ru</a>
		</li>
		<li class="sexy-100zakladok">
			<a href="http://www.100zakladok.ru/save/?bmurl=http://www.64bitjungle.com/tech/conky-on-ubuntu-64-bit-conkyrc/&amp;bmtitle=Conky+on+Ubuntu+64+Bit+-+.conkyrc" rel="nofollow" class="external" title="Add this to 100 bookmarks">Add this to 100 bookmarks</a>
		</li>
		<li class="sexy-moemesto">
			<a href="http://moemesto.ru/post.php?url=http://www.64bitjungle.com/tech/conky-on-ubuntu-64-bit-conkyrc/&amp;title=Conky+on+Ubuntu+64+Bit+-+.conkyrc" rel="nofollow" class="external" title="Add this to MyPlace">Add this to MyPlace</a>
		</li>
		<li class="sexy-hackernews">
			<a href="http://news.ycombinator.com/submitlink?u=http://www.64bitjungle.com/tech/conky-on-ubuntu-64-bit-conkyrc/&amp;t=Conky+on+Ubuntu+64+Bit+-+.conkyrc" rel="nofollow" class="external" title="Submit this to Hacker News">Submit this to Hacker News</a>
		</li>
		<li class="sexy-printfriendly">
			<a href="http://www.printfriendly.com/print?url=http://www.64bitjungle.com/tech/conky-on-ubuntu-64-bit-conkyrc/" rel="nofollow" class="external" title="Send this page to Print Friendly">Send this page to Print Friendly</a>
		</li>
		<li class="sexy-designbump">
			<a href="http://designbump.com/submit?url=http://www.64bitjungle.com/tech/conky-on-ubuntu-64-bit-conkyrc/&amp;title=Conky+on+Ubuntu+64+Bit+-+.conkyrc&amp;body=I%20recently%20installed%20Conky%2C%20which%20is%20a%20highly%20configurable%20and%20%22light%20weight%20system%20monitor%22.%20As%20with%20many%20packages%2C%20it%27s%20available%20via%20the%20Ubuntu%20Repositories%3A%0D%0A%0D%0Asudo%20apt-get%20install%20conky%0D%0A%0D%0AThe%20default%20installation%20outputs%20some%20pretty%20useful%20information%20about%20the%20system%20-%20CPU%20usage%2C%20RAM%2FSwap%20usa" rel="nofollow" class="external" title="Bump this on DesignBump">Bump this on DesignBump</a>
		</li>
		<li class="sexy-ning">
			<a href="http://bookmarks.ning.com/addItem.php?url=http://www.64bitjungle.com/tech/conky-on-ubuntu-64-bit-conkyrc/&amp;T=Conky+on+Ubuntu+64+Bit+-+.conkyrc" rel="nofollow" class="external" title="Add this to Ning">Add this to Ning</a>
		</li>
		<li class="sexy-identica">
			<a href="http://identi.ca//index.php?action=newnotice&amp;status_textarea=Reading:+&quot;Conky+on+Ubuntu+64+Bit+-+.conkyrc&quot;+-+from+http://tinyurl.com/cqwbqn" rel="nofollow" class="external" title="Post this to Identica">Post this to Identica</a>
		</li>
		<li class="sexy-xerpi">
			<a href="http://www.xerpi.com/block/add_link_from_extension?url=http://www.64bitjungle.com/tech/conky-on-ubuntu-64-bit-conkyrc/&amp;title=Conky+on+Ubuntu+64+Bit+-+.conkyrc" rel="nofollow" class="external" title="Save this to Xerpi">Save this to Xerpi</a>
		</li>
		<li class="sexy-wikio">
			<a href="http://www.wikio.com/sharethis?url=http://www.64bitjungle.com/tech/conky-on-ubuntu-64-bit-conkyrc/&amp;title=Conky+on+Ubuntu+64+Bit+-+.conkyrc" rel="nofollow" class="external" title="Share this on Wikio">Share this on Wikio</a>
		</li>
		<li class="sexy-techmeme">
			<a href="http://twitter.com/home/?status=Tip+@Techmeme+http://www.64bitjungle.com/tech/conky-on-ubuntu-64-bit-conkyrc/+&quot;Conky+on+Ubuntu+64+Bit+-+.conkyrc&quot;" rel="nofollow" class="external" title="Tip this to TechMeme">Tip this to TechMeme</a>
		</li>
		<li class="sexy-sphinn">
			<a href="http://sphinn.com/index.php?c=post&amp;m=submit&amp;link=http://www.64bitjungle.com/tech/conky-on-ubuntu-64-bit-conkyrc/" rel="nofollow" class="external" title="Sphinn this on Sphinn">Sphinn this on Sphinn</a>
		</li>
		<li class="sexy-posterous">
			<a href="http://posterous.com/share?linkto=http://www.64bitjungle.com/tech/conky-on-ubuntu-64-bit-conkyrc/&amp;title=Conky+on+Ubuntu+64+Bit+-+.conkyrc&amp;selection=I%20recently%20installed%20Conky%2C%20which%20is%20a%20highly%20configurable%20and%20%22light%20weight%20system%20monitor%22.%20As%20with%20many%20packages%2C%20it%27s%20available%20via%20the%20Ubuntu%20Repositories%3A%0D%0A%0D%0Asudo%20apt-get%20install%20conky%0D%0A%0D%0AThe%20default%20installation%20outputs%20some%20pretty%20useful%20information%20about%20the%20system%20-%20CPU%20usage%2C%20RAM%2FSwap%20usa" rel="nofollow" class="external" title="Post this to Posterous">Post this to Posterous</a>
		</li>
		<li class="sexy-globalgrind">
			<a href="http://globalgrind.com/submission/submit.aspx?url=http://www.64bitjungle.com/tech/conky-on-ubuntu-64-bit-conkyrc/&amp;type=Article&amp;title=Conky+on+Ubuntu+64+Bit+-+.conkyrc" rel="nofollow" class="external" title="Grind this! on Global Grind">Grind this! on Global Grind</a>
		</li>
		<li class="sexy-pingfm">
			<a href="http://ping.fm/ref/?link=http://www.64bitjungle.com/tech/conky-on-ubuntu-64-bit-conkyrc/&amp;title=Conky+on+Ubuntu+64+Bit+-+.conkyrc&amp;body=I%20recently%20installed%20Conky%2C%20which%20is%20a%20highly%20configurable%20and%20%22light%20weight%20system%20monitor%22.%20As%20with%20many%20packages%2C%20it%27s%20available%20via%20the%20Ubuntu%20Repositories%3A%0D%0A%0D%0Asudo%20apt-get%20install%20conky%0D%0A%0D%0AThe%20default%20installation%20outputs%20some%20pretty%20useful%20information%20about%20the%20system%20-%20CPU%20usage%2C%20RAM%2FSwap%20usa" rel="nofollow" class="external" title="Ping this on Ping.fm">Ping this on Ping.fm</a>
		</li>
		<li class="sexy-nujij">
			<a href="http://nujij.nl/jij.lynkx?t=Conky+on+Ubuntu+64+Bit+-+.conkyrc&amp;u=http://www.64bitjungle.com/tech/conky-on-ubuntu-64-bit-conkyrc/&amp;b=I%20recently%20installed%20Conky%2C%20which%20is%20a%20highly%20configurable%20and%20%22light%20weight%20system%20monitor%22.%20As%20with%20many%20packages%2C%20it%27s%20available%20via%20the%20Ubuntu%20Repositories%3A%0D%0A%0D%0Asudo%20apt-get%20install%20conky%0D%0A%0D%0AThe%20default%20installation%20outputs%20some%20pretty%20useful%20information%20about%20the%20system%20-%20CPU%20usage%2C%20RAM%2FSwap%20usa" rel="nofollow" class="external" title="Submit this to NUjij">Submit this to NUjij</a>
		</li>
		<li class="sexy-ekudos">
			<a href="http://www.ekudos.nl/artikel/nieuw?url=http://www.64bitjungle.com/tech/conky-on-ubuntu-64-bit-conkyrc/&amp;title=Conky+on+Ubuntu+64+Bit+-+.conkyrc&amp;desc=I%20recently%20installed%20Conky%2C%20which%20is%20a%20highly%20configurable%20and%20%22light%20weight%20system%20monitor%22.%20As%20with%20many%20packages%2C%20it%27s%20available%20via%20the%20Ubuntu%20Repositories%3A%0D%0A%0D%0Asudo%20apt-get%20install%20conky%0D%0A%0D%0AThe%20default%20installation%20outputs%20some%20pretty%20useful%20information%20about%20the%20system%20-%20CPU%20usage%2C%20RAM%2FSwap%20usa" rel="nofollow" class="external" title="Submit this to eKudos">Submit this to eKudos</a>
		</li>
		<li class="sexy-netvouz">
			<a href="http://www.netvouz.com/action/submitBookmark?url=http://www.64bitjungle.com/tech/conky-on-ubuntu-64-bit-conkyrc/&amp;title=Conky+on+Ubuntu+64+Bit+-+.conkyrc&amp;popup=no" rel="nofollow" class="external" title="Submit this to Netvouz">Submit this to Netvouz</a>
		</li>
		<li class="sexy-netvibes">
			<a href="http://www.netvibes.com/share?title=Conky+on+Ubuntu+64+Bit+-+.conkyrc&amp;url=http://www.64bitjungle.com/tech/conky-on-ubuntu-64-bit-conkyrc/" rel="nofollow" class="external" title="Submit this to Netvibes">Submit this to Netvibes</a>
		</li>
		<li class="sexy-fleck">
			<a href="http://beta3.fleck.com/bookmarklet.php?url=http://www.64bitjungle.com/tech/conky-on-ubuntu-64-bit-conkyrc/&amp;title=Conky+on+Ubuntu+64+Bit+-+.conkyrc" rel="nofollow" class="external" title="Share this on Fleck">Share this on Fleck</a>
		</li>
		<li class="sexy-blogospherenews">
			<a href="http://www.blogospherenews.com/submit.php?url=http://www.64bitjungle.com/tech/conky-on-ubuntu-64-bit-conkyrc/&amp;title=Conky+on+Ubuntu+64+Bit+-+.conkyrc" rel="nofollow" class="external" title="Share this on Blogosphere News">Share this on Blogosphere News</a>
		</li>
		<li class="sexy-webblend">
			<a href="http://thewebblend.com/submit?url=http://www.64bitjungle.com/tech/conky-on-ubuntu-64-bit-conkyrc/&amp;title=Conky+on+Ubuntu+64+Bit+-+.conkyrc&amp;body=I%20recently%20installed%20Conky%2C%20which%20is%20a%20highly%20configurable%20and%20%22light%20weight%20system%20monitor%22.%20As%20with%20many%20packages%2C%20it%27s%20available%20via%20the%20Ubuntu%20Repositories%3A%0D%0A%0D%0Asudo%20apt-get%20install%20conky%0D%0A%0D%0AThe%20default%20installation%20outputs%20some%20pretty%20useful%20information%20about%20the%20system%20-%20CPU%20usage%2C%20RAM%2FSwap%20usa" rel="nofollow" class="external" title="Blend this!">Blend this!</a>
		</li>
		<li class="sexy-wykop">
			<a href="http://www.wykop.pl/dodaj?url=http://www.64bitjungle.com/tech/conky-on-ubuntu-64-bit-conkyrc/&amp;title=Conky+on+Ubuntu+64+Bit+-+.conkyrc" rel="nofollow" class="external" title="Add this to Wykop!">Add this to Wykop!</a>
		</li>
		<li class="sexy-blogengage">
			<a href="http://www.blogengage.com/submit.php?url=http://www.64bitjungle.com/tech/conky-on-ubuntu-64-bit-conkyrc/" rel="nofollow" class="external" title="Engage with this article!">Engage with this article!</a>
		</li>
		<li class="sexy-hyves">
			<a href="http://www.hyves.nl/profilemanage/add/tips/?name=Conky+on+Ubuntu+64+Bit+-+.conkyrc&amp;text=I%20recently%20installed%20Conky%2C%20which%20is%20a%20highly%20configurable%20and%20%22light%20weight%20system%20monitor%22.%20As%20with%20many%20packages%2C%20it%27s%20available%20via%20the%20Ubuntu%20Repositories%3A%0D%0A%0D%0Asudo%20apt-get%20install%20conky%0D%0A%0D%0AThe%20default%20installation%20outputs%20some%20pretty%20useful%20information%20about%20the%20system%20-%20CPU%20usage%2C%20RAM%2FSwap%20usa+-+http://www.64bitjungle.com/tech/conky-on-ubuntu-64-bit-conkyrc/&amp;rating=5" rel="nofollow" class="external" title="Share this on Hyves">Share this on Hyves</a>
		</li>
		<li class="sexy-pusha">
			<a href="http://www.pusha.se/posta?url=http://www.64bitjungle.com/tech/conky-on-ubuntu-64-bit-conkyrc/&amp;title=Conky+on+Ubuntu+64+Bit+-+.conkyrc" rel="nofollow" class="external" title="Push this on Pusha">Push this on Pusha</a>
		</li>
		<li class="sexy-hatena">
			<a href="http://b.hatena.ne.jp/add?mode=confirm&amp;url=http://www.64bitjungle.com/tech/conky-on-ubuntu-64-bit-conkyrc/&amp;title=Conky+on+Ubuntu+64+Bit+-+.conkyrc" rel="nofollow" class="external" title="Bookmarks this on Hatena Bookmarks">Bookmarks this on Hatena Bookmarks</a>
		</li>
		<li class="sexy-mylinkvault">
			<a href="http://www.mylinkvault.com/link-page.php?u=http://www.64bitjungle.com/tech/conky-on-ubuntu-64-bit-conkyrc/&amp;n=Conky+on+Ubuntu+64+Bit+-+.conkyrc" rel="nofollow" class="external" title="Store this link on MyLinkVault">Store this link on MyLinkVault</a>
		</li>
		<li class="sexy-slashdot">
			<a href="http://slashdot.org/bookmark.pl?url=http://www.64bitjungle.com/tech/conky-on-ubuntu-64-bit-conkyrc/&amp;title=Conky+on+Ubuntu+64+Bit+-+.conkyrc" rel="nofollow" class="external" title="Submit this to SlashDot">Submit this to SlashDot</a>
		</li>
		<li class="sexy-squidoo">
			<a href="http://www.squidoo.com/lensmaster/bookmark?http://www.64bitjungle.com/tech/conky-on-ubuntu-64-bit-conkyrc/" rel="nofollow" class="external" title="Add to a lense on Squidoo">Add to a lense on Squidoo</a>
		</li>
		<li class="sexy-propeller">
			<a href="http://www.propeller.com/submit/?url=http://www.64bitjungle.com/tech/conky-on-ubuntu-64-bit-conkyrc/" rel="nofollow" class="external" title="Submit this story to Propeller">Submit this story to Propeller</a>
		</li>
		<li class="sexy-faqpal">
			<a href="http://www.faqpal.com/submit?url=http://www.64bitjungle.com/tech/conky-on-ubuntu-64-bit-conkyrc/" rel="nofollow" class="external" title="Submit this to FAQpal">Submit this to FAQpal</a>
		</li>
		<li class="sexy-evernote">
			<a href="http://www.evernote.com/clip.action?url=http://www.64bitjungle.com/tech/conky-on-ubuntu-64-bit-conkyrc/&amp;title=Conky+on+Ubuntu+64+Bit+-+.conkyrc" rel="nofollow" class="external" title="Clip this to Evernote">Clip this to Evernote</a>
		</li>
		<li class="sexy-meneame">
			<a href="http://meneame.net/submit.php?url=http://www.64bitjungle.com/tech/conky-on-ubuntu-64-bit-conkyrc/" rel="nofollow" class="external" title="Submit this to Meneame">Submit this to Meneame</a>
		</li>
		<li class="sexy-bitacoras">
			<a href="http://bitacoras.com/anotaciones/http://www.64bitjungle.com/tech/conky-on-ubuntu-64-bit-conkyrc/" rel="nofollow" class="external" title="Submit this to Bitacoras">Submit this to Bitacoras</a>
		</li>
		<li class="sexy-jumptags">
			<a href="http://www.jumptags.com/add/?url=http://www.64bitjungle.com/tech/conky-on-ubuntu-64-bit-conkyrc/&amp;title=Conky+on+Ubuntu+64+Bit+-+.conkyrc" rel="nofollow" class="external" title="Submit this link to JumpTags">Submit this link to JumpTags</a>
		</li>
		<li class="sexy-bebo">
			<a href="http://www.bebo.com/c/share?Url=http://www.64bitjungle.com/tech/conky-on-ubuntu-64-bit-conkyrc/&amp;Title=Conky+on+Ubuntu+64+Bit+-+.conkyrc" rel="nofollow" class="external" title="Share this on Bebo">Share this on Bebo</a>
		</li>
		<li class="sexy-n4g">
			<a href="http://www.n4g.com/tips.aspx?url=http://www.64bitjungle.com/tech/conky-on-ubuntu-64-bit-conkyrc/&amp;title=Conky+on+Ubuntu+64+Bit+-+.conkyrc" rel="nofollow" class="external" title="Submit tip to N4G">Submit tip to N4G</a>
		</li>
		<li class="sexy-orkut">
			<a href="http://promote.orkut.com/preview?nt=orkut.com&amp;tt=Conky+on+Ubuntu+64+Bit+-+.conkyrc&amp;du=http://www.64bitjungle.com/tech/conky-on-ubuntu-64-bit-conkyrc/&amp;cn=I%20recently%20installed%20Conky%2C%20which%20is%20a%20highly%20configurable%20and%20%22light%20weight%20system%20monitor%22.%20As%20with%20many%20packages%2C%20it%27s%20available%20via%20the%20Ubuntu%20Repositories%3A%0D%0A%0D%0Asudo%20apt-get%20install%20conky%0D%0A%0D%0AThe%20default%20installation%20outputs%20some%20pretty%20useful%20information%20about%20the%20system%20-%20CPU%20usage%2C%20RAM%2FSwap%20usa" rel="nofollow" class="external" title="Promote this on Orkut">Promote this on Orkut</a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>
<!-- End SexyBookmarks Menu Code -->



<p>No related posts.</p>
<p>Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://www.64bitjungle.com/tech/conky-on-ubuntu-64-bit-conkyrc/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
	</channel>
</rss>
