<?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/"
	xmlns:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
	>

<channel>
	<title>Who Says Penguins Can&#039;t Fly? &#187; KApplication KTips</title>
	<atom:link href="http://hanswchen.wordpress.com/category/kapplication-ktips/feed/" rel="self" type="application/rss+xml" />
	<link>http://hanswchen.wordpress.com</link>
	<description></description>
	<lastBuildDate>Fri, 06 Nov 2009 19:05:29 +0000</lastBuildDate>
	<generator>http://wordpress.com/</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<cloud domain='hanswchen.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://www.gravatar.com/blavatar/3c5596b91b62a09f9977c99bf4a6a40b?s=96&#038;d=http://s.wordpress.com/i/buttonw-com.png</url>
		<title>Who Says Penguins Can&#039;t Fly? &#187; KApplication KTips</title>
		<link>http://hanswchen.wordpress.com</link>
	</image>
			<item>
		<title>Mouse shortcuts with xbindkeys</title>
		<link>http://hanswchen.wordpress.com/2009/10/13/mouse-shortcuts-with-xbindkeys/</link>
		<comments>http://hanswchen.wordpress.com/2009/10/13/mouse-shortcuts-with-xbindkeys/#comments</comments>
		<pubDate>Tue, 13 Oct 2009 16:21:43 +0000</pubDate>
		<dc:creator>Hans</dc:creator>
				<category><![CDATA[KApplication KTips]]></category>
		<category><![CDATA[PlanetKDE]]></category>

		<guid isPermaLink="false">http://hanswchen.wordpress.com/?p=844</guid>
		<description><![CDATA[Note: This isn&#8217;t directly related to KDE. However, since there isn&#8217;t such a tool for KDE at the moment, I figured some KDE users might find it interesting as well.
I recently bought a new mouse for my desktop computer, more specifically a Logitech Corded Mouse M500. Up until then I had been using an old [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=hanswchen.wordpress.com&blog=1435266&post=844&subd=hanswchen&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><blockquote><p><strong>Note:</strong> This isn&#8217;t directly related to KDE. However, since there isn&#8217;t such a tool for KDE at the moment, I figured some KDE users might find it interesting as well.</p></blockquote>
<p>I recently bought a new mouse for my desktop computer, more specifically a <a href="http://www.logitech.com/index.cfm/mice_pointers/mice/devices/5743&amp;cl=us,en">Logitech Corded Mouse M500</a>. Up until then I had been using an old mouse with two buttons and a scroll wheel. Now I suddenly have two extra mouse buttons, and a scroll wheel that you can tilt to the left and right. Let&#8217;s see how to take advantage of this.</p>
<p><span id="more-844"></span></p>
<div id="attachment_847" class="wp-caption aligncenter" style="width: 310px"><a href="http://hanswchen.files.wordpress.com/2009/10/m500.jpg"><img class="size-medium wp-image-847" title="Logitech M500" src="http://hanswchen.files.wordpress.com/2009/10/m500.jpg?w=300&#038;h=246" alt="The freewheel scroll feature is pretty nice as well" width="300" height="246" /></a><p class="wp-caption-text">The freewheel scroll feature is pretty nice as well</p></div>
<h2>Bind keys with xbindkeys</h2>
<p>As the name suggests, <code>xbindkeys</code> is a small program that lets you bind hotkeys to actions under X. Although it doesn&#8217;t include a GUI, it&#8217;s very easy to use. <strong>There is a  graphical configuration tool called <code>xbindkeys-config</code></strong> (GTK frontend)<strong>, but in this guide I&#8217;ll edit the config file directly.</strong></p>
<ol>
<li>First of all you need to install <code>xbindkeys</code>, preferably through your package manager.</li>
<li>You can create a default configuration file with the command<br />
<blockquote>
<pre>xbindkeys --defaults &gt; $HOME/.xbindkeysrc</pre>
</blockquote>
</li>
<li>Open <code>~/.xbindkeysrc</code> in your your favorite text editor. (If you can&#8217;t find it, make sure you have &#8220;Show hidden files&#8221; enabled).<br />
<span style="color:#999999;">[This guide aims to be quite comprehensive - if you don't want to read everything, you can look at the default configuration file and try to figure out the rest yourself. It's not difficult if you read the included comments]</span></li>
<li>Let&#8217;s check the syntax. Everything after <code>#</code> are comments, which means that the program will ignore them.<br />
You can find the following text in the default file:</p>
<blockquote>
<pre># The format of a command line is:
#    "command to start"
#       associated key</pre>
</blockquote>
<p>Below are also some examples &#8211; great. It&#8217;s probably a good idea to include a short comment (start the line with <code>#</code>) before each command, for example</p>
<blockquote>
<pre># short comment
    "command to start"
       associated key</pre>
</blockquote>
</li>
<li><code>"command to start"</code> is simply a shell command (that you can run from a terminal). I&#8217;ll talk more about it under <em>Actions</em>.</li>
<li><code>associated key</code> is the hotkey. Let&#8217;s take a closer look at how to find what we should write here. But before that, don&#8217;t forget the last step.</li>
<li>Start <code>xbindkeys</code> by running the command in a terminal.</li>
</ol>
<h2>Keyboard shortcuts</h2>
<p>This section deals with keyboard shortcuts. If you&#8217;re only interested in mouse shortcuts, please see the next section <em>Mouse shortcuts</em>.</p>
<p>The first example in the generated <code>.xbindkeysrc</code> shows how you can define a hotkey:</p>
<blockquote>
<pre> control+shift + q</pre>
</blockquote>
<p>A list of modifiers is included in the comments.</p>
<blockquote>
<pre># List of modifier:
#   Release, Control, Shift, Mod1 (Alt), Mod2 (NumLock),
#   Mod3 (CapsLock), Mod4, Mod5 (Scroll).
#
# The release modifier is not a standard X modifier, but you can
# use it if you want to catch release events instead of press events
#
# By defaults, xbindkeys does not pay attention with the modifiers
# NumLock, CapsLock and ScrollLock.</pre>
</blockquote>
<p>Pretty straightforward, don&#8217;t you think? You can also use raw keycodes, as shown in the next example:</p>
<blockquote>
<pre>c:41 + m:0x4</pre>
</blockquote>
<p>Now this might look cryptic, but it&#8217;s really no problem &#8211; you can easily find the keycodes with the <code>--key</code> option. Run</p>
<blockquote>
<pre>xbindkeys -k</pre>
</blockquote>
<p>in a terminal and a window pops up. Press the desired hotkey and you should get an output similar to this:</p>
<blockquote>
<pre>Press combination of keys or/and click under the window.
You can use one of the two lines after "NoCommand"
in $HOME/.xbindkeysrc to bind a key.
"(Scheme function)"
 m:0x15 + c:34
 Control+Shift+Mod2 + q</pre>
</blockquote>
<p>In this case I pressed <code>Ctrl+Shift+Q</code>. <code>Mod2</code> corresponds to Numlock which is ignored by default, as explained in the earlier text about modifiers. Apparently the  keycodes for this hotkey are <code>m:0x15 + c:34</code>.</p>
<h2>Mouse shortcuts</h2>
<p>Now that we know how to deal with keyboard hotkeys, mouse shortcuts should be a piece of cake. The first mouse button (left) is called <code>b:1</code>, the second (right) <code>b:2</code> and so forth. Take a look at the third example and you&#8217;ll see how a mouse shortcut can be defined:</p>
<blockquote>
<pre>control + b:2</pre>
</blockquote>
<p>That&#8217;s right, you can combine mouse and keyboard shortcuts &#8211; great for those who don&#8217;t have a fancy mouse with extra buttons. I used to bind <code>Super+</code> mouse buttons to various actions with my old mouse (<code>Super</code> is the Windows key on most keyboards).</p>
<p>To find out what a mouse button is called, you can use <code>xev</code>. Similar to <code>xbindkeys -k</code> that you used earlier, it pops up a window. However, this one isn&#8217;t closed automatically, and it also grabs mouse movement and clicks. Try to click/scroll in the window (without too much mouse movement), and you should see something like</p>
<blockquote>
<pre>ButtonPress event, serial 31, synthetic NO, window 0x3a00001,
 root 0x189, subw 0x0, time 55432271, (4,0), root:(1102,842),
 state 0x10, button 9, same_screen YES</pre>
</blockquote>
<p>in the terminal output. According to the last line, I just pressed mouse button 9, which translates to <code>b:9</code> in <code>.xbindkeysrc</code>.</p>
<h2>Actions</h2>
<p><code>command to start</code> is a command that you can run from a terminal, for example an application (<code>dolphin</code>) or a shell script (out of scope for this article).</p>
<p>Let&#8217;s take a concrete example. I want to bind wheel tilt -&gt; switch to previous/next desktop. To do this I have to communicate with KWin, the default KDE window manager. KDE applications use  D-Bus to communicate with each other, and you can &#8220;talk&#8221; to them with D-Bus as well with. (This is for KDE4, in the KDE3 series DCOP is used instead).</p>
<p>I&#8217;m not very familiar with D-Bus myself, but with the help of the <code>qdbusviewer</code> tool and some Googling I found that I can use the following command to switch  desktop:</p>
<blockquote>
<pre>qdbus org.kde.kwin /KWin org.kde.KWin.nextDesktop</pre>
</blockquote>
<div id="attachment_869" class="wp-caption aligncenter" style="width: 310px"><a href="http://hanswchen.files.wordpress.com/2009/10/qdbusviewer.png"><img class="size-medium wp-image-869" title="qdbusviewer" src="http://hanswchen.files.wordpress.com/2009/10/qdbusviewer.png?w=300&#038;h=260" alt="Find the dbus call with qdbusviewer" width="300" height="260" /></a><p class="wp-caption-text">Find the D-Bus call with qdbusviewer</p></div>
<p>According to <code>xev</code> (explained in <em>Mouse shortcuts</em>) the tilt to the left and right corresponds to <code>b:6</code> and  <code>b:7</code>. Therefore, a part of my <code>.xbindkeysrc</code> looks like this:</p>
<blockquote>
<pre># Previous desktop
"qdbus org.kde.kwin /KWin org.kde.KWin.previousDesktop"
  b:6

# Next desktop
"qdbus org.kde.kwin /KWin org.kde.KWin.nextDesktop"
  b:7</pre>
</blockquote>
<p>Don&#8217;t forget the quotation marks (<code>""</code>) around the commands!</p>
<h2>Emulate key presses</h2>
<p>Now I want to map the two other mouse buttons to the KWin effects &#8220;Present Windows&#8221; and &#8220;Desktop Grid&#8221;. I couldn&#8217;t find any D-Bus calls for this, so let&#8217;s try to achieve it in another way. The effects are already mapped to some keyboard shortcuts &#8211; maybe we can find a command to &#8220;emulate&#8221; these key presses?</p>
<p>The tool for doing this is called <code>xte</code>, and is included in the <code>xautomation</code> package. Again, install it with your package manager.</p>
<p>The default shortcut for &#8220;Show Desktop Grid&#8221; is <code>Ctrl+F8</code>. The following command should then activate the effect:</p>
<blockquote>
<pre>xte 'keydown Control_L' 'key F8' 'keyup Control_L'</pre>
</blockquote>
<p>Whether we choose<code> Control_L </code>or <code>Control_R </code>doesn&#8217;t really matter. After confirming that it works, I added the following lines to <code>.xbindkeysrc</code>:</p>
<blockquote>
<pre># Present Windows
"xte 'keydown Control_L' 'key F10' 'keyup Control_L'"
  b:8

# Desktop Grid
"xte 'keydown Control_L' 'key F8' 'Control Super_L'"
  b:9
</pre>
</blockquote>
<p>If nothing happens for you, make sure you emulate the right key presses. Have you changed any shortcuts?</p>
<p><code>xte --help</code> displays some helpful text that you might find useful.</p>
<h2>Apply settings and make xbindkeys autostart</h2>
<p>Now we&#8217;re almost done! Remember that you have to restart <code>xbindkeys</code> to apply the changes:</p>
<blockquote>
<pre>killall xbindkeys &amp;&amp; xbindkeys</pre>
</blockquote>
<p>As a final touch, let&#8217;s make <code>xbindkeys</code> autostart with KDE. It&#8217;s very easy to do with the new Autostart module.</p>
<ol>
<li>Open System Settings.</li>
<li>Go to Advanced tab -&gt; Autostart.</li>
<li>Click on &#8220;Add Program&#8230;&#8221;.</li>
<li>Write <code>xbindkeys</code> and press OK. A new dialog pops up. Press OK again.</li>
<li>Done!</li>
</ol>
<div id="attachment_871" class="wp-caption aligncenter" style="width: 310px"><a href="http://hanswchen.files.wordpress.com/2009/10/autostart.png"><img class="size-medium wp-image-871" title="Autostart" src="http://hanswchen.files.wordpress.com/2009/10/autostart.png?w=300&#038;h=211" alt="Make xbindkeys autostart" width="300" height="211" /></a><p class="wp-caption-text">Make xbindkeys autostart</p></div>
<h2>Closing words</h2>
<p>In this tutorial we&#8217;ve learned how to use the <code>xbindkeys</code> program to bind keyboard and mouse shortcuts to different commands. We also took a quick look at how to communicate with an application using <code>qdbus</code> and emulate key presses with <code>xte</code>. Finally, we made <code>xbindkeys </code>autostart.</p>
<p>I think it would be great if the &#8220;Input Actions&#8221; module in System Settings also supported mouse shortcuts. A more simple module for assigning mouse buttons to actions would be nice as well.</p>
<p>Hope that you found this guide helpful, don&#8217;t hesitate to leave a comment below if there&#8217;s anything on your mind.</p>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/hanswchen.wordpress.com/844/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/hanswchen.wordpress.com/844/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/hanswchen.wordpress.com/844/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/hanswchen.wordpress.com/844/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/hanswchen.wordpress.com/844/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/hanswchen.wordpress.com/844/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/hanswchen.wordpress.com/844/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/hanswchen.wordpress.com/844/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/hanswchen.wordpress.com/844/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/hanswchen.wordpress.com/844/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=hanswchen.wordpress.com&blog=1435266&post=844&subd=hanswchen&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://hanswchen.wordpress.com/2009/10/13/mouse-shortcuts-with-xbindkeys/feed/</wfw:commentRss>
		<slash:comments>25</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/96ef52ca5132655fa9a3fe17de01f749?s=96&#38;d=identicon" medium="image">
			<media:title type="html">Mogger</media:title>
		</media:content>

		<media:content url="http://hanswchen.files.wordpress.com/2009/10/m500.jpg?w=300" medium="image">
			<media:title type="html">Logitech M500</media:title>
		</media:content>

		<media:content url="http://hanswchen.files.wordpress.com/2009/10/qdbusviewer.png?w=300" medium="image">
			<media:title type="html">qdbusviewer</media:title>
		</media:content>

		<media:content url="http://hanswchen.files.wordpress.com/2009/10/autostart.png?w=300" medium="image">
			<media:title type="html">Autostart</media:title>
		</media:content>
	</item>
		<item>
		<title>Plasma &#8211; A nice weather &#8220;plasmoid&#8221; in 4 easy steps</title>
		<link>http://hanswchen.wordpress.com/2009/07/30/plasma-a-nice-weather-plasmoid-in-4-easy-steps/</link>
		<comments>http://hanswchen.wordpress.com/2009/07/30/plasma-a-nice-weather-plasmoid-in-4-easy-steps/#comments</comments>
		<pubDate>Thu, 30 Jul 2009 16:13:15 +0000</pubDate>
		<dc:creator>Hans</dc:creator>
				<category><![CDATA[KApplication KTips]]></category>
		<category><![CDATA[KDE]]></category>
		<category><![CDATA[PlanetKDE]]></category>

		<guid isPermaLink="false">http://hanswchen.wordpress.com/?p=423</guid>
		<description><![CDATA[Some time ago, a person on identi.ca asked in the KDE group which weather plasmoid people preferred. He seemed to like my suggestion, so I figured, why not share it here too?
The end result will look like this:
(but hopefully with less rain&#8230;)
As you can see, it&#8217;s an hourly forecast. It reports the weather, temperature, wind [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=hanswchen.wordpress.com&blog=1435266&post=423&subd=hanswchen&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>Some time ago, a person on <a href="http://identi.ca" target="_blank">identi.ca</a> asked in the <a href="http://identi.ca/group/kde" target="_blank">KDE group</a> which weather plasmoid people preferred. He seemed to like my suggestion, so I figured, why not share it here too?</p>
<p>The end result will look like this:</p>
<p style="text-align:center;"><a href="http://hanswchen.files.wordpress.com/2009/07/weatherplasmoid.png"><img class="aligncenter size-medium wp-image-424" title="Weather Plasmoid" src="http://hanswchen.files.wordpress.com/2009/07/weatherplasmoid.png?w=300&#038;h=104" alt="Weather Plasmoid" width="300" height="104" /></a><em>(but hopefully with less rain&#8230;)</em></p>
<p>As you can see, it&#8217;s an hourly forecast. It reports the weather, temperature, wind speed and direction and &#8211; most important for me &#8211; precipitation.</p>
<p><span id="more-423"></span></p>
<p>Enough talk already; here are the steps:</p>
<ol>
<li>Install the <a href="http://kde-look.org/content/show.php/Scripted+Image?content=91749" target="_blank">Scripted Image</a> plasmoid. It has some quirks (for example, auto reload doesn&#8217;t work on one of my computers), but I haven&#8217;t found a better alternative.<br />
The plasmoid is easily installed from the Add Widgets dialog (cashew <img class="alignnone" src="http://hanswchen.files.wordpress.com/2008/10/plasma.png?w=22&amp;h=22&#038;h=22" alt="" width="22" height="22" /> -&gt; Add Widgets&#8230;). Click on &#8220;Install New Widgets&#8221; and choose &#8220;Download New Plasma Widgets&#8221;. Search for &#8220;image&#8221; and press on &#8220;Install&#8221; in the &#8220;Scripted Image&#8221; box.</p>
<p><a href="http://hanswchen.files.wordpress.com/2009/07/ghns.png"><img class="aligncenter size-medium wp-image-429" title="Install Widget" src="http://hanswchen.files.wordpress.com/2009/07/ghns.png?w=300&#038;h=181" alt="Install Widget" width="300" height="181" /></a><br />
Note: When I close the dialog I get a message stating that the installation failed. However, seeing how the widget appears fine, it seems like it&#8217;s just false alarm.</li>
<li>Go to <a href="http://www.yr.no/english/" target="_blank">yr.no</a> and search for your city. Click on &#8220;Hour by hour&#8221; and get the URL for the image (in Konqueror: right click -&gt; Actions -&gt; Copy Path -&gt; copy whole path).<a href="http://hanswchen.files.wordpress.com/2009/07/weather.png"><img class="aligncenter size-medium wp-image-431" title="yr.no hour by hour" src="http://hanswchen.files.wordpress.com/2009/07/weather.png?w=300&#038;h=179" alt="yr.no hour by hour" width="300" height="179" /></a><br />
Of course you&#8217;re free to use another weather forecast service if you want, as long as it shows the forecast in an image.</li>
<li>Add &#8220;Scripted Image&#8221; to your desktop (cashew <img src="http://hanswchen.files.wordpress.com/2008/10/plasma.png?w=22&amp;h=22&#038;h=22" alt="" width="22" height="22" /> -&gt; Add Widgets&#8230; -&gt; drag &#8220;Scripted Image&#8221; to your desktop) and click on &#8220;Configure&#8230;&#8221; in the widget.</li>
<li>In the dialog, paste the URL from step 2 under &#8220;Image URL&#8221;. Choose an appropriate number of minutes (for example 30) for reload &#8220;Interval&#8221; and set &#8220;Scaling&#8221; to &#8220;Scale applet to content&#8221;. Click on &#8220;OK&#8221;.<a href="http://hanswchen.files.wordpress.com/2009/07/configdialog.png"><img class="aligncenter size-medium wp-image-435" title="Configure Widget" src="http://hanswchen.files.wordpress.com/2009/07/configdialog.png?w=300&#038;h=180" alt="Configure Widget" width="300" height="180" /></a></li>
</ol>
<p>We&#8217;re done! Hope you find it useful, and as always, comments are much appreciated.</p>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/hanswchen.wordpress.com/423/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/hanswchen.wordpress.com/423/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/hanswchen.wordpress.com/423/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/hanswchen.wordpress.com/423/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/hanswchen.wordpress.com/423/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/hanswchen.wordpress.com/423/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/hanswchen.wordpress.com/423/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/hanswchen.wordpress.com/423/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/hanswchen.wordpress.com/423/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/hanswchen.wordpress.com/423/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=hanswchen.wordpress.com&blog=1435266&post=423&subd=hanswchen&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://hanswchen.wordpress.com/2009/07/30/plasma-a-nice-weather-plasmoid-in-4-easy-steps/feed/</wfw:commentRss>
		<slash:comments>34</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/96ef52ca5132655fa9a3fe17de01f749?s=96&#38;d=identicon" medium="image">
			<media:title type="html">Mogger</media:title>
		</media:content>

		<media:content url="http://hanswchen.files.wordpress.com/2009/07/weatherplasmoid.png?w=300" medium="image">
			<media:title type="html">Weather Plasmoid</media:title>
		</media:content>

		<media:content url="http://hanswchen.files.wordpress.com/2008/10/plasma.png?w=22&#38;h=22" medium="image" />

		<media:content url="http://hanswchen.files.wordpress.com/2009/07/ghns.png?w=300" medium="image">
			<media:title type="html">Install Widget</media:title>
		</media:content>

		<media:content url="http://hanswchen.files.wordpress.com/2009/07/weather.png?w=300" medium="image">
			<media:title type="html">yr.no hour by hour</media:title>
		</media:content>

		<media:content url="http://hanswchen.files.wordpress.com/2008/10/plasma.png?w=22&#38;h=22" medium="image" />

		<media:content url="http://hanswchen.files.wordpress.com/2009/07/configdialog.png?w=300" medium="image">
			<media:title type="html">Configure Widget</media:title>
		</media:content>
	</item>
		<item>
		<title>Plasma &#8211; Desktop Icons in KDE 4.2</title>
		<link>http://hanswchen.wordpress.com/2009/01/29/plasma-desktop-icons-in-kde-42/</link>
		<comments>http://hanswchen.wordpress.com/2009/01/29/plasma-desktop-icons-in-kde-42/#comments</comments>
		<pubDate>Thu, 29 Jan 2009 22:50:18 +0000</pubDate>
		<dc:creator>Hans</dc:creator>
				<category><![CDATA[KApplication KTips]]></category>
		<category><![CDATA[KDE]]></category>

		<guid isPermaLink="false">http://hanswchen.wordpress.com/?p=173</guid>
		<description><![CDATA[The new desktop in KDE4 works quite differently from what many are used to. One thing many new users wonder is, &#8220;How does the desktop icons work?&#8221; In this post I&#8217;ll share my experience with icons in Plasma-desktop.
Note: I use the latest development version of KDE4, which means that some things may look slightly different [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=hanswchen.wordpress.com&blog=1435266&post=173&subd=hanswchen&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>The new desktop in KDE4 works quite differently from what many are used to. One thing many new users wonder is, &#8220;How does the desktop icons work?&#8221; In this post I&#8217;ll share my experience with icons in Plasma-desktop.</p>
<blockquote><p><strong>Note:</strong> I use the latest development version of KDE4, which means that some things may look slightly different on your computer.</p></blockquote>
<p>Let&#8217;s start with the most simple icon. If you just want a &#8220;normal&#8221; desktop with icons, see the section &#8220;Traditional Desktop&#8221;.</p>
<p><span id="more-173"></span></p>
<h1>Icon Widgets</h1>
<p>You&#8217;ve probably already discovered the &#8220;Add Widgets&#8221; dialog, which lets you put all kind of stuff on your desktop: calculators, calenders, sticky notes and <a href="http://lh3.ggpht.com/wadejolson/SENqNtBFiUI/AAAAAAAAAYI/APuppCOyyHw/s400/270669_1879_large.png" target="_blank">clocks</a>, just  to name a few. So how do we add an icon widget to the desktop?</p>
<p>There are many ways &#8211; a relative straightforward method is to drag and drop. For example, you can drag a file from the file manager Dolphin and drop it on the desktop. If you want a shortcut to an application, simply drag its icon from the application launcher.</p>
<p style="text-align:center;"><a href="http://hanswchen.files.wordpress.com/2009/01/drag-kickoff.png"><img class="size-medium wp-image-174 aligncenter" title="Drag from Kickoff" src="http://hanswchen.files.wordpress.com/2009/01/drag-kickoff.png?w=300&#038;h=246" alt="Drag from Kickoff" width="300" height="246" /></a></p>
<p style="text-align:center;"><em>Dragging an icon from Kickoff, the default application launcher</em></p>
<p style="text-align:left;">The result is an icon that behaves like the other widgets. You&#8217;ll notice that the black handle will appear on hover, and you can resize/rotate the icon.</p>
<p style="text-align:center;"><a href="http://hanswchen.files.wordpress.com/2009/01/iconwidget.png"><img class="aligncenter size-full wp-image-176" title="Icon Widget" src="http://hanswchen.files.wordpress.com/2009/01/iconwidget.png?w=207&#038;h=178" alt="Icon Widget" width="207" height="178" /></a></p>
<p style="text-align:center;"><em>The icon widget behaves like any other widget</em></p>
<p style="text-align:left;">Now you might wonder, &#8220;Why would anyone want to do that?&#8221;. I don&#8217;t know. But the fact is that this icon <em>is</em> a widget;  for example, if you remove it from the desktop, the original file won&#8217;t be deleted. This has several disadvantages, such as not being able to sort icons and align them to grid. So how do we get more &#8220;traditional&#8221; icons?</p>
<p style="text-align:left;">
<p style="text-align:left;">
<h1>Folder View</h1>
<p style="text-align:left;">Folder View is basically a widget that shows the content of a directory. By default, there&#8217;s a Folder View on your desktop that displays the files in your desktop directory.</p>
<p style="text-align:center;"><a href="http://hanswchen.files.wordpress.com/2009/01/folderview.png"><img class="aligncenter size-medium wp-image-177" title="Folderview" src="http://hanswchen.files.wordpress.com/2009/01/folderview.png?w=300&#038;h=200" alt="Folder view" width="300" height="200" /></a></p>
<p style="text-align:center;"><em>Folder view</em></p>
<p style="text-align:left;">You&#8217;ll find that Folder View, in contrast to the icon widgets, has the most features one would expect: you select icons, sort and align them to grid, create/delete files etc.</p>
<p style="text-align:left;">If you have a hard time understanding what the Folder View does, you can think of it as a Dolphin window (the default file manager) without any toolbars.</p>
<p style="text-align:center;"><a href="http://hanswchen.files.wordpress.com/2009/01/folderview-dolphin.png"><img class="aligncenter size-medium wp-image-178" title="Folderview - Dolphin" src="http://hanswchen.files.wordpress.com/2009/01/folderview-dolphin.png?w=300&#038;h=137" alt="Folder view - Dolphin" width="300" height="137" /></a></p>
<p style="text-align:center;"><em>Folder View &#8211; Dolphin&#8217;s cousin living on the desktop?</em></p>
<p style="text-align:left;">The big difference is that you can&#8217;t navigate through directories (folders) in Folder View. Instead, it&#8217;ll launch your preferred file manager when you click on a folder.</p>
<p style="text-align:left;">You can add as many Folder Views as you want from the &#8220;Add Widgets&#8221; dialog and point them to different locations. In the next section, I&#8217;m going to talk briefly about how you can use Folder View.</p>
<h2>Usage</h2>
<p style="text-align:left;">First, let&#8217;s check the settings: right click -&gt; Folder View Settings or press the wrench on the black border that appears on hover.</p>
<p style="text-align:center;"><a href="http://hanswchen.files.wordpress.com/2009/01/folderview-location.png"><img class="aligncenter size-medium wp-image-180" title="Folderview Settings - Location" src="http://hanswchen.files.wordpress.com/2009/01/folderview-location.png?w=300&#038;h=233" alt="Folderview Settings - Location" width="300" height="233" /></a></p>
<p style="text-align:center;"><em>Folder View Setting &#8211; Location</em></p>
<p style="text-align:left;">First of all, you can set the location; i.e., the directory that the Folder View should show. Note that it isn&#8217;t restricted to local directories &#8211; you can also show files from remote FTP, SSH etc.</p>
<p style="text-align:left;">In &#8220;Display&#8221;, you can customize the look of the widget. Not much to say here.</p>
<p style="text-align:left;">The &#8220;Filter&#8221; page lets you set which types of items the Folder View should display. The default setting is &#8220;Show all files&#8221;, but you can choose to show or hide certain files based on their file name and type. For example. I might want to show all image files that begin with &#8220;kde&#8221; in a directory.</p>
<p style="text-align:left;">The last page, &#8220;Keyboard Shortcut&#8221;, doesn&#8217;t seem to be very useful at the moment. I think the idea is to set a shortcut to give the widget focus, but keyboard navigation in Folder View doesn&#8217;t appear to work very well at the moment.</p>
<p style="text-align:left;">Now, let&#8217;s give two concrete examples of how you can use Folder View.</p>
<p style="text-align:left;"><strong>Example 1. Favorite Applications</strong></p>
<p style="text-align:left;">You might want to create a Folder View that shows your favorite applications. No problem.</p>
<ol>
<li>Create a new directory somewhere in your home directory (e.g. ~/applications)</li>
<li>Add a new Folder View to your desktop and open its settings dialog.</li>
<li>In &#8220;Location&#8221;, click on &#8220;Specify a folder:&#8221; and enter the location (e.g. ~/applications). You can also click on the button to the right to select directory.</li>
<li>Go to &#8220;Display&#8221;. Change the label to &#8220;Applications&#8221;  and check &#8220;Align to grid&#8221;.</li>
<li>Press OK.</li>
</ol>
<p>Now you can add applications, for example by drag and drop from the application launcher. When you drop the icon, you&#8217;ll probably see a list with different options. &#8220;Copy here&#8221; should do just fine, since you only copy the .desktop file of the application. &#8220;Link here&#8221; also works. If you don&#8217;t want to see the list, hold down <code>ctrl</code> when you drag the icons.</p>
<p><strong>Example 2. Downloaded PDF files</strong></p>
<p>This main point of this example is to demonstrate the Filter option. Let&#8217;s say you want to show all PDF files in your &#8220;Download&#8221; directory:</p>
<ol>
<li>Add a Folder View widget.</li>
<li>Point it to your download directory.</li>
<li>You might want to change some display settings, such as setting the label to &#8220;Downloaded PDF files&#8221;.</li>
<li>In &#8220;Filter&#8221;, choose &#8220;Show Files Matching&#8221;. Under &#8220;File Types:&#8221;, type &#8220;pdf&#8221; in the search bar.</li>
<li>Check &#8220;PDF Document (*.pdf)&#8221; that appears in the list below. Click on OK.</li>
</ol>
<p style="text-align:center;"><a href="http://hanswchen.files.wordpress.com/2009/01/folderview-filter1.png"><img class="aligncenter size-medium wp-image-181" title="Folderview Settings - Filter" src="http://hanswchen.files.wordpress.com/2009/01/folderview-filter1.png?w=300&#038;h=233" alt="Folderview Filter" width="300" height="233" /></a></p>
<p style="text-align:center;"><em>Only show PDF files</em></p>
<h1>Traditional Desktop</h1>
<p style="text-align:left;">So Folder View is great and everything, but what if I don&#8217;t want my icons in a box? There are many users that just want a traditional desktop. So they just have to resize a Folder View to cover their entire desktop and use a theme like <a href="http://kde-look.org/content/show.php/Naked?content=93331" target="_blank">Naked</a>.</p>
<p style="text-align:left;">But that would be rather silly, wouldn&#8217;t it?</p>
<p style="text-align:left;">Actually, you can choose to use Folder View as your desktop, and it&#8217;s very easy to do:</p>
<ol>
<li>Right click on the desktop -&gt; Appearance Settings (in my version it&#8217;s called Desktop Settings, but I think KDE 4.2 uses the former name).</li>
<li>Under &#8220;Desktop Activity&#8221;, you can see &#8220;Type: Desktop&#8221;. Change &#8220;Desktop&#8221; to &#8220;Folder View&#8221; and click on OK.</li>
</ol>
<p style="text-align:center;"><a href="http://hanswchen.files.wordpress.com/2009/01/folderview-desktop.png"><img class="aligncenter size-medium wp-image-182" title="Folderview Desktop" src="http://hanswchen.files.wordpress.com/2009/01/folderview-desktop.png?w=300&#038;h=175" alt="Folderview Desktop" width="300" height="175" /></a></p>
<p style="text-align:center;"><em>Choosing Folder View as desktop type</em></p>
<p style="text-align:left;">You should now have a traditional desktop. Huzzah! To revert to the default desktop, right click -&gt; Folder View Settings and change &#8220;Type&#8221; to &#8220;Desktop&#8221;. You&#8217;ll also find the Folder View settings in this dialog.</p>
<p style="text-align:left;">
<h1>Tips</h1>
<p>I hope that you found this somewhat helpful. To round things off, here are some tips:</p>
<ul>
<li>You can still add widgets to the traditional desktop. Click on the cashew<img class="alignnone size-full wp-image-117" title="Cashew" src="http://hanswchen.files.wordpress.com/2008/10/plasma.png?w=22&#038;h=22" alt="" width="22" height="22" /> and choose &#8220;Add widgets&#8230;&#8221;.</li>
<li>Like any other widget, you can add Folder View to a panel.</li>
<li>If you like the tip above, check out <a href="http://kde-look.org/content/show.php/QuickAccess?content=84128" target="_blank">QuickAccess</a>, &#8220;a small applet designed for the panel to have quick access to the most used folders&#8221;. Unfortunately it doesn&#8217;t seem to work with KDE 4.2 yet.</li>
</ul>
<p>Have fun!</p>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/hanswchen.wordpress.com/173/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/hanswchen.wordpress.com/173/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/hanswchen.wordpress.com/173/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/hanswchen.wordpress.com/173/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/hanswchen.wordpress.com/173/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/hanswchen.wordpress.com/173/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/hanswchen.wordpress.com/173/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/hanswchen.wordpress.com/173/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/hanswchen.wordpress.com/173/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/hanswchen.wordpress.com/173/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=hanswchen.wordpress.com&blog=1435266&post=173&subd=hanswchen&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://hanswchen.wordpress.com/2009/01/29/plasma-desktop-icons-in-kde-42/feed/</wfw:commentRss>
		<slash:comments>7</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/96ef52ca5132655fa9a3fe17de01f749?s=96&#38;d=identicon" medium="image">
			<media:title type="html">Mogger</media:title>
		</media:content>

		<media:content url="http://hanswchen.files.wordpress.com/2009/01/drag-kickoff.png?w=300" medium="image">
			<media:title type="html">Drag from Kickoff</media:title>
		</media:content>

		<media:content url="http://hanswchen.files.wordpress.com/2009/01/iconwidget.png" medium="image">
			<media:title type="html">Icon Widget</media:title>
		</media:content>

		<media:content url="http://hanswchen.files.wordpress.com/2009/01/folderview.png?w=300" medium="image">
			<media:title type="html">Folderview</media:title>
		</media:content>

		<media:content url="http://hanswchen.files.wordpress.com/2009/01/folderview-dolphin.png?w=300" medium="image">
			<media:title type="html">Folderview - Dolphin</media:title>
		</media:content>

		<media:content url="http://hanswchen.files.wordpress.com/2009/01/folderview-location.png?w=300" medium="image">
			<media:title type="html">Folderview Settings - Location</media:title>
		</media:content>

		<media:content url="http://hanswchen.files.wordpress.com/2009/01/folderview-filter1.png?w=300" medium="image">
			<media:title type="html">Folderview Settings - Filter</media:title>
		</media:content>

		<media:content url="http://hanswchen.files.wordpress.com/2009/01/folderview-desktop.png?w=300" medium="image">
			<media:title type="html">Folderview Desktop</media:title>
		</media:content>

		<media:content url="http://hanswchen.files.wordpress.com/2008/10/plasma.png" medium="image">
			<media:title type="html">Cashew</media:title>
		</media:content>
	</item>
		<item>
		<title>Plasma &#8211; How to remove the cashew</title>
		<link>http://hanswchen.wordpress.com/2008/10/23/plasma-how-to-remove-the-cashew/</link>
		<comments>http://hanswchen.wordpress.com/2008/10/23/plasma-how-to-remove-the-cashew/#comments</comments>
		<pubDate>Thu, 23 Oct 2008 15:04:06 +0000</pubDate>
		<dc:creator>Hans</dc:creator>
				<category><![CDATA[KApplication KTips]]></category>
		<category><![CDATA[KDE]]></category>

		<guid isPermaLink="false">http://hanswchen.wordpress.com/?p=116</guid>
		<description><![CDATA[One of the major complaints of Plasma is that you can&#8217;t remove the annoying icon from your panels or desktop. Oh yes, I&#8217;m talking about the infamous Cashew of Plasma.

Before
This is a small guide on how to get rid of the cashews. You probably need version 4.1 of KDE or higher and know a little [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=hanswchen.wordpress.com&blog=1435266&post=116&subd=hanswchen&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>One of the major complaints of Plasma is that you can&#8217;t remove the annoying icon from your panels or desktop. Oh yes, I&#8217;m talking about the infamous Cashew of Plasma.<img class="alignnone size-full wp-image-117" title="Cashew" src="http://hanswchen.files.wordpress.com/2008/10/plasma.png?w=22&#038;h=22" alt="" width="22" height="22" /></p>
<p><a href="http://hanswchen.files.wordpress.com/2008/10/default.png" target="_blank"><img class="aligncenter size-medium wp-image-119" title="Default desktop" src="http://hanswchen.files.wordpress.com/2008/10/default.png?w=300&#038;h=240" alt="" width="300" height="240" /></a></p>
<p style="text-align:center;"><em>Before</em></p>
<p>This is a small guide on how to get rid of the cashews. You probably need version 4.1 of KDE or higher and know a little bit about how to use the terminal.</p>
<p><span id="more-116"></span></p>
<h1>Panel Cashew</h1>
<p>The cashew here let&#8217;s you configure the panel by clicking on<img class="alignnone size-full wp-image-117" title="Cashew" src="http://hanswchen.files.wordpress.com/2008/10/plasma.png?w=22&#038;h=22" alt="" width="22" height="22" />. If you feel that you&#8217;re satisfied with your setup and don&#8217;t need the cashew anymore, you can hide it be choosing &#8220;Lock Widgets&#8221;. This option can be found in many places, such as the <a href="http://hanswchen.files.wordpress.com/2008/10/rightclick.png" target="_blank">right click menu</a>, when you <a href="http://hanswchen.files.wordpress.com/2008/10/panel1.png" target="_blank">configure the panel</a> or by clicking on the cashew in the upper right corner.</p>
<p style="text-align:center;"><img class="size-full wp-image-120 aligncenter" title="Cashew Menu" src="http://hanswchen.files.wordpress.com/2008/10/cashewmenu.png?w=205&#038;h=207" alt="" width="205" height="207" /></p>
<p style="text-align:center;"><em>See, I&#8217;m not completely useless</em></p>
<p>Once you&#8217;ve locked your widgets, they can&#8217;t be moved, resized/rotated or removed anymore. The option to add new widgets will also be gone. If you want to change anything, simply unlock the widgets in the same way as you locked them.</p>
<h1>Desktop Cashew</h1>
<p>This one is a little bit tougher. You&#8217;ll notice that it won&#8217;t go away when you lock the widgets, which has caused frustration among many KDE4 users. One particular person decided to do something about it, and thus the <em>I HATE the Cashew</em> plasmoid was born.</p>
<p><strong>Note:</strong> The preferable way to install this widget is through your package manager if it&#8217;s in the repositories. The steps below describe how to compile it from source.</p>
<ol>
<li>Download the plasmoid <a href="http://www.kde-look.org/content/show.php/I+HATE+the+Cashew?content=91009" target="_blank">here</a> and save it somewhere in your home directory.</li>
<li>Extract the tbz file with the following command:</li>
<blockquote><p><code>tar -xjvf <em>filename</em><br />
</code></p></blockquote>
<p>where <code>filename</code> is the name of the downloaded file, for example <code>91009-iHateTheCashew.tbz</code>.</p>
<p style="text-align:center;"><a href="http://hanswchen.files.wordpress.com/2008/10/extract.png" target="_blank"><img class="aligncenter size-full wp-image-125" title="Extract" src="http://hanswchen.files.wordpress.com/2008/10/extract.png?w=505&#038;h=401" alt="" width="505" height="401" /></a></p>
<li>Run the following commands:</li>
<blockquote><p><code>cd iHateTheCashew<br />
</code></p>
<p><code>mkdir build</code></p>
<p><code>cd build</code></p></blockquote>
<li>Now we&#8217;re ready to compile the plasmoid:</li>
<blockquote><p><code>cmake -DCMAKE_INSTALL_PREFIX=`kde4-config --prefix` ..<br />
</code></p>
<p><code>make</code></p></blockquote>
<p>If you run into errors in this step, it&#8217;s most likely a dependency problem. Check that you have all necessary packages installed.</p>
<li>In most cases, you need root access to install the widget:</li>
<blockquote><p><code>sudo make install</code></p></blockquote>
<p>When you&#8217;ve typed your password and hit Enter, the plasmoid will be installed &#8211; you should now be ready for step 6. Below are some corner cases.</p>
<p>If the <code>sudo</code> command isn&#8217;t available, you can use the regular <code>su</code> command:</p>
<blockquote><p><code>su<br />
&lt;<em>type root password</em>&gt;</code><code><br />
make install</code></p></blockquote>
<p>Sometimes your user has write access to the directory where KDE4 is installed, for example if you have a KDE development environment set up according to this <a href="http://techbase.kde.org/Getting_Started/Build/KDE4#Setting_up_the_environment" target="_blank">Techbase Tutorial</a>. In that case, you can run <code>make install</code> without using <code>sudo</code> or <code>su.</code></p>
<p>If you use the .bashrc in the link above, you can compile and install the plasmoid with a single command:</p>
<blockquote><p><code>cmakekde ..</code></p></blockquote>
<li>You should find your new plasmoid in the Add Widgets dialog. Add <em>I HATE the cashew</em> to your desktop (remember that you have to unlock the widgets first).</li>
</ol>
<p style="text-align:center;"><a href="http://hanswchen.files.wordpress.com/2008/10/widget.png" target="_blank"><img class="aligncenter size-medium wp-image-127" title="Add Widget" src="http://hanswchen.files.wordpress.com/2008/10/widget.png?w=386&#038;h=440" alt="" width="386" height="440" /></a></p>
<p style="text-align:left;">And we&#8217;re done! Lock your widgets again and all cashews should have disappeared.</p>
<p style="text-align:left;"><a href="http://hanswchen.files.wordpress.com/2008/10/nocashew.png" target="_blank"><img class="aligncenter size-medium wp-image-130" title="After" src="http://hanswchen.files.wordpress.com/2008/10/nocashew.png?w=300&#038;h=240" alt="" width="300" height="240" /></a></p>
<p style="text-align:center;"><em>After</em></p>
<p style="text-align:left;">If you want<img class="alignnone size-full wp-image-117" title="Cashew" src="http://hanswchen.files.wordpress.com/2008/10/plasma.png?w=22&#038;h=22" alt="" width="22" height="22" /> back on your desktop, simply remove the <em>I HATE the cashew</em> plasmoid by clicking on<img class="alignnone size-full wp-image-131" title="Remove" src="http://hanswchen.files.wordpress.com/2008/10/list-remove.png?w=22&#038;h=22" alt="" width="22" height="22" /> in the <a href="http://hanswchen.files.wordpress.com/2008/10/revome.png" target="_blank">Add Widgets dialog</a>. Nice, isn&#8217;t it?</p>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/hanswchen.wordpress.com/116/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/hanswchen.wordpress.com/116/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/hanswchen.wordpress.com/116/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/hanswchen.wordpress.com/116/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/hanswchen.wordpress.com/116/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/hanswchen.wordpress.com/116/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/hanswchen.wordpress.com/116/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/hanswchen.wordpress.com/116/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/hanswchen.wordpress.com/116/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/hanswchen.wordpress.com/116/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=hanswchen.wordpress.com&blog=1435266&post=116&subd=hanswchen&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://hanswchen.wordpress.com/2008/10/23/plasma-how-to-remove-the-cashew/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/96ef52ca5132655fa9a3fe17de01f749?s=96&#38;d=identicon" medium="image">
			<media:title type="html">Mogger</media:title>
		</media:content>

		<media:content url="http://hanswchen.files.wordpress.com/2008/10/plasma.png" medium="image">
			<media:title type="html">Cashew</media:title>
		</media:content>

		<media:content url="http://hanswchen.files.wordpress.com/2008/10/default.png?w=300" medium="image">
			<media:title type="html">Default desktop</media:title>
		</media:content>

		<media:content url="http://hanswchen.files.wordpress.com/2008/10/plasma.png" medium="image">
			<media:title type="html">Cashew</media:title>
		</media:content>

		<media:content url="http://hanswchen.files.wordpress.com/2008/10/cashewmenu.png" medium="image">
			<media:title type="html">Cashew Menu</media:title>
		</media:content>

		<media:content url="http://hanswchen.files.wordpress.com/2008/10/extract.png" medium="image">
			<media:title type="html">Extract</media:title>
		</media:content>

		<media:content url="http://hanswchen.files.wordpress.com/2008/10/widget.png" medium="image">
			<media:title type="html">Add Widget</media:title>
		</media:content>

		<media:content url="http://hanswchen.files.wordpress.com/2008/10/nocashew.png?w=300" medium="image">
			<media:title type="html">After</media:title>
		</media:content>

		<media:content url="http://hanswchen.files.wordpress.com/2008/10/plasma.png" medium="image">
			<media:title type="html">Cashew</media:title>
		</media:content>

		<media:content url="http://hanswchen.files.wordpress.com/2008/10/list-remove.png" medium="image">
			<media:title type="html">Remove</media:title>
		</media:content>
	</item>
	</channel>
</rss>