<?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 Mounted Drives from the Gnome Desktop</title>
	<atom:link href="http://www.fettesps.com/removing-mounted-drives-from-the-desktop-2/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.fettesps.com/removing-mounted-drives-from-the-desktop-2/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=removing-mounted-drives-from-the-desktop-2</link>
	<description>Fettes Programming Solutions</description>
	<lastBuildDate>Sun, 05 Feb 2012 08:57:22 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
	<item>
		<title>By: FettesPS</title>
		<link>http://www.fettesps.com/removing-mounted-drives-from-the-desktop-2/comment-page-1/#comment-556</link>
		<dc:creator>FettesPS</dc:creator>
		<pubDate>Mon, 22 Jun 2009 16:22:50 +0000</pubDate>
		<guid isPermaLink="false">http://www.fettesps.com/?p=186#comment-556</guid>
		<description>Heh, I know the feeling.  I accidentally close my tabs all the time via hot keys.  One of the first things I do when I have a fresh install is remove half the hot keys.</description>
		<content:encoded><![CDATA[<p>Heh, I know the feeling.  I accidentally close my tabs all the time via hot keys.  One of the first things I do when I have a fresh install is remove half the hot keys.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Black Jack Shellac</title>
		<link>http://www.fettesps.com/removing-mounted-drives-from-the-desktop-2/comment-page-1/#comment-554</link>
		<dc:creator>Black Jack Shellac</dc:creator>
		<pubDate>Mon, 22 Jun 2009 14:25:56 +0000</pubDate>
		<guid isPermaLink="false">http://www.fettesps.com/?p=186#comment-554</guid>
		<description>I&#039;m just happy when the gnome developer gods condescend to us enough to add gconf editor options for these types of configuration options.  I&#039;ve been trying to get them to add an option to remove the idiotic close buttons on gnome-terminal tabs for several years now, but they just keep coming up with more and more elabourate &quot;fixes&quot; or excuses why it should or shouldn&#039;t be done.  Thank the open source gods though that I can apply a two line patch to the source every time there&#039;s an update, but this is obviously more than the vast majority of users can accomplish.</description>
		<content:encoded><![CDATA[<p>I&#8217;m just happy when the gnome developer gods condescend to us enough to add gconf editor options for these types of configuration options.  I&#8217;ve been trying to get them to add an option to remove the idiotic close buttons on gnome-terminal tabs for several years now, but they just keep coming up with more and more elabourate &#8220;fixes&#8221; or excuses why it should or shouldn&#8217;t be done.  Thank the open source gods though that I can apply a two line patch to the source every time there&#8217;s an update, but this is obviously more than the vast majority of users can accomplish.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: WayOfTheIronPaw</title>
		<link>http://www.fettesps.com/removing-mounted-drives-from-the-desktop-2/comment-page-1/#comment-256</link>
		<dc:creator>WayOfTheIronPaw</dc:creator>
		<pubDate>Sat, 06 Jun 2009 04:05:56 +0000</pubDate>
		<guid isPermaLink="false">http://www.fettesps.com/?p=186#comment-256</guid>
		<description>    #!/bin/bash
    # VALUE takes up the rest of the line, i.e. can contain spaces.
    while read TYPE KEY VALUE; do
      if [ &quot;$KEY&quot; != &quot;&quot; -a &quot;$TYPE&quot; != &quot;&quot; ]; then
        echo &quot;$KEY = &quot;$VALUE&quot; ($TYPE)&quot;
        if ! gconftool-2 --type $TYPE --set $KEY &quot;$VALUE&quot;; then
          exit 1
        fi
      fi
    done &lt;&lt; EOF

    bool    /apps/gnome-terminal/global/confirm_window_close                      false
    string  /apps/gnome-terminal/global/default_profile                           Default
    string  /apps/gnome-terminal/profiles/Default/background_color                #000000
    bool    /apps/gnome-terminal/profiles/Default/default_show_menubar            false
    string  /apps/gnome-terminal/profiles/Default/font                            Liberation Mono 9
    string  /apps/gnome-terminal/profiles/Default/foreground_color                #FFFFFF
    int     /apps/gnome-terminal/profiles/Default/scrollback_lines                10000
    bool    /apps/gnome-terminal/profiles/Default/scroll_on_keystroke             true
    bool    /apps/gnome-terminal/profiles/Default/scroll_on_output                false

    bool    /apps/nautilus/preferences/always_use_browser                         true
    string  /apps/nautilus/preferences/default_folder_viewer                      list_view
    bool    /apps/nautilus/sidebar_panels/tree/show_only_directories              true

    EOF

...and on and on the list goes...
</description>
		<content:encoded><![CDATA[<p>#!/bin/bash<br />
    # VALUE takes up the rest of the line, i.e. can contain spaces.<br />
    while read TYPE KEY VALUE; do<br />
      if [ "$KEY" != "" -a "$TYPE" != "" ]; then<br />
        echo &#8220;$KEY = &#8220;$VALUE&#8221; ($TYPE)&#8221;<br />
        if ! gconftool-2 &#8211;type $TYPE &#8211;set $KEY &#8220;$VALUE&#8221;; then<br />
          exit 1<br />
        fi<br />
      fi<br />
    done &lt;&lt; EOF</p>
<p>    bool    /apps/gnome-terminal/global/confirm_window_close                      false<br />
    string  /apps/gnome-terminal/global/default_profile                           Default<br />
    string  /apps/gnome-terminal/profiles/Default/background_color                #000000<br />
    bool    /apps/gnome-terminal/profiles/Default/default_show_menubar            false<br />
    string  /apps/gnome-terminal/profiles/Default/font                            Liberation Mono 9<br />
    string  /apps/gnome-terminal/profiles/Default/foreground_color                #FFFFFF<br />
    int     /apps/gnome-terminal/profiles/Default/scrollback_lines                10000<br />
    bool    /apps/gnome-terminal/profiles/Default/scroll_on_keystroke             true<br />
    bool    /apps/gnome-terminal/profiles/Default/scroll_on_output                false</p>
<p>    bool    /apps/nautilus/preferences/always_use_browser                         true<br />
    string  /apps/nautilus/preferences/default_folder_viewer                      list_view<br />
    bool    /apps/nautilus/sidebar_panels/tree/show_only_directories              true</p>
<p>    EOF</p>
<p>&#8230;and on and on the list goes&#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: snuxoll</title>
		<link>http://www.fettesps.com/removing-mounted-drives-from-the-desktop-2/comment-page-1/#comment-255</link>
		<dc:creator>snuxoll</dc:creator>
		<pubDate>Sat, 06 Jun 2009 03:13:57 +0000</pubDate>
		<guid isPermaLink="false">http://www.fettesps.com/?p=186#comment-255</guid>
		<description>I&#039;ll agree that some options should be exposed in preference dialogs instead of being hidden away in gconf, but most of them don&#039;t need to be exposed.</description>
		<content:encoded><![CDATA[<p>I&#8217;ll agree that some options should be exposed in preference dialogs instead of being hidden away in gconf, but most of them don&#8217;t need to be exposed.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: vegittoss15</title>
		<link>http://www.fettesps.com/removing-mounted-drives-from-the-desktop-2/comment-page-1/#comment-252</link>
		<dc:creator>vegittoss15</dc:creator>
		<pubDate>Sat, 06 Jun 2009 01:02:56 +0000</pubDate>
		<guid isPermaLink="false">http://www.fettesps.com/?p=186#comment-252</guid>
		<description>I&#039;ll agree 4.1 and 4.0 were utter utter garbage (still better than Gnome, but that&#039;s not the point here). Try out 4.2, you&#039;ll be pleasantly surprised. :)</description>
		<content:encoded><![CDATA[<p>I&#8217;ll agree 4.1 and 4.0 were utter utter garbage (still better than Gnome, but that&#8217;s not the point here). Try out 4.2, you&#8217;ll be pleasantly surprised. <img src='http://www.fettesps.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>By: pemboa</title>
		<link>http://www.fettesps.com/removing-mounted-drives-from-the-desktop-2/comment-page-1/#comment-251</link>
		<dc:creator>pemboa</dc:creator>
		<pubDate>Sat, 06 Jun 2009 00:39:59 +0000</pubDate>
		<guid isPermaLink="false">http://www.fettesps.com/?p=186#comment-251</guid>
		<description>KDE 4. what?</description>
		<content:encoded><![CDATA[<p>KDE 4. what?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: psilokan</title>
		<link>http://www.fettesps.com/removing-mounted-drives-from-the-desktop-2/comment-page-1/#comment-250</link>
		<dc:creator>psilokan</dc:creator>
		<pubDate>Sat, 06 Jun 2009 00:20:25 +0000</pubDate>
		<guid isPermaLink="false">http://www.fettesps.com/?p=186#comment-250</guid>
		<description>KDE 4 was what made me switch to Gnome. </description>
		<content:encoded><![CDATA[<p>KDE 4 was what made me switch to Gnome.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: mossblaser</title>
		<link>http://www.fettesps.com/removing-mounted-drives-from-the-desktop-2/comment-page-1/#comment-242</link>
		<dc:creator>mossblaser</dc:creator>
		<pubDate>Fri, 05 Jun 2009 19:42:01 +0000</pubDate>
		<guid isPermaLink="false">http://www.fettesps.com/?p=186#comment-242</guid>
		<description>Except their standards are very inconsistent. For instance you can change the wallpaper of your file browser -- seriously how many people do that compared to things like this (disabling having drives being spammed to the desktop).</description>
		<content:encoded><![CDATA[<p>Except their standards are very inconsistent. For instance you can change the wallpaper of your file browser &#8212; seriously how many people do that compared to things like this (disabling having drives being spammed to the desktop).</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: mossblaser</title>
		<link>http://www.fettesps.com/removing-mounted-drives-from-the-desktop-2/comment-page-1/#comment-241</link>
		<dc:creator>mossblaser</dc:creator>
		<pubDate>Fri, 05 Jun 2009 19:40:50 +0000</pubDate>
		<guid isPermaLink="false">http://www.fettesps.com/?p=186#comment-241</guid>
		<description>This is one of those things about gnome that really bugs me. It has a UI to add wallpapers to file browsers but doesn&#039;t have one for something as basic as this. Their idea of simplifying things is really inconsistent.

Disclaimer: not to say gnome sucks, I like it quite a lot but it seems that its a problem that is easily fixed but they refuse to do it.</description>
		<content:encoded><![CDATA[<p>This is one of those things about gnome that really bugs me. It has a UI to add wallpapers to file browsers but doesn&#8217;t have one for something as basic as this. Their idea of simplifying things is really inconsistent.</p>
<p>Disclaimer: not to say gnome sucks, I like it quite a lot but it seems that its a problem that is easily fixed but they refuse to do it.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: snuxoll</title>
		<link>http://www.fettesps.com/removing-mounted-drives-from-the-desktop-2/comment-page-1/#comment-240</link>
		<dc:creator>snuxoll</dc:creator>
		<pubDate>Fri, 05 Jun 2009 19:19:23 +0000</pubDate>
		<guid isPermaLink="false">http://www.fettesps.com/?p=186#comment-240</guid>
		<description>Most of those &#039;useful&#039; preferences are ones users don&#039;t care about 95% of the time, we have gconf-editor for the other 5%.</description>
		<content:encoded><![CDATA[<p>Most of those &#8216;useful&#8217; preferences are ones users don&#8217;t care about 95% of the time, we have gconf-editor for the other 5%.</p>
]]></content:encoded>
	</item>
</channel>
</rss>

