<?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>Patrick Micka</title>
	<atom:link href="http://www.patrickmicka.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.patrickmicka.com</link>
	<description>This is my blog. There are many like it, but this one is mine.</description>
	<lastBuildDate>Fri, 15 Jan 2010 04:39:47 +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>HowTo: Sync Google Reader With Delicious Bookmarks</title>
		<link>http://www.patrickmicka.com/ubuntu/howto-sync-google-reader-with-delicious-bookmarks/</link>
		<comments>http://www.patrickmicka.com/ubuntu/howto-sync-google-reader-with-delicious-bookmarks/#comments</comments>
		<pubDate>Fri, 15 Jan 2010 03:32:02 +0000</pubDate>
		<dc:creator>Patrick Micka</dc:creator>
				<category><![CDATA[How To]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Ubuntu]]></category>

		<guid isPermaLink="false">http://www.patrickmicka.com/?p=362</guid>
		<description><![CDATA[
			
				
			
		

I&#8217;ve been using Google Reader for about as long as I&#8217;ve been using Delicious. When it comes to finding new content I greatly prefer Google Reader over any other resource available, I also prefer Delicious over any other method for storing bookmarks. While sharing and starring items in my feed reader is convenient, it has [...]]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.patrickmicka.com%2Fubuntu%2Fhowto-sync-google-reader-with-delicious-bookmarks%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.patrickmicka.com%2Fubuntu%2Fhowto-sync-google-reader-with-delicious-bookmarks%2F&amp;source=pmicka&amp;style=normal" height="61" width="50" /><br />
			</a>
		</div>
<p style="text-align: center;"><img class="aligncenter size-full wp-image-364" title="greader-to-delicious" src="http://www.patrickmicka.com/wp-content/uploads/2010/01/greader-to-delicious.png" alt="" width="354" height="255" /></p>
<p>I&#8217;ve been using Google Reader for about as long as I&#8217;ve been using Delicious. When it comes to finding new content I greatly prefer Google Reader over any other resource available, I also prefer Delicious over any other method for storing bookmarks. While sharing and starring items in my feed reader is convenient, it has steadily caused me to become remiss in saving items to Delicious over the years.</p>
<p><span id="more-362"></span>In my search to find a convenient method for syncing items from my account to Delicious I ran across a script by <a href="http://dontmindrick.com/development/sync-google-reader-with-delicious/">Rick Mans</a> to just that. Unfortunately, the method he uses to attempt to detect recommended tags for future bookmarks often leaves the saved bookmarks without any tags at all or with too many tags. Which left me having to go back later and edit each bookmark to add relevant tags, essentially negating any time saved by using automated syncing.</p>
<p>Luckily over the past year I&#8217;ve gained a cursory knowledge of PHP so I decided to modify the script to work a bit differently, though I did rely quite heavily on a friend for guidance. I&#8217;ve set up a page for the script on <a href="http://code.google.com/p/greader-to-delicious/" target="_blank">Google code</a> which contains the documentation needed to configure the script. For convenience sake I&#8217;ve reiterated them here.</p>
<p>First, grab <a href="http://greader-to-delicious.googlecode.com/files/greader2delicious.php">a copy of the script</a>.</p>
<p>Open the file greader2delicious.php with your text editor of choice and follow these instructions to get started. In order for the script to function you will need to insert your Delicious Bookmarks username and password between the quotation marks on lines 26 and 27 respectively.</p>
<p>You will also need to insert your unique Google Reader ID (a string of 20 digits) into line 43 of the script:</p>
<blockquote><p>$googleReaderURI = &#8220;http://www.google.com/reader/public/atom/user/<strong>20-digit-ID-goes-here</strong>/state/com.google/broadcast&#8221;;</p></blockquote>
<p>If you are unsure how to find your 20-digit ID go to <a href="http://www.google.com/reader/view/">Google Reader</a> and click &#8220;Sharing settings&#8221; below your friends list. You should see your 20-digit ID under the heading &#8220;Choose a custom URL&#8221;:</p>
<blockquote><p>http://www.google.com/reader/shared/<em><strong>20-digit-ID</strong></em></p></blockquote>
<p>That takes care of configuring the script itself, in order to run the script you&#8217;ll need to have the packages php5, php-cli, and php5-curl installed. You can install them by entering the following command into the terminal:</p>
<blockquote><p>sudo apt-get install php5 php-cli php5-curl</p></blockquote>
<p>Once the installation has finished you can run the script by using the command below (which assumes that you&#8217;ve saved the script in your home folder):</p>
<p>php5 -f ~/greader2delicious.php</p>
<p>If you&#8217;ve properly configured the script you should see many new bookmarks in your delicious account assuming you&#8217;ve used the &#8220;share&#8221; function on Google Reader before. If you notice, none of them will have any tags and you may have seen the following error in the terminal after running the script:</p>
<blockquote><p>Notice: Undefined index</p></blockquote>
<p>To take advantage of modified tag function of my script use the &#8220;Share with note&#8221; option in Google Reader. The script searches for the following syntax in your note:</p>
<blockquote><p>TAGS(tag1 tag2 tag3)</p></blockquote>
<p>Wherein tag1 tag2 tag3 and so on are replaced with your tags, such as <em>cars school funny</em> etc. Sharing bookmarks is also possible using this method, simply use the tag <em>for:username</em> (replacing &#8220;username&#8221; with the Delicious username of the person you would like to share the bookmark with). To sync older items simply add <em>?n=100</em> to the end of the Google Reader URI on line 43 of the script, replacing &#8220;100&#8243; with the number of previously shared items you wish to retrieve just remember to remove this tidbit once you&#8217;ve run the script once so you don&#8217;t redundantly attempt to save the same bookmarks again.</p>
<p><strong>Note</strong>: Previously shared items will in all likelihood not have the TAGS(tag1 tag2 tag3) pseudofunction syntax and will therefor be synced without any tags to Delicious.</p>
<p>If you&#8217;ve made it this far and want to make the entire syncing process even easier why not run the script on a regular basis to automate your syncing entirely. You can do so easily by using cron. Simply enter the line below into the terminal:</p>
<blockquote><p>crontab -e</p></blockquote>
<p>Then paste/type the following into the CLI based editor:</p>
<blockquote><p>0 0 * * * php5 -f ~/.scripts/gr2del.php</p></blockquote>
<p>(Hit Ctrl+x to exit and type Y when prompted to save changes)</p>
<p>What this does is tells your system to run the script at 12:00 AM every day. If you&#8217;d like to run it less often visit this <a href="https://help.ubuntu.com/community/CronHowto">tutorial for more instructions</a>. If you have any problems running the script feel free to leave a comment or send me an email via the contact form in my <a href="http://www.patrickmicka.com/contact/">contact page</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.patrickmicka.com/ubuntu/howto-sync-google-reader-with-delicious-bookmarks/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>HowTo: Inkscape 0.47</title>
		<link>http://www.patrickmicka.com/ubuntu/howto-inkscape-4-7/</link>
		<comments>http://www.patrickmicka.com/ubuntu/howto-inkscape-4-7/#comments</comments>
		<pubDate>Fri, 18 Dec 2009 04:54:14 +0000</pubDate>
		<dc:creator>Patrick Micka</dc:creator>
				<category><![CDATA[How To]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Ubuntu]]></category>

		<guid isPermaLink="false">http://www.patrickmicka.com/?p=352</guid>
		<description><![CDATA[
			
				
			
		



I love Inkscape, it&#8217;s no secret. Most of the images in my portfolio were created using Inkscape. It has a clean interface, just the right tools to do what I want, and it&#8217;s free. I prefer it over any other available vector image editing program out there so I jumped at installing the newest release [...]]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.patrickmicka.com%2Fubuntu%2Fhowto-inkscape-4-7%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.patrickmicka.com%2Fubuntu%2Fhowto-inkscape-4-7%2F&amp;source=pmicka&amp;style=normal" height="61" width="50" /><br />
			</a>
		</div>
<dl id="attachment_353" class="wp-caption aligncenter" style="width: 210px;">
<dt class="wp-caption-dt"><img class="size-full wp-image-353 aligncenter" src="http://www.patrickmicka.com/wp-content/uploads/2009/12/200px-Inkscape_logo_2.svg_.png" alt="Inkscape Logo" width="200" height="200" /></dt>
</dl>
<p>I love Inkscape, it&#8217;s no secret. Most of the images in <a href="http://www.patrickmicka.com/portfolio/">my portfolio</a> were created using Inkscape. It has a clean interface, just the right tools to do what I want, and it&#8217;s free. I prefer it over any other available vector image editing program out there so I jumped at installing the newest release when it was made available. Some <a href="http://wiki.inkscape.org/wiki/index.php/ReleaseNotes047">great new features</a> include timed autosaves, spell check, better PS and EPS export. Unfortunately, the Ubuntu repositories don&#8217;t contain this version yet. On the bright side, installing 0.47 is a breeze using the apt-get build-dep function to install everything needed to put you on the path to vector editing zen.</p>
<p><span id="more-352"></span></p>
<p>First, make sure you&#8217;ve removed/uninstalled any previous version of Inkscape on your system and check that you&#8217;ve installed the build-essential package via apt-get. Once that&#8217;s all taken care of you should be good to go.</p>
<p>Next, to grab a copy of 0.47:</p>
<blockquote><p>cd ~/Desktop<br />
wget http://downloads.sourceforge.net/inkscape/inkscape-0.47.tar.bz2</p></blockquote>
<p>You can extract it with the following terminal command:</p>
<blockquote><p>tar xvjf ~/Desktop/inkscape-0.47.tar.bz2</p></blockquote>
<p>Before moving forward you&#8217;ll need to install all the dependencies by entering the line below (please note that this does not install the package &#8216;inkscape&#8217;):</p>
<blockquote><p>sudo apt-get build-dep inkscape</p></blockquote>
<p>After that&#8217;s done you should have everything you need to finish the installation. We&#8217;ll change directories and then finish with three final commands:</p>
<blockquote><p>cd ~/Desktop/inkscape-0.47/</p></blockquote>
<blockquote><p>./configure</p></blockquote>
<p>Once that&#8217;s finished:</p>
<blockquote><p>make</p></blockquote>
<p>And lastly:</p>
<blockquote><p>sudo make install</p></blockquote>
<p>That should take care of it.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.patrickmicka.com/ubuntu/howto-inkscape-4-7/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Mozilla Releases Thunderbird 3</title>
		<link>http://www.patrickmicka.com/ubuntu/mozilla-thunderbird-3/</link>
		<comments>http://www.patrickmicka.com/ubuntu/mozilla-thunderbird-3/#comments</comments>
		<pubDate>Wed, 09 Dec 2009 19:59:32 +0000</pubDate>
		<dc:creator>Patrick Micka</dc:creator>
				<category><![CDATA[How To]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Ubuntu]]></category>

		<guid isPermaLink="false">http://www.patrickmicka.com/?p=342</guid>
		<description><![CDATA[
			
				
			
		


Mozilla Messaging announced on Tuesday that it had officially released Thunderbird 3 its open source mail client. I&#8217;ve written about Thunderbird 3 before. New features to the client include tabs, and an impressive search component. I&#8217;ve gotten a few emails asking how to install via apt. So I&#8217;ll post those instructions too.

You can install Thunderbird 3 via apt [...]]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.patrickmicka.com%2Fubuntu%2Fmozilla-thunderbird-3%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.patrickmicka.com%2Fubuntu%2Fmozilla-thunderbird-3%2F&amp;source=pmicka&amp;style=normal" height="61" width="50" /><br />
			</a>
		</div>
<p style="text-align: center;"><img class="aligncenter" src="http://www.patrickmicka.com/photos/thunderbird.png" alt="" /></p>
<p style="text-align: center;">
<p>Mozilla Messaging announced on Tuesday that it had officially released Thunderbird 3 its open source mail client. I&#8217;ve written about <a href="http://www.patrickmicka.com/ubuntu/howto-install-mozilla-thunderbird-3-beta/">Thunderbird 3 before</a>. New features to the client include tabs, and an <a href="http://arstechnica.com/open-source/reviews/2009/12/review-thunderbird-3-hatches-with-tabs-and-enhanced-search.ars?utm_source=rss&amp;utm_medium=rss&amp;utm_campaign=rss">impressive search component</a>. I&#8217;ve gotten a few emails asking how to install via apt. So I&#8217;ll post those instructions too.</p>
<p><span id="more-342"></span></p>
<p>You can install Thunderbird 3 via apt if you add the Mozilla Daily Build Team PPA found here: <a rel="nofollow" href="http://launchpad.net/%7Eubuntu-mozilla-daily/+archive/ppa">http://launchpad.net/~ubuntu-mozilla-daily/+archive/ppa</a></p>
<p>Then:</p>
<p>sudo apt-get update &amp;&amp; sudo apt-get install thunderbird-3.0</p>
<p>That&#8217;s it for installing via apt. However, the branding will be different, it will be installed as Shredder 3 (its developmental codename).<br />
Or, you can simply download/extract a folder and run it:</p>
<p>To install head over to the Mozilla Messaging website and <a href="http://www.mozillamessaging.com/en-US/thunderbird/all.html">download the release</a>. Make sure to back up your profile if you remove any previously installed version of Thunderbird before upgrading.</p>
<p>Next, open a terminal and enter the following two commands to extract the archive you just downloaded:</p>
<blockquote><p>cd ~/Desktop<br />
tar xfvj thunderbird-3.0.tar.bz2</p></blockquote>
<p>You don&#8217;t need the original archive any longer, so delete with the following command:</p>
<blockquote><p>rm ~/Desktop/thunderbird-3.0.tar.bz2</p></blockquote>
<p>After you&#8217;ve unpacked the archive enter the following command to move it to a more convenient location:</p>
<blockquote><p>sudo mv ./thunderbird /opt/</p></blockquote>
<p>Everything should be in order now, so let&#8217;s move to the directory and make sure it works:</p>
<blockquote><p>cd /opt/thunderbird/</p></blockquote>
<p>Finally, run the following command to launch Thunderbird:</p>
<blockquote><p>./thunderbird</p></blockquote>
<p>If everything works fine and you&#8217;ve set up your email accounts with little frustration. Next, you may want to create a clickable icon on your desktop so you don&#8217;t have launch the program via the command line. To create a desktop icon, simply right-click and select &#8220;Create L<span style="text-decoration: underline;">a</span>uncher&#8230;&#8221; Then fill out the dialogue box with the following information:</p>

<a href="http://www.patrickmicka.com/wp-content/gallery/ubuntu/thunderbird_beta_icon.png" title="" class="thickbox" rel="singlepic39" >
	<img class="ngg-singlepic ngg-center" src="http://www.patrickmicka.com/wp-content/plugins/nextgen-gallery/nggshow.php?pid=39&amp;width=320&amp;height=240&amp;mode=" alt="thunderbird_beta_icon.png" title="thunderbird_beta_icon.png" />
</a>

<blockquote><p>Type: Application</p>
<p>Name: Thunderbird 3.0</p>
<p>Command: /opt/thunderbird/thunderbird</p>
<p>Comment: This launches Thunderbird 3.0.</p></blockquote>
<p>Alternately, ﻿here&#8217;s another method for creating a link. Open a terminal and enter the following command:</p>
<blockquote><p>sudo gedit /usr/share/applications/thunderbird3.desktop</p></blockquote>
<p>Once the text editor is open, paste the following text into the editor (which should be blank):</p>
<blockquote><p>[Desktop Entry]<br />
Encoding=UTF-8<br />
Name=Thunderbird 3.0<br />
Comment=Check Your Mail<br />
Exec=/opt/thunderbird/thunderbird<br />
Icon=/opt/thunderbird/chrome/icons/default/default48.png<br />
Terminal=false<br />
Type=Application<br />
Categories=Application;Network;</p></blockquote>
]]></content:encoded>
			<wfw:commentRss>http://www.patrickmicka.com/ubuntu/mozilla-thunderbird-3/feed/</wfw:commentRss>
		<slash:comments>11</slash:comments>
		</item>
		<item>
		<title>Adobe AIR 2 Beta for Linux</title>
		<link>http://www.patrickmicka.com/ubuntu/adobe-air-2-beta-for-linux/</link>
		<comments>http://www.patrickmicka.com/ubuntu/adobe-air-2-beta-for-linux/#comments</comments>
		<pubDate>Fri, 20 Nov 2009 21:31:47 +0000</pubDate>
		<dc:creator>Patrick Micka</dc:creator>
				<category><![CDATA[How To]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Ubuntu]]></category>

		<guid isPermaLink="false">http://www.patrickmicka.com/?p=337</guid>
		<description><![CDATA[
			
				
			
		
Abobe AIR 2 hit the net recently, it boasts a large number of improvements since its predecessors release a few years ago. Though it&#8217;s still in beta I&#8217;ve not had any issues with it so far.  Continue on below for installation instructions and a list of all the new bells and whistles.

To grab a copy [...]]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.patrickmicka.com%2Fubuntu%2Fadobe-air-2-beta-for-linux%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.patrickmicka.com%2Fubuntu%2Fadobe-air-2-beta-for-linux%2F&amp;source=pmicka&amp;style=normal" height="61" width="50" /><br />
			</a>
		</div>
<p><img class="aligncenter size-medium wp-image-338" title="Air App Icon" src="http://www.patrickmicka.com/wp-content/uploads/2009/11/air_appicon-300x299.jpg" alt="Air App Icon" width="300" height="299" />Abobe AIR 2 hit the net recently, it boasts a large number of improvements since its predecessors release a few years ago. Though it&#8217;s still in beta I&#8217;ve not had any issues with it so far.  Continue on below for installation instructions and a list of all the new bells and whistles.</p>
<p><span id="more-337"></span></p>
<p>To grab a copy for yourself head over to the <a href="http://labs.adobe.com/downloads/air2.html" target="_blank">Adobe website</a> and download the .deb listed there to your desktop.</p>
<p>Before installing, be sure to remove any previously installed version of the AIR runtime you may have on your system. Then enter the following command to install the .deb you just downloaded:</p>
<blockquote><p>sudo dpkg -i ~/Desktop/air2_b1_runtime_lin_111709.deb</p></blockquote>
<p>That should do it. Below is a list of AIR 2&#8217;s improvements and added features:<br />
<span style="line-height: 17px;">Support for the detection of mass storage devices.</span></p>
<ul style="list-style-type: disc; list-style-position: outside; list-style-image: initial; margin-left: 0.5em; padding-left: 1.5em; margin-top: 1em; margin-bottom: 1.35em;">
<li style="font-size: 1em; line-height: 1.35em; padding-bottom: 0.5em;">Advanced networking capabilities like secure sockets, UDP support, and the ability to listen on sockets.</li>
<li style="font-size: 1em; line-height: 1.35em; padding-bottom: 0.5em;">Support for native code integration.</li>
<li style="font-size: 1em; line-height: 1.35em; padding-bottom: 0.5em;">The ability to open a file with its default application.</li>
<li style="font-size: 1em; line-height: 1.35em; padding-bottom: 0.5em;">Multi-touch and gesture support.</li>
<li style="font-size: 1em; line-height: 1.35em; padding-bottom: 0.5em;">New APIs for access to raw microphone data.</li>
<li style="font-size: 1em; line-height: 1.35em; padding-bottom: 0.5em;">Webkit update with HTML5/CSS3 support.</li>
<li style="font-size: 1em; line-height: 1.35em; padding-bottom: 0.5em;">Global error handling.</li>
<li style="font-size: 1em; line-height: 1.35em; padding-bottom: 0.5em;">Improved cross-platform printing</li>
<li style="font-size: 1em; line-height: 1.35em; padding-bottom: 0.5em;">Improved security and support for enterprise and government standards.</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://www.patrickmicka.com/ubuntu/adobe-air-2-beta-for-linux/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>HowTo: Google Chrome In Ubuntu Linux</title>
		<link>http://www.patrickmicka.com/ubuntu/howto-google-chrome-in-ubuntu-linux/</link>
		<comments>http://www.patrickmicka.com/ubuntu/howto-google-chrome-in-ubuntu-linux/#comments</comments>
		<pubDate>Thu, 05 Nov 2009 04:42:49 +0000</pubDate>
		<dc:creator>Patrick Micka</dc:creator>
				<category><![CDATA[How To]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Ubuntu]]></category>

		<guid isPermaLink="false">http://www.patrickmicka.com/?p=329</guid>
		<description><![CDATA[
			
				
			
		

For the past few weeks I&#8217;ve been using Google Chrome as my primary browser. I find that it performs very well compared to Firefox as well as making better use of screen real estate, even with the tweaking I wrote about last month. However, I still haven&#8217;t decided if it&#8217;s worth making the jump completely from Firefox, especially [...]]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.patrickmicka.com%2Fubuntu%2Fhowto-google-chrome-in-ubuntu-linux%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.patrickmicka.com%2Fubuntu%2Fhowto-google-chrome-in-ubuntu-linux%2F&amp;source=pmicka&amp;style=normal" height="61" width="50" /><br />
			</a>
		</div>
<p><img class="aligncenter size-full wp-image-330" title="Google Chrome" src="http://www.patrickmicka.com/wp-content/uploads/2009/11/google_chrome.png" alt="Google Chrome" width="256" height="256" /></p>
<p>For the past few weeks I&#8217;ve been using Google Chrome as my primary browser. I find that it <a href="http://www.pcmag.com/article2/0,2817,2355201,00.asp" target="_blank">performs very well</a> compared to Firefox as well as making better use of screen real estate, even with the tweaking I wrote about <a href="http://www.patrickmicka.com/how-to/howto-the-ultimate-minimalist-firefox-browser/">last month</a>. However, I still haven&#8217;t decided if it&#8217;s worth making the jump completely from Firefox, especially with such interesting developments in that browser&#8217;s evolution as well. It&#8217;s no shock to anyone that Firefox has been whittling away at Internet Explorer&#8217;s hegemony over the browser landscape for some time now. With the introduction of Google&#8217;s Chrome browser Internet Explorer&#8217;s <a href="http://business.theatlantic.com/2009/11/chrome_and_firefox_up_internet_explorer_down.php" target="_blank">fall from power</a> continues, albeit, at somewhat of a glacial pace.</p>
<p><span id="more-329"></span></p>
<p>To install the latest release of Google&#8217;s Chrome browser for Linux were&#8217;re going to make use of the Google repository for Linux.</p>
<p>First, we need to add the repository to our software sources. Open a terminal and enter the following command to get started:</p>
<blockquote><p>sudo gedit /etc/apt/sources.list</p></blockquote>
<p>Then, scroll to the bottom of the file you just opened and paste the following two lines:</p>
<blockquote><p># Google software repository<br />
deb http://dl.google.com/linux/deb/ stable non-free main</p></blockquote>
<p>Next, we&#8217;ll add the public package signing key on your system to prevent warnings or errors when installing packages from the Google Linux software repositories with this command:</p>
<blockquote><p>wget -q -O &#8211; https://dl-ssl.google.com/linux/linux_signing_key.pub | apt-key add -</p></blockquote>
<p>Finally, to update your sources and install the latest browser release enter the following line into the terminal:</p>
<blockquote><p>sudo apt-get update &amp;&amp; sudo apt-get install google-chrome</p></blockquote>
<p>That should take care of it. You&#8217;ll find the launcher for Chrome in your main menu along with all your other currently installed browsers.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.patrickmicka.com/ubuntu/howto-google-chrome-in-ubuntu-linux/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>HowTo: The Minimalist&#8217;s Firefox</title>
		<link>http://www.patrickmicka.com/how-to/howto-the-ultimate-minimalist-firefox-browser/</link>
		<comments>http://www.patrickmicka.com/how-to/howto-the-ultimate-minimalist-firefox-browser/#comments</comments>
		<pubDate>Wed, 14 Oct 2009 12:38:12 +0000</pubDate>
		<dc:creator>Patrick Micka</dc:creator>
				<category><![CDATA[How To]]></category>

		<guid isPermaLink="false">http://www.patrickmicka.com/?p=155</guid>
		<description><![CDATA[
			
				
			
		

Recently I read about an interesting Mozilla feature that allows users to create custom collections of add-ons to share with other users. Essentially making this post much easier for me to write now that I don&#8217;t have to drone on and on about which add-ons I use to streamline my favorite browser&#8217;s interface. I usually [...]]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.patrickmicka.com%2Fhow-to%2Fhowto-the-ultimate-minimalist-firefox-browser%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.patrickmicka.com%2Fhow-to%2Fhowto-the-ultimate-minimalist-firefox-browser%2F&amp;source=pmicka&amp;style=normal" height="61" width="50" /><br />
			</a>
		</div>
<p style="text-align: center;"><img class="aligncenter size-thumbnail wp-image-283" title="minimal_firefox" src="http://www.patrickmicka.com/wp-content/uploads/2009/04/minimal_firefox-150x150.png" alt="minimal_firefox" width="150" height="150" /></p>
<p>Recently I read about an interesting Mozilla feature that allows users to create custom <a href="https://addons.mozilla.org/firefox/collections">collections</a> of add-ons to share with other users. Essentially making this post much easier for me to write now that I don&#8217;t have to drone on and on about which add-ons I use to streamline my favorite browser&#8217;s interface. I usually have about 20 tabs open at time and a lot of these are must-haves to make sense of everything. This group of plugins is a sure fire way to trim the fat off your Firefox browser. Also, for those of you lucky enough to own a netbook, they make browsing the web much easier on the eyes by maximizing the viewable content area. See the full post for even more space saving tips.</p>
<p><a href="https://addons.mozilla.org/firefox/collection/minimalists_collection">Minimalist&#8217;s Collection</a> &#8211; A set of add-ons to streamline your browser without compromising usability.<br />
<span id="more-155"></span></p>
<h2>5 More Ways to Slim Your Browser</h2>

<a href="http://www.patrickmicka.com/wp-content/gallery/ubuntu/firefox_before_and_after.png" title="" class="thickbox" rel="singlepic70" >
	<img class="ngg-singlepic ngg-center" src="http://www.patrickmicka.com/wp-content/plugins/nextgen-gallery/nggshow.php?pid=70&amp;width=500&amp;height=300&amp;mode=" alt="firefox_before_and_after" title="firefox_before_and_after" />
</a>

<p>Here&#8217;s a list of 5 tricks I use in conjunction with the add-ons I&#8217;ve collected that will put your browser on the road to minimalist zen &#8212; and it looks great too!</p>
<ol>
<li><strong>Remove the names from your bookmark toolbar</strong> &#8211; This allows you to keep many more bookmarks for quick access just a click away without sacrificing anything. Any website worth it&#8217;s salt should have a unique favicon which is as good as having a list of names.</li>
<li><strong>Remove the activity indicator from your toolbar</strong> &#8211; The activity indicator is the tiny icon on the top right of your browser window that animates every time you load a new page. You don&#8217;t really need it. Right click one of your menus and select &#8220;Customize&#8230;&#8221; then drag it back into the box containing all the other buttons you don&#8217;t need.</li>
<li><strong>Get rid of navigation buttons you don&#8217;t really need</strong> &#8211; Learn easy to remember <a href="http://support.mozilla.com/kb/Keyboard+shortcuts">Firefox hotkeys</a> and save yourself the trouble of having to reach for the mouse every 5 seconds if you really don&#8217;t have to. I remove the Stop and Refresh buttons, but there&#8217;s no reason to stop there. At the very least make sure you&#8217;ve turned on the &#8220;Use Small Icons&#8221; option.</li>
<li><strong>Consolidate your toolbars</strong> &#8211; This is one of the best ways to save space. You don&#8217;t need toolbars taking over your browser. After installing the <a href="https://addons.mozilla.org/firefox/addon/1455">Tiny Menu</a> add-on listed in <a href="https://addons.mozilla.org/firefox/collection/minimalists_collection">my collection</a> move everything from the navigation toolbar up to the top, which is always displayed, and get rid of the empty space afterword by displaying only the bookmarks toolbar. Less is more!</li>
<li><strong>Choose a theme that makes the most of your new layout</strong> &#8211; An important part of being happy about how you&#8217;ve setup your browser includes having it look nice. The <a href="https://addons.mozilla.org/firefox/addon/4908">NASA Night Launch Theme</a> works best for me, but for those of you who enjoy a lighter theme, try the <a href="https://addons.mozilla.org/firefox/addon/7293">Elementary Theme</a>.</li>
</ol>
<p>The lesson here is that one of the great things about tweaking your browser and making it work for you is that there are other people out there wanting to do the same thing. So if you have any space saving tricks to add please share them in the comments section!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.patrickmicka.com/how-to/howto-the-ultimate-minimalist-firefox-browser/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>HowTo: Install Firefox 3.5 in Ubuntu</title>
		<link>http://www.patrickmicka.com/ubuntu/howto-install-firefox-3-5-ubuntu/</link>
		<comments>http://www.patrickmicka.com/ubuntu/howto-install-firefox-3-5-ubuntu/#comments</comments>
		<pubDate>Thu, 02 Jul 2009 17:52:07 +0000</pubDate>
		<dc:creator>Patrick Micka</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Ubuntu]]></category>

		<guid isPermaLink="false">http://www.patrickmicka.com/?p=224</guid>
		<description><![CDATA[
			
				
			
		
If you&#8217;re impatient like me you won&#8217;t want to wait for Firefox 3.5 to hit the repositories to take advantage of its slick new features such as location aware browsing, and native open audio/video support under HTML5 . Luckily installing from source is a piece of cake. Simply download the Linux source file most relevant [...]]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.patrickmicka.com%2Fubuntu%2Fhowto-install-firefox-3-5-ubuntu%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.patrickmicka.com%2Fubuntu%2Fhowto-install-firefox-3-5-ubuntu%2F&amp;source=pmicka&amp;style=normal" height="61" width="50" /><br />
			</a>
		</div>

<a href="http://www.patrickmicka.com/wp-content/gallery/ubuntu/firefox35.jpg" title="" class="thickbox" rel="singlepic46" >
	<img class="ngg-singlepic ngg-center" src="http://www.patrickmicka.com/wp-content/plugins/nextgen-gallery/nggshow.php?pid=46&amp;width=320&amp;height=240&amp;mode=" alt="firefox35" title="firefox35" />
</a>

<p>If you&#8217;re impatient like me you won&#8217;t want to wait for Firefox 3.5 to hit the repositories to take advantage of its slick new features such as <a href="http://www.mozilla.com/en-US/firefox/geolocation/">location aware browsing</a>, and native open <a href="http://www.mozilla.com/en-US/firefox/video/">audio/video</a> support under HTML5 . Luckily installing from source is a piece of cake. Simply download the Linux <a href="http://www.mozilla.com/en-US/firefox/all.html">source file</a> most relevant to you and read on below:</p>
<p><span id="more-224"></span></p>
<p>Note: Whenever you&#8217;re compiling from source code you&#8217;ll need to make sure you&#8217;ve got the <em>build-essential</em> package installed. If you&#8217;re unsure, enter the following command in your terminal:</p>
<blockquote><p>sudo apt-get install build-essential</p></blockquote>
<p>After downloading the source file, a tar.bz2 file, you&#8217;ll need to extract it. To keep things simple, I recommend extracting the file to your home folder. First, use the command line to navigate to the directory to which you downloaded the file. Then enter this to extract to your home folder :</p>
<blockquote><p>tar -xvjf ./firefox-3.5.tar.bz2 -C ~/ &amp;&amp;  rm ./firefox-3.5.tar.bz2</p></blockquote>
<p><em>Note</em>:  this command also removes the downloaded archive after extracting to your home folder.</p>
<p>To run your updated Firefox simply enter this command:</p>
<blockquote><p>~/firefox/firefox</p></blockquote>
<p>You&#8217;ll want to redirect any icons on your panel/desktop/dock to that file for the time being. That is, until the most recent version of Firefox is added to the Ubuntu repositories. You&#8217;ll notice that this method leaves any previously installed versions of Firefox intact on your system. Which means that your plugins, add-ons, and profiles will all be fine. So, when the upgrade manages to percolate its way onto your system through the repositories simply remove the directory created above and point your icons back to <em>~/.mozilla/firefox</em> to restore them.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.patrickmicka.com/ubuntu/howto-install-firefox-3-5-ubuntu/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Creative Commons #1: All-Star Wallpaper</title>
		<link>http://www.patrickmicka.com/art/creative-commons-all-star-wallpaper/</link>
		<comments>http://www.patrickmicka.com/art/creative-commons-all-star-wallpaper/#comments</comments>
		<pubDate>Fri, 16 Jan 2009 01:35:19 +0000</pubDate>
		<dc:creator>Patrick Micka</dc:creator>
				<category><![CDATA[Art]]></category>
		<category><![CDATA[Creative Commons]]></category>

		<guid isPermaLink="false">http://www.patrickmicka.com/?p=176</guid>
		<description><![CDATA[
			
				
			
		

Here&#8217;s the first of what I hope to be a series of posts in which I publish some sort of free content under the Creative Commons license. The idea for this design originated from a shirt in the movie &#8220;Step Brothers&#8221; with Will Ferrell and John C. Reilly. Though, the design itself is based off [...]]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.patrickmicka.com%2Fart%2Fcreative-commons-all-star-wallpaper%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.patrickmicka.com%2Fart%2Fcreative-commons-all-star-wallpaper%2F&amp;source=pmicka&amp;style=normal" height="61" width="50" /><br />
			</a>
		</div>
<p><center>
<a href="http://www.patrickmicka.com/wp-content/gallery/ubuntu/screenshot_1.png" title="" class="thickbox" rel="singlepic40" >
	<img class="ngg-singlepic" src="http://www.patrickmicka.com/wp-content/plugins/nextgen-gallery/nggshow.php?pid=40&amp;width=320&amp;height=240&amp;mode=" alt="screenshot_1.png" title="screenshot_1.png" />
</a>
</center><br />
Here&#8217;s the first of what I hope to be a series of posts in which I publish some sort of free content under the Creative Commons license. The idea for this design originated from a <a href="http://latimesblogs.latimes.com/photos/uncategorized/2008/07/30/stepbro1.jpg">shirt</a> in the movie &#8220;Step Brothers&#8221; with Will Ferrell and John C. Reilly. Though, the design itself is based off of these Creative Commons licensed photographs by users <a title="Hanging by BigGolf" href="http://flickr.com/photos/biggolf/2228041358/">BigGolf</a> and <a title="Hang you by your shoe-strings by tombothetominator" href="http://www.flickr.com/photos/tombothetominator/2799960923/">tombothetominator.</a> Without further ado:</p>
<ul>
<li> <a href="http://www.patrickmicka.com/creative_commons/backgrounds/converse_1920.png">1920&#215;1200px</a></li>
<li><a href="http://www.patrickmicka.com/creative_commons/backgrounds/converse_1680.png">1680&#215;1050px</a></li>
<li><a href="http://www.patrickmicka.com/creative_commons/backgrounds/converse_1440.png">1440&#215;900px</a></li>
<li><a href="http://www.patrickmicka.com/creative_commons/backgrounds/converse_1280R.png">1280&#215;1024px</a></li>
<li><a href="http://www.patrickmicka.com/creative_commons/backgrounds/converse_1280.png">1280&#215;800px</a></li>
<li><a href="http://www.patrickmicka.com/creative_commons/backgrounds/converse_1024.png">1024&#215;768px</a></li>
<li><a href="http://www.patrickmicka.com/creative_commons/backgrounds/converse_iPhone.png">iPhone Version</a></li>
</ul>
<p>In the spirit of sharing, <a href="http://www.patrickmicka.com/creative_commons/backgrounds/converse_source.svg">here</a> is a vector file so that you may build upon the work if you wish.</p>
<p><a rel="license" href="http://creativecommons.org/licenses/by-nc-sa/3.0/"><img alt="Creative Commons License" style="border-width:0" src="http://i.creativecommons.org/l/by-nc-sa/3.0/88x31.png" /></a></p>
<p><span xmlns:dc="http://purl.org/dc/elements/1.1/" property="dc:title">All-Star Wallpaper</span> by <a xmlns:cc="http://creativecommons.org/ns#" href="http://www.patrickmicka.com" property="cc:attributionName" rel="cc:attributionURL">Patrick Micka</a> is licensed under a <a rel="license" href="http://creativecommons.org/licenses/by-nc-sa/3.0/">Creative Commons Attribution-Noncommercial-Share Alike 3.0 Unported License</a>.<br />Based on <a xmlns:dc="http://purl.org/dc/elements/1.1/" href="http://flickr.com/photos/biggolf/2228041358/">these</a> <a xmlns:dc="http://purl.org/dc/elements/1.1/" href="http://www.flickr.com/photos/tombothetominator/2799960923/">two</a> works.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.patrickmicka.com/art/creative-commons-all-star-wallpaper/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>HowTo: Change the Google Search Box Icon In Ubuntu Linux</title>
		<link>http://www.patrickmicka.com/ubuntu/howto-change-the-google-search-box-icon-ubuntu-linux/</link>
		<comments>http://www.patrickmicka.com/ubuntu/howto-change-the-google-search-box-icon-ubuntu-linux/#comments</comments>
		<pubDate>Thu, 15 Jan 2009 22:27:22 +0000</pubDate>
		<dc:creator>Patrick Micka</dc:creator>
				<category><![CDATA[How To]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Ubuntu]]></category>

		<guid isPermaLink="false">http://www.patrickmicka.com/?p=177</guid>
		<description><![CDATA[
			
				
			
		

Earlier this month Google unveiled yet another of it&#8217;s favicons. Though some disagree, I feel that this version is a lot nicer than any previous iteration, especially the one they released June of last year. Popular productivity blog Lifehacker recently posted instructions on how to replace the old Google icon in the search bar with [...]]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.patrickmicka.com%2Fubuntu%2Fhowto-change-the-google-search-box-icon-ubuntu-linux%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.patrickmicka.com%2Fubuntu%2Fhowto-change-the-google-search-box-icon-ubuntu-linux%2F&amp;source=pmicka&amp;style=normal" height="61" width="50" /><br />
			</a>
		</div>
<p style="text-align: center;"><img class="aligncenter" src="http://www.patrickmicka.com/photos/google_favicon.png" alt="" /></p>
<p>Earlier this month <a href="http://googleblog.blogspot.com/2009/01/googles-new-favicon.html">Google unveiled</a> yet another of it&#8217;s favicons. Though some disagree, I feel that this version is a lot nicer than any previous iteration, especially the one they released June of last year. Popular productivity blog Lifehacker <a href="http://lifehacker.com/5130910/change-the-firefox-search-box-to-use-googles-new-favicon">recently posted instructions</a> on <a href="http://mozillalinks.org/wp/2009/01/update-firefox%E2%80%99s-search-bar-with-new-google-favicon-again/">how to replace the old Google icon in the search bar</a> with the newer version. Though they didn&#8217;t provide any instructions for Linux users.<br />
<span id="more-177"></span></p>
<p>Here&#8217;s how I changed the Google favicon in the search bar through the command line:</p>
<p>To download the new .xml file which stores the search engine plugin to the desktop, we first need to change the current directory with this command:</p>
<blockquote><p>cd ~/Desktop</p></blockquote>
<p>Next, grab the new file with the following command:</p>
<blockquote><p>wget http://www.mozillalinks.org/download/google.xml</p></blockquote>
<p>Then, delete, and subsequently replace, the old one by entering the two commands below:</p>
<blockquote><p>sudo rm /usr/lib/firefox-addons/searchplugins/google.xml<br />
sudo cp ~/Desktop/google.xml /usr/lib/firefox-addons/searchplugins/google.xml</p></blockquote>
<p>If you get some sort of &#8220;no such file or directory&#8221; message when trying to delete the old google.xml file use the following command to locate it and modify the steps noted above to reflect the directory which it is located in.</p>
<blockquote><p>sudo find / -name &#8216;google.xml&#8217;</p></blockquote>
<p>After you&#8217;ve completed the switch successfully simply restart Firefox and enjoy responsibly.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.patrickmicka.com/ubuntu/howto-change-the-google-search-box-icon-ubuntu-linux/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>HowTo: Ubuntu Eye Candy</title>
		<link>http://www.patrickmicka.com/ubuntu/howto-ubuntu-eye-candy/</link>
		<comments>http://www.patrickmicka.com/ubuntu/howto-ubuntu-eye-candy/#comments</comments>
		<pubDate>Sat, 10 Jan 2009 22:49:23 +0000</pubDate>
		<dc:creator>Patrick Micka</dc:creator>
				<category><![CDATA[How To]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Ubuntu]]></category>

		<guid isPermaLink="false">http://www.patrickmicka.com/?p=150</guid>
		<description><![CDATA[
			
				
			
		
Let&#8217;s face it. Not everyone likes orange and brown that much.
This guide will serve as a reference for future posts. Additionally, I hope that it will provide you with the framework and knowledge needed to customize your desktop in a way that reflects your personal preference. However, nothing in this post is set in stone, [...]]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.patrickmicka.com%2Fubuntu%2Fhowto-ubuntu-eye-candy%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.patrickmicka.com%2Fubuntu%2Fhowto-ubuntu-eye-candy%2F&amp;source=pmicka&amp;style=normal" height="61" width="50" /><br />
			</a>
		</div>
<p>Let&#8217;s face it. Not everyone likes orange and brown <em>that</em> much.</p>

<a href="http://www.patrickmicka.com/wp-content/gallery/ubuntu/intrepidibex.jpg" title="" class="thickbox" rel="singlepic42" >
	<img class="ngg-singlepic" src="http://www.patrickmicka.com/wp-content/plugins/nextgen-gallery/nggshow.php?pid=42&amp;width=320&amp;height=240&amp;mode=" alt="intrepidibex.jpg" title="intrepidibex.jpg" />
</a>

<p>This guide will serve as a reference for future posts. Additionally, I hope that it will provide you with the framework and knowledge needed to customize your desktop in a way that reflects your personal preference. However, nothing in this post is set in stone, take as much or as little of it as you&#8217;d like. I&#8217;m open to criticism about what things you think I left off this list, so feel free to add more in the comments section. Take this as a list of ideas and suggestions to shape the feel of your desktop any way you&#8217;d like.</p>
<p><span id="more-150"></span></p>
<p><strong>Compiz</strong><br />
Compiz is a compositing window manager for the X Window System that allows you to take advantage of all sorts of desktop effects, such as translucency, dimming, and desaturation. You should find a basic control panel in <em>System</em> &gt; <em>Preferences</em> &gt; <em>Appearance</em> &gt; <em>Visual Effects</em>. Unfortunately, this set of controls does not provide the ability to fine tune individual effects and setting. Another program exists that will allow you to take advantage of a broader range of features, as well as turn off those you don&#8217;t want. However, this compiz settings manager is not installed by default. To enable it simply type the following command into the terminal:</p>
<blockquote><p>sudo apt-get install compizconfig-settings-manager</p></blockquote>
<p>After that&#8217;s finished installing, you should have a new entry in your main menu under <em>System</em> &gt; <em>Preferences</em> &gt; <em>CompizConfig Settings Manager</em>.</p>
<p><strong>Emerald</strong><br />
Emerald is a window decorator for the Compiz compositing window manager. As opposed to the standard GTK+ engine packaged with GNOME this manager, in my opinion, allows for a much prettier overall look. Though not necessary, it&#8217;s worth a look. To install it just run the following command in the terminal:</p>
<blockquote><p>sudo apt-get install emerald</p></blockquote>
<p>Afterwards, you&#8217;ll want to download a theme from one of the many sites dedicated to customization such as <a href="http://www.gnome-look.org" target="_blank">www.gnome-look.org</a> or <a href="http://www.beryl-themes.org" target="_blank">www.beryl-themes.org</a> and install them via the menu located in <em>System</em> &gt; <em>Preferences</em> &gt; <em>Emerald Theme Manager</em>.</p>
<p><strong>Conky</strong><br />
Conky is a highly customizable free software system monitor for the X Window System that has been getting <a href="http://lifehacker.com/5068294/beautifully-minimalist-conky-setup" target="_blank">a lot of attention recently</a> by websites like<a href="http://lifehacker.com/search/conky/" target="_blank">Lifehacker</a>. To get started, install with the following command:</p>
<blockquote><p>sudo apt-get install conky</p></blockquote>
<p>Installation is simple, though customization can be tricky if you&#8217;re unfamiliar with using a text editor to do these sorts of things. I recommend simply running the program with its default setup by typing &#8220;conky&#8221; into your terminal as well as familiarizing yourself with the documentation on <a href="http://conky.sourceforge.net/documentation.html" target="_blank">Conky&#8217;s website</a> before proceeding. Once you&#8217;re ready to move on, create a .conkyrc file in your home folder or grab one from one of the <a href="http://ubuntuforums.org/showthread.php?t=281865" target="_blank">many places</a> where you might find one.</p>
<p><strong>Avant Window Navigator</strong><br />
Avant Window Navigator, AWN, is a dock-like bar which sits at the bottom your screen and tracks open windows and provides useful applets. It is a bit more abstract than simply managing your windows as buttons or segments in a panel. I recommend changing the shape of the bar. Though it does use icons to minimize screen space and adds visual appeal, I do not recommend this application for users with smaller screens. To install AWN follow this steps:</p>
<p>First, add the AWN personal package archive repository to your sources with the following command:</p>
<blockquote><p>sudo gedit /etc/apt/sources.list</p></blockquote>
<p>Then paste the following three lines at the bottom of the text ediror:</p>
<blockquote><p>#AWN PPA<br />
deb http://ppa.launchpad.net/awn-testing/ubuntu intrepid main<br />
deb-src http://ppa.launchpad.net/awn-testing/ubuntu intrepid main</p></blockquote>
<p>Install with the following two commands:</p>
<blockquote><p>sudo apt-get update<br />
sudo apt-get install avant-window-navigator-trunk awn-manager-trunk awn-extras-applets-trunk</p></blockquote>
<p>You should then find AWN in your <em>Applications</em> menu.</p>

<a href="http://www.patrickmicka.com/wp-content/gallery/ubuntu/ubuntu_desktop_1.png" title="" class="thickbox" rel="singlepic43" >
	<img class="ngg-singlepic" src="http://www.patrickmicka.com/wp-content/plugins/nextgen-gallery/nggshow.php?pid=43&amp;width=320&amp;height=240&amp;mode=" alt="ubuntu_desktop_1.png" title="ubuntu_desktop_1.png" />
</a>

<p>This is by no means and exhaustive set of instructions for customizing your desktop. Though, it should provide you with some basic tools for customizing your experience. If you run into any problems with any of these instructions, let me know.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.patrickmicka.com/ubuntu/howto-ubuntu-eye-candy/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
	</channel>
</rss>
