<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	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/"
		>
<channel>
	<title>Comments on: Removing KDE icons in gnome / remove gnome icons in KDE</title>
	<atom:link href="http://ubuntu-tutorials.com/2007/07/18/removing-kde-icons-in-gnome-remove-gnome-icons-in-kde/feed/" rel="self" type="application/rss+xml" />
	<link>http://ubuntu-tutorials.com/2007/07/18/removing-kde-icons-in-gnome-remove-gnome-icons-in-kde/</link>
	<description>Enhancing your Ubuntu experience!</description>
	<lastBuildDate>Wed, 17 Mar 2010 11:53:56 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=abc</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: mrHappyPants</title>
		<link>http://ubuntu-tutorials.com/2007/07/18/removing-kde-icons-in-gnome-remove-gnome-icons-in-kde/comment-page-1/#comment-8529</link>
		<dc:creator>mrHappyPants</dc:creator>
		<pubDate>Wed, 15 Apr 2009 12:36:05 +0000</pubDate>
		<guid isPermaLink="false">http://ubuntu-tutorials.com/?p=376#comment-8529</guid>
		<description>okay so my posts are probably starting to get annoying, but for anyone who is interested, my updated /bin/menu-cleaner is: 
 
#!/bin/bash 
########### 
# menu-cleaner.sh will consolidate your desktop environment menus, meaning 
# that your gnome applications will only show in gnome and your KDE 
# applications will only show in KDE.  This came from my biggest pet peeve 
# of seeing *all* of the applications in both desktop environments. 
# 
# BUGS: I have no idea, it&#039;s a really simple app.  Report them if you find them 
# at christer.edwards@ubuntu.com 
#  
# LICENSE: menu-cleaner.sh is released under the Public Domain. 
 
if [[ $EUID -ne 0 ]] 
then 
echo &quot;##############################################&quot; 
echo &quot;# You must be root / sudo to run this script #&quot; 
echo &quot;##############################################&quot; 
exit 1 
 
else 
 
