<?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: Show/Hide Desktop Icon On Ubuntu</title>
	<atom:link href="http://bayu.freelancer.web.id/2009/05/03/showhide-desktop-icon-on-ubuntu/feed/" rel="self" type="application/rss+xml" />
	<link>http://bayu.freelancer.web.id/2009/05/03/showhide-desktop-icon-on-ubuntu/</link>
	<description>Learning Programming The Freelancer&#039;s Way</description>
	<lastBuildDate>Tue, 09 Mar 2010 14:40:25 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=abc</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: kai</title>
		<link>http://bayu.freelancer.web.id/2009/05/03/showhide-desktop-icon-on-ubuntu/comment-page-1/#comment-57036</link>
		<dc:creator>kai</dc:creator>
		<pubDate>Sat, 09 Jan 2010 10:38:57 +0000</pubDate>
		<guid isPermaLink="false">http://bayu.freelancer.web.id/?p=618#comment-57036</guid>
		<description>Hi! Thanks for working this out, it work great for me. I following Lucas&#039; suggestion to restart nautilus (both setting show_desktop true and false kills my nautilus process - this on a Debian Lenny system btw.), I use &quot;nohup nautilus -n &gt; /dev/null&quot; because I don&#039;t want to open a new nautilus window.

hemanth, I think restarting nautilus is also what you need to do to enable right click actions again.</description>
		<content:encoded><![CDATA[<p>Hi! Thanks for working this out, it work great for me. I following Lucas&#8217; suggestion to restart nautilus (both setting show_desktop true and false kills my nautilus process &#8211; this on a Debian Lenny system btw.), I use &#8220;nohup nautilus -n &gt; /dev/null&#8221; because I don&#8217;t want to open a new nautilus window.</p>
<p>hemanth, I think restarting nautilus is also what you need to do to enable right click actions again.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: hemanth.hm</title>
		<link>http://bayu.freelancer.web.id/2009/05/03/showhide-desktop-icon-on-ubuntu/comment-page-1/#comment-56955</link>
		<dc:creator>hemanth.hm</dc:creator>
		<pubDate>Wed, 30 Sep 2009 07:21:51 +0000</pubDate>
		<guid isPermaLink="false">http://bayu.freelancer.web.id/?p=618#comment-56955</guid>
		<description>Hiding desktop disables right click action on desktop anyone tried a fix on this?</description>
		<content:encoded><![CDATA[<p>Hiding desktop disables right click action on desktop anyone tried a fix on this?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Arief Bayu Purwanto</title>
		<link>http://bayu.freelancer.web.id/2009/05/03/showhide-desktop-icon-on-ubuntu/comment-page-1/#comment-56943</link>
		<dc:creator>Arief Bayu Purwanto</dc:creator>
		<pubDate>Tue, 15 Sep 2009 22:44:41 +0000</pubDate>
		<guid isPermaLink="false">http://bayu.freelancer.web.id/?p=618#comment-56943</guid>
		<description>&lt;blockquote&gt;I have to restart nautilus in order to get my desktop icons back. I’m not sure why this is.&lt;/blockquote&gt;
Yeah, this happened sometimes. I don&#039;t know why. Sometime it switch icon fast, sometime, I need to wait for a couple of minutes just to get the desktop icons back.</description>
		<content:encoded><![CDATA[<blockquote><p>I have to restart nautilus in order to get my desktop icons back. I’m not sure why this is.</p></blockquote>
<p>Yeah, this happened sometimes. I don&#8217;t know why. Sometime it switch icon fast, sometime, I need to wait for a couple of minutes just to get the desktop icons back.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Lucas</title>
		<link>http://bayu.freelancer.web.id/2009/05/03/showhide-desktop-icon-on-ubuntu/comment-page-1/#comment-56942</link>
		<dc:creator>Lucas</dc:creator>
		<pubDate>Tue, 15 Sep 2009 15:25:55 +0000</pubDate>
		<guid isPermaLink="false">http://bayu.freelancer.web.id/?p=618#comment-56942</guid>
		<description>Hi,
Great Tip! I&#039;ve added a couple more lines to do away with all the top and bottom panels. Setting the size to 0 is only necessary once, and then should be commented out.  I have to restart nautilus in order to get my desktop icons back. I&#039;m not sure why this is.

-Lucas
#!/bin/bash
 
current_status=`gconftool-2 --get /apps/nautilus/preferences/show_desktop`
echo &quot;Current Status: &quot; $current_status;
 
if $current_status; then
echo &quot;Disabling desktop icon...&quot;;
gconftool-2 --type boolean --set /apps/nautilus/preferences/show_desktop false;
gconftool-2 --type boolean --set /apps/panel/toplevels/bottom_panel_screen0/auto_hide true;
gconftool-2 --type boolean --set /apps/panel/toplevels/top_panel_screen0/auto_hide true;
gconftool-2 --type integer --set /apps/panel/toplevels/bottom_panel_screen0/auto_hide_size 0;
gconftool-2 --type integer --set /apps/panel/toplevels/top_panel_screen0/auto_hide_size 0;
else
echo &quot;Activating desktop icon...&quot;;
gconftool-2 --type boolean --set /apps/nautilus/preferences/show_desktop true;
gconftool-2 --type boolean --set /apps/panel/toplevels/bottom_panel_screen0/auto_hide false;
gconftool-2 --type boolean --set /apps/panel/toplevels/top_panel_screen0/auto_hide false;
nohup nautilus &amp;
fi;</description>
		<content:encoded><![CDATA[<p>Hi,<br />
Great Tip! I&#8217;ve added a couple more lines to do away with all the top and bottom panels. Setting the size to 0 is only necessary once, and then should be commented out.  I have to restart nautilus in order to get my desktop icons back. I&#8217;m not sure why this is.</p>
<p>-Lucas<br />
#!/bin/bash</p>
<p>current_status=`gconftool-2 &#8211;get /apps/nautilus/preferences/show_desktop`<br />
echo &#8220;Current Status: &#8221; $current_status;</p>
<p>if $current_status; then<br />
echo &#8220;Disabling desktop icon&#8230;&#8221;;<br />
gconftool-2 &#8211;type boolean &#8211;set /apps/nautilus/preferences/show_desktop false;<br />
gconftool-2 &#8211;type boolean &#8211;set /apps/panel/toplevels/bottom_panel_screen0/auto_hide true;<br />
gconftool-2 &#8211;type boolean &#8211;set /apps/panel/toplevels/top_panel_screen0/auto_hide true;<br />
gconftool-2 &#8211;type integer &#8211;set /apps/panel/toplevels/bottom_panel_screen0/auto_hide_size 0;<br />
gconftool-2 &#8211;type integer &#8211;set /apps/panel/toplevels/top_panel_screen0/auto_hide_size 0;<br />
else<br />
echo &#8220;Activating desktop icon&#8230;&#8221;;<br />
gconftool-2 &#8211;type boolean &#8211;set /apps/nautilus/preferences/show_desktop true;<br />
gconftool-2 &#8211;type boolean &#8211;set /apps/panel/toplevels/bottom_panel_screen0/auto_hide false;<br />
gconftool-2 &#8211;type boolean &#8211;set /apps/panel/toplevels/top_panel_screen0/auto_hide false;<br />
nohup nautilus &#038;<br />
fi;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Arief Bayu Purwanto</title>
		<link>http://bayu.freelancer.web.id/2009/05/03/showhide-desktop-icon-on-ubuntu/comment-page-1/#comment-56907</link>
		<dc:creator>Arief Bayu Purwanto</dc:creator>
		<pubDate>Sun, 16 Aug 2009 02:58:27 +0000</pubDate>
		<guid isPermaLink="false">http://bayu.freelancer.web.id/?p=618#comment-56907</guid>
		<description>Your welcome</description>
		<content:encoded><![CDATA[<p>Your welcome</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Ebiwari</title>
		<link>http://bayu.freelancer.web.id/2009/05/03/showhide-desktop-icon-on-ubuntu/comment-page-1/#comment-56906</link>
		<dc:creator>Ebiwari</dc:creator>
		<pubDate>Sat, 15 Aug 2009 13:27:50 +0000</pubDate>
		<guid isPermaLink="false">http://bayu.freelancer.web.id/?p=618#comment-56906</guid>
		<description>Tanks alot.I never Ubuntu could do this</description>
		<content:encoded><![CDATA[<p>Tanks alot.I never Ubuntu could do this</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jauhari</title>
		<link>http://bayu.freelancer.web.id/2009/05/03/showhide-desktop-icon-on-ubuntu/comment-page-1/#comment-56770</link>
		<dc:creator>Jauhari</dc:creator>
		<pubDate>Thu, 14 May 2009 02:21:42 +0000</pubDate>
		<guid isPermaLink="false">http://bayu.freelancer.web.id/?p=618#comment-56770</guid>
		<description>Lama ndak make Ubuntu... oh indahnya....
&lt;blockquote id=&quot;author-reply&quot;&gt;&lt;div&gt;&lt;span class=&quot;author-reply-title&quot;&gt;silent&lt;/span&gt;:&lt;/div&gt;&lt;p&gt;Ah, si om satu ini. Desktop jerawatan gitu kok dibilang indah ;))&lt;/p&gt;&lt;/blockquote&gt;</description>
		<content:encoded><![CDATA[<p>Lama ndak make Ubuntu&#8230; oh indahnya&#8230;.</p>
<blockquote id="author-reply"><div><span class="author-reply-title">silent</span>:</div>
<p>Ah, si om satu ini. Desktop jerawatan gitu kok dibilang indah <img src='http://bayu.freelancer.web.id/smilies/yahoo_giggle.gif' alt='&#59;&#41;&#41;' class='wp-smiley' width='18' height='18' title='&#59;&#41;&#41;' /></p>
</blockquote>
]]></content:encoded>
	</item>
</channel>
</rss>
