<?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>Animesh Kumar {itsAnimesh} &#187; Conky</title>
	<atom:link href="http://itsanimesh.com/tag/conky/feed/" rel="self" type="application/rss+xml" />
	<link>http://itsanimesh.com</link>
	<description>Tech Geek / FOSS Enthusiasts</description>
	<lastBuildDate>Mon, 21 May 2012 19:16:13 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.2</generator>
		<item>
		<title>Conky Lands on top of Windows!!!</title>
		<link>http://itsanimesh.com/2009/05/09/conky-lands-on-top-of-windows/</link>
		<comments>http://itsanimesh.com/2009/05/09/conky-lands-on-top-of-windows/#comments</comments>
		<pubDate>Sat, 09 May 2009 18:08:08 +0000</pubDate>
		<dc:creator>itsAnimesh</dc:creator>
				<category><![CDATA[Tech Gyaan]]></category>
		<category><![CDATA[Conky]]></category>
		<category><![CDATA[FOSS]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Ubuntu]]></category>

		<guid isPermaLink="false">http://itsanimesh.com/?p=296</guid>
		<description><![CDATA[I showed you how to install Conky, which is a free software system monitor for the X Window System in my last post. Some of us have experienced that if we add Conky to the Session/Start Application list, after booting Conky tends to appear on top of all windows. If you kill the Conky process ...]]></description>
			<content:encoded><![CDATA[<p>I showed you how to install <strong>Conky</strong>, which is a free software system monitor for the X Window System in my <a href="http://itsanimesh.com/2009/05/09/conky-a-light-weight-system-monitor-for-linux-systems/">last post</a>. Some of us have experienced that if we add Conky to the Session/Start Application list, after booting Conky tends to appear on top of all windows. If you kill the Conky process and restart it, then the display is fine.</p>
<p><strong>Now the solution to this is :</strong><br />
1. Open a terminal and type : <strong><code>gedit .startconky0</code></strong><br />
2. Paste this in it :</p>
<div style="border: 2px ridge black;"><code>#!/bin/bash&nbsp;</p>
<p></code><code>sleep 35 &amp;&amp;<br />
conky</code></p>
</div>
<p>3. Save and close<br />
4. Type in the terminal : <strong><code>sudo chmod a+x .startconky0</code></strong><br />
5. In SYSTEM&gt;PREFERENCES&gt;SESSIONS/START APPLICATION<br />
Click +Add<br />
<strong>Name= Starting Conky<br />
Command=./.startconky0</strong></p>
<p>Also remove conky from Session/Start Application list when you have added .startconky0</p>
<p>Now reboot, it should work then. :)</p>
]]></content:encoded>
			<wfw:commentRss>http://itsanimesh.com/2009/05/09/conky-lands-on-top-of-windows/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Conky &#8211; a light weight system monitor for Linux Systems!!!</title>
		<link>http://itsanimesh.com/2009/05/09/conky-a-light-weight-system-monitor-for-linux-systems/</link>
		<comments>http://itsanimesh.com/2009/05/09/conky-a-light-weight-system-monitor-for-linux-systems/#comments</comments>
		<pubDate>Sat, 09 May 2009 09:32:24 +0000</pubDate>
		<dc:creator>itsAnimesh</dc:creator>
				<category><![CDATA[Tech Gyaan]]></category>
		<category><![CDATA[Conky]]></category>
		<category><![CDATA[FOSS]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Ubuntu]]></category>

		<guid isPermaLink="false">http://itsanimesh.com/?p=279</guid>
		<description><![CDATA[Conky is a free software system monitor for the X Window System. Not only monitoring system, with a little bit of scripting, it can be useful to know your new mails, weather info etc. Conky is highly configurable and is able to monitor many system variables including the status of the CPU, memory, swap space, ...]]></description>
			<content:encoded><![CDATA[<p><a href="http://conky.sourceforge.net/">Conky</a> is a free software system monitor for the X Window System. Not only monitoring system, with a little bit of scripting, it can be useful to know your new mails, weather info etc. Conky is highly configurable and is able to monitor many system variables including the status of the CPU, memory, swap space, disk storage, temperatures, processes, network interfaces, battery power, system messages, e-mail inboxes, Arch Linux updates, many popular music players, and much more. Unlike system monitors that use high-level widget toolkits to render their information, Conky is drawn directly in an X window. But this flexibility comes at a price: all Conky&#8217;s settings are stored in the .conkyrc file, which you have to create and tweak manually. The good news is that once you understand the inner workings of the .conkyrc file, you can easily create powerful Conky configuration profiles.</p>
<p><strong>Note:</strong> Each time you edit your .conkyrc file you would need to restart conky. That is done by typing the following commands in the terminal “killall conky” to kill conky and “conky&amp;” to start it again.</p>
<p style="text-align: center;">&nbsp;</p>
<p>To install Conky on Ubuntu type in the terminal :<br />
<strong><code>$ sudo apt-get install conky</code></strong></p>
<p>Now download the following .conkyrc file, if you want your Conky to look like mine :</p>
<p style="text-align: center;">&nbsp;</p>
<p><a href="http://www.box.net/shared/3j7s0j8paz"><strong>Download from here</strong></a></p>
<p>1. After downloading save it as <strong>.conkyrc</strong> in your home folder.</p>
<p>2. Now, make a directory <strong>scripts</strong> in your home directory. <a href="http://www.box.net/shared/0bg90rqxxr"><strong>Download these scripts</strong></a>, extract and copy them inside the directory you just created.</p>
<p>3. <a href="http://www.box.net/shared/l0stlo3y4u"><strong>Download all these fonts</strong></a>, extract and copy them inside <strong>.fonts</strong> directory in your home directory. If you don’t have the <strong>.fonts</strong> directory, you need to create it. You might need to have administrative privileges to create this directory.</p>
<p>4. Open .conkyrc file. Look for this line:<br />
<strong>${execpi 300 python ~/scripts/gmail_parser.py yourgmailusername yourgmailpassword 3}</strong><br />
Replace yourgmailusernamewith your username and yourgmailpassword with Gmail password. You might also need to install python-feedparser if your mail does not show up.<br />
<strong><code>$ sudo apt-get install python-feedparser</code></strong></p>
<p>5. To monitor your hard disk and CPU temperature install lm-sensors and hddtemp<br />
<strong><code>$sudo apt-get install hddtemp<br />
$sudo apt-get install lm-sensors</code></strong></p>
<p>6. Now try and run conky by executing <strong>conky&amp;</strong> in terminal, if everything is correct you would be able to see conky on your desktop.</p>
<p><strong>If you need more info :</strong><br />
1. <a href="http://conky.sourceforge.net/variables.html">More variables for conky</a><br />
2. <a href="http://conky.sourceforge.net/config_settings.html">Settings variables for conky</a><br />
3. More Conky scripts can be <a href="http://ubuntuforums.org/showthread.php?t=281865&amp;highlight=conky">found here</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://itsanimesh.com/2009/05/09/conky-a-light-weight-system-monitor-for-linux-systems/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
	</channel>
</rss>

