<?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>hocuspokus &#187; gnome</title>
	<atom:link href="http://hocuspokus.net/tag/gnome/feed" rel="self" type="application/rss+xml" />
	<link>http://hocuspokus.net</link>
	<description>the life and times of a code monkey</description>
	<lastBuildDate>Fri, 12 Mar 2010 15:57:13 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>QGtkStyle Now Part of&#160;Qt</title>
		<link>http://hocuspokus.net/feeder/?FeederAction=clicked&amp;feed=Articles+%28RSS2%29&amp;seed=http%3A%2F%2Fhocuspokus.net%2F2008%2F09%2Fqgtkstyle-now-part-of-qt&amp;seed_title=QGtkStyle+Now+Part+of%26%23160%3BQt</link>
		<comments>http://hocuspokus.net/feeder/?FeederAction=clicked&amp;feed=Articles+%28RSS2%29&amp;seed=http%3A%2F%2Fhocuspokus.net%2F2008%2F09%2Fqgtkstyle-now-part-of-qt&amp;seed_title=QGtkStyle+Now+Part+of%26%23160%3BQt#comments</comments>
		<pubDate>Wed, 10 Sep 2008 08:26:10 +0000</pubDate>
		<dc:creator>Daz</dc:creator>
				<category><![CDATA[linux]]></category>
		<category><![CDATA[snippets]]></category>
		<category><![CDATA[gnome]]></category>
		<category><![CDATA[kde]]></category>
		<category><![CDATA[qt]]></category>

		<guid isPermaLink="false">http://hocuspokus.net/?p=164</guid>
		<description><![CDATA[Looks like KDE apps just got a whole lot more appealing to Gnome users.  I like a lot of KDE apps (Kate being a particularly cool editor when I&#8217;m on the Linux box), but I just never used to use them much as they looked too out of place with the rest of my [...]]]></description>
			<content:encoded><![CDATA[<p>Looks like KDE apps just got a whole lot more appealing to Gnome users.  I like a lot of KDE apps (Kate being a particularly cool editor when I&#8217;m on the Linux box), but I just never used to use them much as they looked too out of place with the rest of my Gnome desktop (yeah, I guess I&#8217;m a GUI snob&#8230;) - this will most likely change that!</p>

<blockquote>
  <p>QGtkStyle made itâ€™s way into the Qt snapshots this week, meaning it will become part of the Qt 4.5 release. Technical users can already compile and use it on their own desktop, but once Qt 4.5 is out it will simply replace Cleanlooks as the default application style Qt uses on GNOME desktops.</p>
</blockquote>

<p><a href="http://labs.trolltech.com/blogs/2008/09/05/qgtkstyle-now-part-of-qt/" class="via">via</a></p>
<a href="http://hocuspokus.net/feeder/?FeederAction=clicked&amp;feed=Articles+%28RSS2%29&amp;seed=http%3A%2F%2Fhocuspokus.net%2F2008%2F09%2Fqgtkstyle-now-part-of-qt&amp;seed_title=QGtkStyle+Now+Part+of%26%23160%3BQt" rel="bookmark" class="asides-permalink" title="Permanent Link to QGtkStyle Now Part of&nbsp;Qt">(0)</a>]]></content:encoded>
			<wfw:commentRss>http://hocuspokus.net/feeder/?FeederAction=clicked&amp;feed=Articles+%28RSS2%29&amp;seed=http%3A%2F%2Fhocuspokus.net%2F2008%2F09%2Fqgtkstyle-now-part-of-qt&amp;seed_title=QGtkStyle+Now+Part+of%26%23160%3BQt/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Mount ISO Files With&#160;Nautilus</title>
		<link>http://hocuspokus.net/feeder/?FeederAction=clicked&amp;feed=Articles+%28RSS2%29&amp;seed=http%3A%2F%2Fhocuspokus.net%2F2007%2F11%2Fmount-iso-files-with-nautilus&amp;seed_title=Mount+ISO+Files+With%26%23160%3BNautilus</link>
		<comments>http://hocuspokus.net/feeder/?FeederAction=clicked&amp;feed=Articles+%28RSS2%29&amp;seed=http%3A%2F%2Fhocuspokus.net%2F2007%2F11%2Fmount-iso-files-with-nautilus&amp;seed_title=Mount+ISO+Files+With%26%23160%3BNautilus#comments</comments>
		<pubDate>Wed, 14 Nov 2007 20:14:13 +0000</pubDate>
		<dc:creator>Daz</dc:creator>
				<category><![CDATA[linux]]></category>
		<category><![CDATA[geek]]></category>
		<category><![CDATA[gnome]]></category>
		<category><![CDATA[ubuntu]]></category>

		<guid isPermaLink="false">http://hocuspokus.net/2007/11/14/mount-iso-files-with-nautilus/</guid>
		<description><![CDATA[Here&#8217;s two short bash scripts that allow you to mount and unmount an ISO image easily within the right-click menu in Nautilus (the file manager in Gnome):

$ sudo mkdir /media/ISO
$ cd ~/.gnome2/nautilus-scripts/
$ gedit "Mount ISO Image"


Now paste this code into the file:


1
2
3
4
5
6
7
8
9
#!/bin/bash
#
for I in `echo $*`
do
foo=`gksudo -u root -k -m &#34;enter your password for root [...]]]></description>
			<content:encoded><![CDATA[<p>Here&#8217;s two short bash scripts that allow you to mount and unmount an ISO image easily within the right-click menu in Nautilus (the file manager in Gnome):</p>

<pre><code>$ sudo mkdir /media/ISO
$ cd ~/.gnome2/nautilus-scripts/
$ gedit "Mount ISO Image"
</code></pre>

<p>Now paste this code into the file:</p>


<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
2
3
4
5
6
7
8
9
</pre></td><td class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #666666; font-style: italic;">#!/bin/bash</span>
<span style="color: #666666; font-style: italic;">#</span>
<span style="color: #000000; font-weight: bold;">for</span> I <span style="color: #000000; font-weight: bold;">in</span> <span style="color: #000000; font-weight: bold;">`</span><span style="color: #7a0874; font-weight: bold;">echo</span> <span style="color: #007800;">$*</span><span style="color: #000000; font-weight: bold;">`</span>
<span style="color: #000000; font-weight: bold;">do</span>
<span style="color: #007800;">foo</span>=<span style="color: #000000; font-weight: bold;">`</span>gksudo <span style="color: #660033;">-u</span> root <span style="color: #660033;">-k</span> <span style="color: #660033;">-m</span> <span style="color: #ff0000;">&quot;enter your password for root terminal access&quot;</span> <span style="color: #000000; font-weight: bold;">/</span>bin<span style="color: #000000; font-weight: bold;">/</span><span style="color: #7a0874; font-weight: bold;">echo</span> <span style="color: #ff0000;">&quot;got r00t?&quot;</span><span style="color: #000000; font-weight: bold;">`</span>
<span style="color: #c20cb9; font-weight: bold;">sudo</span> <span style="color: #c20cb9; font-weight: bold;">mount</span> <span style="color: #660033;">-o</span> loop <span style="color: #660033;">-t</span> iso9660 <span style="color: #007800;">$I</span> <span style="color: #000000; font-weight: bold;">/</span>media<span style="color: #000000; font-weight: bold;">/</span>ISO
<span style="color: #000000; font-weight: bold;">done</span>
<span style="color: #000000; font-weight: bold;">done</span>
exit0</pre></td></tr></table></div>


<p>Save, and exit gedit.</p>

<pre><code>$ gedit "Unmount ISO Image"
</code></pre>

<p>Then paste this code in this file:</p>


<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
2
3
4
5
6
7
8
9
</pre></td><td class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #666666; font-style: italic;">#!/bin/bash</span>
<span style="color: #666666; font-style: italic;">#</span>
<span style="color: #000000; font-weight: bold;">for</span> I <span style="color: #000000; font-weight: bold;">in</span> <span style="color: #000000; font-weight: bold;">`</span><span style="color: #7a0874; font-weight: bold;">echo</span> <span style="color: #007800;">$*</span><span style="color: #000000; font-weight: bold;">`</span>
<span style="color: #000000; font-weight: bold;">do</span>
<span style="color: #007800;">foo</span>=<span style="color: #000000; font-weight: bold;">`</span>gksudo <span style="color: #660033;">-u</span> root <span style="color: #660033;">-k</span> <span style="color: #660033;">-m</span> <span style="color: #ff0000;">&quot;enter your password for root terminal access&quot;</span> <span style="color: #000000; font-weight: bold;">/</span>bin<span style="color: #000000; font-weight: bold;">/</span><span style="color: #7a0874; font-weight: bold;">echo</span> <span style="color: #ff0000;">&quot;got r00t?&quot;</span><span style="color: #000000; font-weight: bold;">`</span>
<span style="color: #c20cb9; font-weight: bold;">sudo</span> <span style="color: #c20cb9; font-weight: bold;">umount</span> <span style="color: #007800;">$I</span>
<span style="color: #000000; font-weight: bold;">done</span>
<span style="color: #000000; font-weight: bold;">done</span>
exit0</pre></td></tr></table></div>


<p>Save, and exit gedit. Now finally&#8230;</p>

<pre><code>$ chmod a+x *
</code></pre>

<p>Now you can mount and unmount ISO files by using the &#8216;Scripts&#8217; options in the right-click menu. <img src='http://hocuspokus.net/wp-content/plugins/smilies-themer/tango/face-smile.png' alt=':)' class='wp-smiley' /> </p>

<p>Thanks to the <a href="http://ubuntu.wordpress.com/2005/10/24/nautilus-script-to-mount-iso-files/">Ubuntu Blog</a> for the information.</p>
]]></content:encoded>
			<wfw:commentRss>http://hocuspokus.net/feeder/?FeederAction=clicked&amp;feed=Articles+%28RSS2%29&amp;seed=http%3A%2F%2Fhocuspokus.net%2F2007%2F11%2Fmount-iso-files-with-nautilus&amp;seed_title=Mount+ISO+Files+With%26%23160%3BNautilus/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>
<!-- WP Super Cache is installed but broken. The path to wp-cache-phase1.php in wp-content/advanced-cache.php must be fixed! -->