<?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>Guy Rutenberg &#187; KDE</title>
	<atom:link href="http://www.guyrutenberg.com/tag/kde/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.guyrutenberg.com</link>
	<description>Keeping track of what I do</description>
	<lastBuildDate>Wed, 16 Jun 2010 19:53:40 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.1</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Using MusicBrainz when Ripping CDs in KDE</title>
		<link>http://www.guyrutenberg.com/2010/01/09/using-musicbrainz-when-ripping-cds-in-kde/</link>
		<comments>http://www.guyrutenberg.com/2010/01/09/using-musicbrainz-when-ripping-cds-in-kde/#comments</comments>
		<pubDate>Sat, 09 Jan 2010 08:37:29 +0000</pubDate>
		<dc:creator>Guy</dc:creator>
				<category><![CDATA[Tips]]></category>
		<category><![CDATA[Gentoo]]></category>
		<category><![CDATA[KDE]]></category>
		<category><![CDATA[MusicBrainz]]></category>

		<guid isPermaLink="false">http://www.guyrutenberg.com/?p=610</guid>
		<description><![CDATA[I guess this tip is Gentoo specific. By default KDE uses FreeDB for getting CD info when ripping CDs. If you want to use MusicBrainz native service (not via their FreeDB proxy), there are several steps you&#8217;ll need to take.

First, you should compile kde-base/libkcddb with the musicbrainz use-flag turned on. Next you should go to [...]]]></description>
			<content:encoded><![CDATA[<p>I guess this tip is Gentoo specific. By default KDE uses FreeDB for getting CD info when ripping CDs. If you want to use MusicBrainz native service (not via their FreeDB proxy), there are several steps you&#8217;ll need to take.<br />
<span id="more-610"></span><br />
First, you should compile <code>kde-base/libkcddb</code> with the <code>musicbrainz</code> use-flag turned on. Next you should go to System Settings->Advanced->CDDB Retrieval and check the &#8220;Enable MusicBrainz lookup&#8221; box. From my experience MusicBrainz is not a complete replacement for FreeDB as some CDs aren&#8217;t recognized by it (but recognized by FreeDB). </p>
]]></content:encoded>
			<wfw:commentRss>http://www.guyrutenberg.com/2010/01/09/using-musicbrainz-when-ripping-cds-in-kde/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Disable Touchpad Tapping in Kubuntu</title>
		<link>http://www.guyrutenberg.com/2010/01/08/disable-touchpad-tapping-in-kubuntu/</link>
		<comments>http://www.guyrutenberg.com/2010/01/08/disable-touchpad-tapping-in-kubuntu/#comments</comments>
		<pubDate>Fri, 08 Jan 2010 21:13:50 +0000</pubDate>
		<dc:creator>Guy</dc:creator>
				<category><![CDATA[Tips]]></category>
		<category><![CDATA[KDE]]></category>
		<category><![CDATA[TouchPad]]></category>
		<category><![CDATA[Ubuntu]]></category>

		<guid isPermaLink="false">http://www.guyrutenberg.com/?p=611</guid>
		<description><![CDATA[In Ubuntu (gnome) there is an easy graphical way to disable tapping on the touchpad. However, KDE lacks such thing. But lacking graphical configuration doesn&#8217;t mean this should be difficult. All you need is the gsynaptics package. The package provides a small utility called synclient. Now you can disable tapping by doing

 synclient TapButton1=0

To disable [...]]]></description>
			<content:encoded><![CDATA[<p>In Ubuntu (gnome) there is an easy graphical way to disable tapping on the touchpad. However, KDE lacks such thing. But lacking graphical configuration doesn&#8217;t mean this should be difficult. All you need is the <code>gsynaptics</code> package. The package provides a small utility called <code>synclient</code>. Now you can disable tapping by doing</p>

<div class="wp_syntax"><div class="code"><pre class="text" style="font-family:monospace;"> synclient TapButton1=0</pre></div></div>

<p>To disable the tapping permanently you should use the following to run the command at the start of every KDE session.</p>

<div class="wp_syntax"><div class="code"><pre class="text" style="font-family:monospace;">echo &quot;synclient TapButton1=0&quot; &gt; ~/.kde/env/disable-tapping.sh</pre></div></div>

]]></content:encoded>
			<wfw:commentRss>http://www.guyrutenberg.com/2010/01/08/disable-touchpad-tapping-in-kubuntu/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Upgrading All KDE Related Packages in Gentoo</title>
		<link>http://www.guyrutenberg.com/2009/06/08/upgrading-all-kde-related-packages-in-gentoo/</link>
		<comments>http://www.guyrutenberg.com/2009/06/08/upgrading-all-kde-related-packages-in-gentoo/#comments</comments>
		<pubDate>Mon, 08 Jun 2009 06:24:01 +0000</pubDate>
		<dc:creator>Guy</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Tips]]></category>
		<category><![CDATA[Gentoo]]></category>
		<category><![CDATA[KDE]]></category>

		<guid isPermaLink="false">http://www.guyrutenberg.com/?p=376</guid>
		<description><![CDATA[Yesterday, Gentoo marked KDE 3.5.10 as stable on amd64. I looked for a way to upgrade all of the KDE related packages, without manually specifying each one of them. Normally one could do

emerge -avu world

but I encountered some nasty conflicts that I didn&#8217;t have time, nor will, to resolve at that time. So I&#8217;ve looked [...]]]></description>
			<content:encoded><![CDATA[<p>Yesterday, Gentoo marked KDE 3.5.10 as stable on amd64. I looked for a way to upgrade all of the KDE related packages, without manually specifying each one of them. Normally one could do</p>

<div class="wp_syntax"><div class="code"><pre class="text" style="font-family:monospace;">emerge -avu world</pre></div></div>

<p>but I encountered some nasty conflicts that I didn&#8217;t have time, nor will, to resolve at that time. So I&#8217;ve looked for a different solution. To my rescue came <code>qlist</code> for the great <code>app-portage/portage-utils</code> package. This package provides a set of very fast utilities to query <code>portage</code>. I&#8217;ve used <code>qlist</code> to list all of my installed packages, <code>grep</code>&#8216;ed the list and piped the result as arguments to <code>emerge</code> using <code>xargs</code>.<br />
<span id="more-376"></span></p>

<div class="wp_syntax"><div class="code"><pre class="text" style="font-family:monospace;"> qlist -I --nocolor | grep kde | xargs emerge -pvu1</pre></div></div>

<p>Take a look at the package list that will be merged. If everything looks fine, then do the actual merging.</p>

<div class="wp_syntax"><div class="code"><pre class="text" style="font-family:monospace;"> qlist -I --nocolor | grep kde | xargs sudo emerge -vu1</pre></div></div>

<p>The <code>--nocolor</code> is important, or else <code>emerge</code> will complain about the benign looking atoms such as <code>dev-util/kdevelop</code>  because there are invisible terminal formating characters around them.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.guyrutenberg.com/2009/06/08/upgrading-all-kde-related-packages-in-gentoo/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

<!-- Dynamic Page Served (once) in 0.404 seconds -->