echo 
echo &quot;Creating backup folder&quot; 
echo 
mkdir -p ~/.menu-backup/{gnome,kde} &amp;&gt;/dev/null 
cp /usr/share/applications/* ~/.menu-backup/gnome/ &amp;&gt;/dev/null 
cp /usr/share/applications/kde/* ~/.menu-backup/kde/ &amp;&gt;/dev/null 
if [[ $? -ne 0 ]] 
then 
echo &quot;backup failed, exiting menu-cleaner&quot; 
exit 1 
fi 
 
echo &quot;Updating gnome menu entries&quot; 
echo 
cd /usr/share/applications/ 
for i in *; do echo &quot;OnlyShowIn=GNOME&quot; &gt;&gt; $i; done &amp;&gt;/dev/null 
if [[ $? -ne 0 ]] 
then 
echo &quot;gnome menu cleaner failed, exiting.&quot; 
exit 1 
fi 
 
echo &quot;Updating KDE menu entries&quot; 
echo 
cd /usr/share/applications/kde/ 
for i in *; do echo &quot;OnlyShowIn=KDE&quot; &gt;&gt; $i; done &amp;&gt;/dev/null 
if [[ $? -ne 0 ]] 
then 
echo &quot;KDE menu cleaner failed, exiting&quot; 
exit 1 
fi 
 
echo &quot;Updating KDE4 menu entries&quot; 
echo 
cd /usr/share/applications/kde4/ 
for i in *; do echo &quot;OnlyShowIn=KDE&quot; &gt;&gt; $i; done &amp;&gt;/dev/null 
if [[ $? -ne 0 ]] 
then 
echo &quot;KDE4 menu cleaner failed, exiting&quot; 
exit 1 
fi 
 
echo &quot;Updating XFCE menu entries&quot; 
echo 
cd /usr/share/applications/ 
for i in exo-preferred-applications.desktop; do echo &quot;OnlyShowIn=XFCE&quot; &gt;&gt; $i; done &amp;&gt;/dev/null 
for i in fedora-mousepad.desktop; do echo &quot;OnlyShowIn=XFCE&quot; &gt;&gt; $i; done &amp;&gt;/dev/null 
for i in fedora-*hunar*; do echo &quot;OnlyShowIn=XFCE&quot; &gt;&gt; $i; done &amp;&gt;/dev/null 
for i in fedora-xarchiver.desktop; do echo &quot;OnlyShowIn=XFCE&quot; &gt;&gt; $i; done &amp;&gt;/dev/null 
for i in Terminal.desktop; do echo &quot;OnlyShowIn=XFCE&quot; &gt;&gt; $i; done &amp;&gt;/dev/null 
for i in xfce*; do echo &quot;OnlyShowIn=XFCE&quot; &gt;&gt; $i; done &amp;&gt;/dev/null 
if [[ $? -ne 0 ]] 
then 
echo &quot;XFCE menu cleaner failed, exiting&quot; 
exit 1 
fi 
 
echo &quot;menu-cleaner successful. Enjoy&quot; 
echo 
 
fi </description>
		<content:encoded><![CDATA[<p>okay so my posts are probably starting to get annoying, but for anyone who is interested, my updated /bin/menu-cleaner is: </p>
<p>#!/bin/bash<br />
###########<br />
# menu-cleaner.sh will consolidate your desktop environment menus, meaning<br />
# that your gnome applications will only show in gnome and your KDE<br />
# applications will only show in KDE.  This came from my biggest pet peeve<br />
# of seeing *all* of the applications in both desktop environments.<br />
#<br />
# BUGS: I have no idea, it&#039;s a really simple app.  Report them if you find them<br />
# at <a href="mailto:christer.edwards@ubuntu.com">christer.edwards@ubuntu.com</a><br />
#<br />
# LICENSE: menu-cleaner.sh is released under the Public Domain. </p>
<p>if [[ $EUID -ne 0 ]]<br />
then<br />
echo &quot;##############################################&quot;<br />
echo &quot;# You must be root / sudo to run this script #&quot;<br />
echo &quot;##############################################&quot;<br />
exit 1 </p>
<p>else </p>
<p>echo<br />
echo &quot;Creating backup folder&quot;<br />
echo<br />
mkdir -p ~/.menu-backup/{gnome,kde} &amp;&gt;/dev/null<br />
cp /usr/share/applications/* ~/.menu-backup/gnome/ &amp;&gt;/dev/null<br />
cp /usr/share/applications/kde/* ~/.menu-backup/kde/ &amp;&gt;/dev/null<br />
if [[ $? -ne 0 ]]<br />
then<br />
echo &quot;backup failed, exiting menu-cleaner&quot;<br />
exit 1<br />
fi </p>
<p>echo &quot;Updating gnome menu entries&quot;<br />
echo<br />
cd /usr/share/applications/<br />
for i in *; do echo &quot;OnlyShowIn=GNOME&quot; &gt;&gt; $i; done &amp;&gt;/dev/null<br />
if [[ $? -ne 0 ]]<br />
then<br />
echo &quot;gnome menu cleaner failed, exiting.&quot;<br />
exit 1<br />
fi </p>
<p>echo &quot;Updating KDE menu entries&quot;<br />
echo<br />
cd /usr/share/applications/kde/<br />
for i in *; do echo &quot;OnlyShowIn=KDE&quot; &gt;&gt; $i; done &amp;&gt;/dev/null<br />
if [[ $? -ne 0 ]]<br />
then<br />
echo &quot;KDE menu cleaner failed, exiting&quot;<br />
exit 1<br />
fi </p>
<p>echo &quot;Updating KDE4 menu entries&quot;<br />
echo<br />
cd /usr/share/applications/kde4/<br />
for i in *; do echo &quot;OnlyShowIn=KDE&quot; &gt;&gt; $i; done &amp;&gt;/dev/null<br />
if [[ $? -ne 0 ]]<br />
then<br />
echo &quot;KDE4 menu cleaner failed, exiting&quot;<br />
exit 1<br />
fi </p>
<p>echo &quot;Updating XFCE menu entries&quot;<br />
echo<br />
cd /usr/share/applications/<br />
for i in exo-preferred-applications.desktop; do echo &quot;OnlyShowIn=XFCE&quot; &gt;&gt; $i; done &amp;&gt;/dev/null<br />
for i in fedora-mousepad.desktop; do echo &quot;OnlyShowIn=XFCE&quot; &gt;&gt; $i; done &amp;&gt;/dev/null<br />
for i in fedora-*hunar*; do echo &quot;OnlyShowIn=XFCE&quot; &gt;&gt; $i; done &amp;&gt;/dev/null<br />
for i in fedora-xarchiver.desktop; do echo &quot;OnlyShowIn=XFCE&quot; &gt;&gt; $i; done &amp;&gt;/dev/null<br />
for i in Terminal.desktop; do echo &quot;OnlyShowIn=XFCE&quot; &gt;&gt; $i; done &amp;&gt;/dev/null<br />
for i in xfce*; do echo &quot;OnlyShowIn=XFCE&quot; &gt;&gt; $i; done &amp;&gt;/dev/null<br />
if [[ $? -ne 0 ]]<br />
then<br />
echo &quot;XFCE menu cleaner failed, exiting&quot;<br />
exit 1<br />
fi </p>
<p>echo &quot;menu-cleaner successful. Enjoy&quot;<br />
echo </p>
<p>fi</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: mrHappyPants</title>
		<link>http://ubuntu-tutorials.com/2007/07/18/removing-kde-icons-in-gnome-remove-gnome-icons-in-kde/comment-page-1/#comment-8528</link>
		<dc:creator>mrHappyPants</dc:creator>
		<pubDate>Wed, 15 Apr 2009 12:27:58 +0000</pubDate>
		<guid isPermaLink="false">http://ubuntu-tutorials.com/?p=376#comment-8528</guid>
		<description>also, i made a copy of the contents of /usr/share/applications/ before and after installing XFCE and compared the two files.  The extra applications were obviously installed by XFCE and thus would preferably only appear in XFCE, so thats a messy way of altering the script for those who are interested. The following is a list of my differences, may be different for you guys though 
 
exo-preferred-applications.desktop 
fedora-mousepad.desktop 
fedora-Thunar-bulk-rename.desktop 
fedora-Thunar.desktop 
fedora-Thunar-folder-handler.desktop 
fedora-thunar-volman-settings.desktop 
fedora-xarchiver.desktop 
Terminal.desktop 
xfce4-appfinder.desktop 
xfce4-autostart-editor.desktop 
xfce4-mixer.desktop 
xfce4-panel-manager.desktop 
xfce-backdrop-settings.desktop 
xfce-display-settings.desktop 
xfce-keyboard-settings.desktop 
xfce-menueditor.desktop 
xfce-mixer-settings.desktop 
xfce-mouse-settings.desktop 
xfce-session-settings.desktop 
xfce-settings-manager.desktop 
xfce-splash-settings.desktop 
xfce-ui-settings.desktop 
xfce-wm-settings.desktop 
xfce-wmtweaks-settings.desktop 
xfce-workspaces-settings.desktop </description>
		<content:encoded><![CDATA[<p>also, i made a copy of the contents of /usr/share/applications/ before and after installing XFCE and compared the two files.  The extra applications were obviously installed by XFCE and thus would preferably only appear in XFCE, so thats a messy way of altering the script for those who are interested. The following is a list of my differences, may be different for you guys though </p>
<p>exo-preferred-applications.desktop<br />
fedora-mousepad.desktop<br />
fedora-Thunar-bulk-rename.desktop<br />
fedora-Thunar.desktop<br />
fedora-Thunar-folder-handler.desktop<br />
fedora-thunar-volman-settings.desktop<br />
fedora-xarchiver.desktop<br />
Terminal.desktop<br />
xfce4-appfinder.desktop<br />
xfce4-autostart-editor.desktop<br />
xfce4-mixer.desktop<br />
xfce4-panel-manager.desktop<br />
xfce-backdrop-settings.desktop<br />
xfce-display-settings.desktop<br />
xfce-keyboard-settings.desktop<br />
xfce-menueditor.desktop<br />
xfce-mixer-settings.desktop<br />
xfce-mouse-settings.desktop<br />
xfce-session-settings.desktop<br />
xfce-settings-manager.desktop<br />
xfce-splash-settings.desktop<br />
xfce-ui-settings.desktop<br />
xfce-wm-settings.desktop<br />
xfce-wmtweaks-settings.desktop<br />
xfce-workspaces-settings.desktop</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: mrHappyPants</title>
		<link>http://ubuntu-tutorials.com/2007/07/18/removing-kde-icons-in-gnome-remove-gnome-icons-in-kde/comment-page-1/#comment-8527</link>
		<dc:creator>mrHappyPants</dc:creator>
		<pubDate>Wed, 15 Apr 2009 11:42:58 +0000</pubDate>
		<guid isPermaLink="false">http://ubuntu-tutorials.com/?p=376#comment-8527</guid>
		<description>or you can simply copy the block of code and chance the kde to kde4. ie change it to: 
 
#!/bin/bash 
########### 
# menu-cleaner.sh will consolidate your desktop environment menus, meaning 
# that your gnome applications will only show in gnome and your KDE 
# applications will only show in KDE.  This came from my biggest pet peeve 
# of seeing *all* of the applications in both desktop environments. 
# 
# BUGS: I have no idea, it&#039;s a really simple app.  Report them if you find them 
# at christer.edwards@ubuntu.com 
#  
# LICENSE: menu-cleaner.sh is released under the Public Domain. 
 
if [[ $EUID -ne 0 ]] 
then 
echo &quot;##############################################&quot; 
echo &quot;# You must be root / sudo to run this script #&quot; 
echo &quot;##############################################&quot; 
exit 1 
 
else 
 
echo 
echo &quot;Creating backup folder&quot; 
echo 
mkdir -p ~/.menu-backup/{gnome,kde} &amp;&gt;/dev/null 
cp /usr/share/applications/* ~/.menu-backup/gnome/ &amp;&gt;/dev/null 
cp /usr/share/applications/kde/* ~/.menu-backup/kde/ &amp;&gt;/dev/null 
if [[ $? -ne 0 ]] 
then 
echo &quot;backup failed, exiting menu-cleaner&quot; 
exit 1 
fi 
 
echo &quot;Updating gnome menu entries&quot; 
echo 
cd /usr/share/applications/ 
for i in *; do echo &quot;OnlyShowIn=GNOME&quot; &gt;&gt; $i; done &amp;&gt;/dev/null 
if [[ $? -ne 0 ]] 
then 
echo &quot;gnome menu cleaner failed, exiting.&quot; 
exit 1 
fi 
 
echo &quot;Updating KDE menu entries&quot; 
echo 
cd /usr/share/applications/kde/ 
for i in *; do echo &quot;OnlyShowIn=KDE&quot; &gt;&gt; $i; done &amp;&gt;/dev/null 
if [[ $? -ne 0 ]] 
then 
echo &quot;KDE menu cleaner failed, exiting&quot; 
exit 1 
fi 
 
echo &quot;Updating KDE4 menu entries&quot; 
echo 
cd /usr/share/applications/kde4/ 
for i in *; do echo &quot;OnlyShowIn=KDE&quot; &gt;&gt; $i; done &amp;&gt;/dev/null 
if [[ $? -ne 0 ]] 
then 
echo &quot;KDE4 menu cleaner failed, exiting&quot; 
exit 1 
fi 
 
echo &quot;menu-cleaner successful. Enjoy&quot; 
echo 
 
fi </description>
		<content:encoded><![CDATA[<p>or you can simply copy the block of code and chance the kde to kde4. ie change it to: </p>
<p>#!/bin/bash<br />
###########<br />
# menu-cleaner.sh will consolidate your desktop environment menus, meaning<br />
# that your gnome applications will only show in gnome and your KDE<br />
# applications will only show in KDE.  This came from my biggest pet peeve<br />
# of seeing *all* of the applications in both desktop environments.<br />
#<br />
# BUGS: I have no idea, it&#039;s a really simple app.  Report them if you find them<br />
# at <a href="mailto:christer.edwards@ubuntu.com">christer.edwards@ubuntu.com</a><br />
#<br />
# LICENSE: menu-cleaner.sh is released under the Public Domain. </p>
<p>if [[ $EUID -ne 0 ]]<br />
then<br />
echo &quot;##############################################&quot;<br />
echo &quot;# You must be root / sudo to run this script #&quot;<br />
echo &quot;##############################################&quot;<br />
exit 1 </p>
<p>else </p>
<p>echo<br />
echo &quot;Creating backup folder&quot;<br />
echo<br />
mkdir -p ~/.menu-backup/{gnome,kde} &amp;&gt;/dev/null<br />
cp /usr/share/applications/* ~/.menu-backup/gnome/ &amp;&gt;/dev/null<br />
cp /usr/share/applications/kde/* ~/.menu-backup/kde/ &amp;&gt;/dev/null<br />
if [[ $? -ne 0 ]]<br />
then<br />
echo &quot;backup failed, exiting menu-cleaner&quot;<br />
exit 1<br />
fi </p>
<p>echo &quot;Updating gnome menu entries&quot;<br />
echo<br />
cd /usr/share/applications/<br />
for i in *; do echo &quot;OnlyShowIn=GNOME&quot; &gt;&gt; $i; done &amp;&gt;/dev/null<br />
if [[ $? -ne 0 ]]<br />
then<br />
echo &quot;gnome menu cleaner failed, exiting.&quot;<br />
exit 1<br />
fi </p>
<p>echo &quot;Updating KDE menu entries&quot;<br />
echo<br />
cd /usr/share/applications/kde/<br />
for i in *; do echo &quot;OnlyShowIn=KDE&quot; &gt;&gt; $i; done &amp;&gt;/dev/null<br />
if [[ $? -ne 0 ]]<br />
then<br />
echo &quot;KDE menu cleaner failed, exiting&quot;<br />
exit 1<br />
fi </p>
<p>echo &quot;Updating KDE4 menu entries&quot;<br />
echo<br />
cd /usr/share/applications/kde4/<br />
for i in *; do echo &quot;OnlyShowIn=KDE&quot; &gt;&gt; $i; done &amp;&gt;/dev/null<br />
if [[ $? -ne 0 ]]<br />
then<br />
echo &quot;KDE4 menu cleaner failed, exiting&quot;<br />
exit 1<br />
fi </p>
<p>echo &quot;menu-cleaner successful. Enjoy&quot;<br />
echo </p>
<p>fi</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: oiad</title>
		<link>http://ubuntu-tutorials.com/2007/07/18/removing-kde-icons-in-gnome-remove-gnome-icons-in-kde/comment-page-1/#comment-7839</link>
		<dc:creator>oiad</dc:creator>
		<pubDate>Thu, 12 Feb 2009 00:32:46 +0000</pubDate>
		<guid isPermaLink="false">http://ubuntu-tutorials.com/?p=376#comment-7839</guid>
		<description>for intrepid you should download the above .sh file and then run it in the terminal once
./menu-cleaner.sh
then open it in a text editor and change both of the two 
/usr/share/applications/kde
lines to: 
/usr/share/applications/kde4

This way it will get all of the apps for you.</description>
		<content:encoded><![CDATA[<p>for intrepid you should download the above .sh file and then run it in the terminal once<br />
./menu-cleaner.sh<br />
then open it in a text editor and change both of the two<br />
/usr/share/applications/kde<br />
lines to:<br />
/usr/share/applications/kde4</p>
<p>This way it will get all of the apps for you.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Henry</title>
		<link>http://ubuntu-tutorials.com/2007/07/18/removing-kde-icons-in-gnome-remove-gnome-icons-in-kde/comment-page-1/#comment-7691</link>
		<dc:creator>Henry</dc:creator>
		<pubDate>Fri, 09 Jan 2009 18:31:13 +0000</pubDate>
		<guid isPermaLink="false">http://ubuntu-tutorials.com/?p=376#comment-7691</guid>
		<description>The first command is missing a virgule.

mkdir -p ~/.menu-backup{gnome,kde}

should be

mkdir -p ~/.menu-backup/{gnome,kde}</description>
		<content:encoded><![CDATA[<p>The first command is missing a virgule.</p>
<p>mkdir -p ~/.menu-backup{gnome,kde}</p>
<p>should be</p>
<p>mkdir -p ~/.menu-backup/{gnome,kde}</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Martin Espericueta</title>
		<link>http://ubuntu-tutorials.com/2007/07/18/removing-kde-icons-in-gnome-remove-gnome-icons-in-kde/comment-page-1/#comment-6773</link>
		<dc:creator>Martin Espericueta</dc:creator>
		<pubDate>Mon, 17 Nov 2008 01:38:43 +0000</pubDate>
		<guid isPermaLink="false">http://ubuntu-tutorials.com/?p=376#comment-6773</guid>
		<description>I&#039;m running 8.10 Intrepid Ibex. I have Ubuntu - and will be installing Kubuntu.

Do I have to modify the script in any way?

Thanks,

Martin</description>
		<content:encoded><![CDATA[<p>I&#8217;m running 8.10 Intrepid Ibex. I have Ubuntu &#8211; and will be installing Kubuntu.</p>
<p>Do I have to modify the script in any way?</p>
<p>Thanks,</p>
<p>Martin</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: eric gunstone</title>
		<link>http://ubuntu-tutorials.com/2007/07/18/removing-kde-icons-in-gnome-remove-gnome-icons-in-kde/comment-page-1/#comment-5868</link>
		<dc:creator>eric gunstone</dc:creator>
		<pubDate>Sat, 11 Oct 2008 04:37:18 +0000</pubDate>
		<guid isPermaLink="false">http://ubuntu-tutorials.com/?p=376#comment-5868</guid>
		<description>I ran just installed kubuntu-desktop in ubuntu 8.04 Gmone and didn&#039;t like all the mix of menu items, I ran menu-cleaner.sh and it seems to have cleaned up most of rhe Gnome menus but now i don&#039;t have hardly any icons in the KDE menu&#039;s... how do I restore them?</description>
		<content:encoded><![CDATA[<p>I ran just installed kubuntu-desktop in ubuntu 8.04 Gmone and didn&#8217;t like all the mix of menu items, I ran menu-cleaner.sh and it seems to have cleaned up most of rhe Gnome menus but now i don&#8217;t have hardly any icons in the KDE menu&#8217;s&#8230; how do I restore them?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: jersoncito</title>
		<link>http://ubuntu-tutorials.com/2007/07/18/removing-kde-icons-in-gnome-remove-gnome-icons-in-kde/comment-page-1/#comment-5621</link>
		<dc:creator>jersoncito</dc:creator>
		<pubDate>Sat, 02 Aug 2008 20:52:54 +0000</pubDate>
		<guid isPermaLink="false">http://ubuntu-tutorials.com/?p=376#comment-5621</guid>
		<description>The script that Daniel said

http://www.programming-designs.com/linux/menu-cleaner.sh

worked with KDE4 for me. but I had to change the script with a text editor (kde to kde4)

Thanks</description>
		<content:encoded><![CDATA[<p>The script that Daniel said</p>
<p><a href="http://www.programming-designs.com/linux/menu-cleaner.sh" rel="nofollow">http://www.programming-designs.com/linux/menu-cleaner.sh</a></p>
<p>worked with KDE4 for me. but I had to change the script with a text editor (kde to kde4)</p>
<p>Thanks</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: locazoreloco</title>
		<link>http://ubuntu-tutorials.com/2007/07/18/removing-kde-icons-in-gnome-remove-gnome-icons-in-kde/comment-page-1/#comment-5546</link>
		<dc:creator>locazoreloco</dc:creator>
		<pubDate>Sat, 26 Jul 2008 12:00:48 +0000</pubDate>
		<guid isPermaLink="false">http://ubuntu-tutorials.com/?p=376#comment-5546</guid>
		<description>THIS DOESN&#039;T WORK IN HARDY, HELP!!! I TRIED WITH THE ORIGINAL POST AND THE CHANGES THAT ZLATAN SUGGEST BUT NOTHING HAPPENED!</description>
		<content:encoded><![CDATA[<p>THIS DOESN&#8217;T WORK IN HARDY, HELP!!! I TRIED WITH THE ORIGINAL POST AND THE CHANGES THAT ZLATAN SUGGEST BUT NOTHING HAPPENED!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: michele</title>
		<link>http://ubuntu-tutorials.com/2007/07/18/removing-kde-icons-in-gnome-remove-gnome-icons-in-kde/comment-page-1/#comment-5322</link>
		<dc:creator>michele</dc:creator>
		<pubDate>Thu, 10 Jul 2008 14:48:15 +0000</pubDate>
		<guid isPermaLink="false">http://ubuntu-tutorials.com/?p=376#comment-5322</guid>
		<description>There is a way to go back? i loose my backup and i want the kde apps back on my gnome menu. It&#039;s possible?</description>
		<content:encoded><![CDATA[<p>There is a way to go back? i loose my backup and i want the kde apps back on my gnome menu. It&#8217;s possible?</p>
]]></content:encoded>
	</item>
</channel>
</rss>

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