<?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>Pontus Östlund &#187; Ubuntu</title>
	<atom:link href="http://www.poppa.se/blog/tag/ubuntu/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.poppa.se/blog</link>
	<description>My blog about web development and such</description>
	<lastBuildDate>Mon, 16 Jan 2012 00:38:45 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.4</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Roxen Application Launcher 1.1</title>
		<link>http://www.poppa.se/blog/roxen-application-launcher-1-1/</link>
		<comments>http://www.poppa.se/blog/roxen-application-launcher-1-1/#comments</comments>
		<pubDate>Tue, 08 Nov 2011 22:28:34 +0000</pubDate>
		<dc:creator>Pontus</dc:creator>
				<category><![CDATA[Applications]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Roxen]]></category>
		<category><![CDATA[GTK]]></category>
		<category><![CDATA[GTK3]]></category>
		<category><![CDATA[RAL]]></category>
		<category><![CDATA[Ubuntu]]></category>
		<category><![CDATA[Vala]]></category>

		<guid isPermaLink="false">http://www.poppa.se/blog/?p=519</guid>
		<description><![CDATA[
There&#8217;s a new release of Roxen Application Launcher (come again?) for Linux. 
I have updated the application launcher to use GTK3 so that it builds on Ubuntu 11.10 and any other Linux distribution using GTK3. This also made it possible to drop the dependency for libunique since Gtk.Application can handle single instance applications.
I also fixed [...]]]></description>
			<content:encoded><![CDATA[<p><a href="/blog/data/images/ral-1.1.png" class="no-file"><img src="/blog/data/images/ral-1.1.png/680" alt="Screenshot of Roxen Application Launcher" /></a></p>
<p>There&#8217;s a new release of <a href="http://www.roxen.com">Roxen</a> Application Launcher (<a href="/blog/stuff/#roxen-applauncher">come again?</a>) for <a href="http://www.linux.com/">Linux</a>. </p>
<p>I have updated the application launcher to use <code>GTK3</code> so that it builds on Ubuntu 11.10 and any other Linux distribution using <code>GTK3</code>. This also made it possible to drop the dependency for <code>libunique</code> since <code>Gtk.Application</code> can handle single instance applications.</p>
<p>I also fixed a bug which made it impossible to use the appliction launcher on sites not running on port <code>80</code> or <code>443</code>.</p>
<p>So there&#8217;s no new features in this release.</p>
<p><a class="download" title="Download from Github" href="https://github.com/downloads/poppa/Roxen-Application-Launcher/roxenlauncher-1.1.tar.bz2"><span>Roxen Application Launcher 1.1</span></a></p>
<p>Sources is available at the Roxen Application Launcher <a href="https://github.com/poppa/Roxen-Application-Launcher">Github repository</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.poppa.se/blog/roxen-application-launcher-1-1/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Notification area icons in Ubuntu 11.04</title>
		<link>http://www.poppa.se/blog/notification-area-icons-in-ubuntu-11-04/</link>
		<comments>http://www.poppa.se/blog/notification-area-icons-in-ubuntu-11-04/#comments</comments>
		<pubDate>Tue, 03 May 2011 21:46:19 +0000</pubDate>
		<dc:creator>Pontus</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Bash]]></category>
		<category><![CDATA[gsettings]]></category>
		<category><![CDATA[GTK]]></category>
		<category><![CDATA[Share]]></category>
		<category><![CDATA[Ubuntu]]></category>

		<guid isPermaLink="false">http://www.poppa.se/blog/?p=486</guid>
		<description><![CDATA[If you&#8217;r an Ubuntu user and have upgraded to 11.04 and use the new desktop environment Unity, you might have noticed that some applications that implement the GTK status icon doesn&#8217;t show up in the notification area &#8211; or tray or systray as it also may be called.
The reason for this is that Ubuntu now [...]]]></description>
			<content:encoded><![CDATA[<p>If you&#8217;r an Ubuntu user and have upgraded to 11.04 and use the new desktop environment Unity, you might have noticed that some applications that implement the GTK status icon doesn&#8217;t show up in the notification area &#8211; or tray or systray as it also may be called.</p>
<p>The reason for this is that Ubuntu now utilise a &#8220;whitelist&#8221; for which applications can be displayed in the notification area. You can (maybe not that) easily add any application to the whitelist by invoking the command <code>gsettings</code> in the following way:</p>
<pre><code lang="shell">
gsettings set com.canonical.Unity.Panel systray-whitelist ['app-1', 'app-2', 'app-3']
</code></pre>
<p>Now, this can be quite a difficult command to remember and since you will need to first grab the whitelist, alter it, and then put it back. Since I&#8217;m lame at Bash I thought it would be a nice misson to create a Bash script that makes this interference simpler, just to pick up some more Bash knowledge. So I did!</p>
<p>The script can be used like this:</p>
<pre><code lang="shell">
# Add MyApplication to whitelist
systray-whitelist add MyApplication

# Remove MyApplication from whitelist
systray-whitelist remove MyApplication

# Show applications in whitelist
systray-whitelist show
</code></pre>
<p>And that&#8217;s that.</p>
<p><a href="/blog/data/scripts/systray-whitelist" class="download">Download systray-whitelist</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.poppa.se/blog/notification-area-icons-in-ubuntu-11-04/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Back from vacation</title>
		<link>http://www.poppa.se/blog/back-from-vacation/</link>
		<comments>http://www.poppa.se/blog/back-from-vacation/#comments</comments>
		<pubDate>Tue, 09 Sep 2008 20:02:47 +0000</pubDate>
		<dc:creator>Pontus</dc:creator>
				<category><![CDATA[Misc]]></category>
		<category><![CDATA[Roxen]]></category>
		<category><![CDATA[Ubuntu]]></category>

		<guid isPermaLink="false">http://www.poppa.se/blog/?p=182</guid>
		<description><![CDATA[So after five weeks of vacation I&#8217;m back at work. The most sensational thing must be that I didn&#8217;t write a single line of code in these five weeks! It was a much needed break from computers and the longest one I&#8217;ve had for the nine years or so I&#8217;ve been programming. The vacation it [...]]]></description>
			<content:encoded><![CDATA[<p>So after five weeks of vacation I&#8217;m back at work. The most sensational thing must be that I didn&#8217;t write a single line of code in these five weeks! It was a much needed break from computers and the longest one I&#8217;ve had for the nine years or so I&#8217;ve been programming. The vacation it self isn&#8217;t much to talk about. I visited friends and family and spent a lot of time in the sofa watching the olympics &#8211; and playing some Play Station 3 as well <img src='http://www.poppa.se/blog/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </p>
<p>I also just bought an Asus EEE which I think is quite cool. I&#8217;m actually writing this blog post on it. I threw out the <a href='http://www.xandros.com/'>Xandros</a> operating system and installed <a href='http://www.ubuntu-eee.com'>Ubuntu EEE</a> instead which feels a great deal better. I&#8217;ve installed a lot of developer tools and they actually run rather smoothly.</p>
<p><strong>Screen shot Ubuntu EEE</strong><br />
<a href="/blog/data/images/ubuntu-eee.png"><img src="/blog/data/images/ubuntu-eee.png/680" alt="Screenshot Ubuntu EEE" /></a></p>
<h2>Roxen user conference</h2>
<p>Next week, Thursday and Friday, I will attend the <a href='http://www.roxen.com/company/events/user-conference-2008/'>Roxen user conference</a> which I&#8217;m really looking forward to. I&#8217;ll give a report from there when it happens.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.poppa.se/blog/back-from-vacation/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>My first GIMP job, Gnomealicious!</title>
		<link>http://www.poppa.se/blog/my-first-gimp-job-gnomealicious/</link>
		<comments>http://www.poppa.se/blog/my-first-gimp-job-gnomealicious/#comments</comments>
		<pubDate>Mon, 25 Feb 2008 19:37:16 +0000</pubDate>
		<dc:creator>Pontus</dc:creator>
				<category><![CDATA[Misc]]></category>
		<category><![CDATA[GIMP]]></category>
		<category><![CDATA[Photoshop]]></category>
		<category><![CDATA[Ubuntu]]></category>

		<guid isPermaLink="false">http://www.poppa.se/blog/?p=149</guid>
		<description><![CDATA[Although I&#8217;ve been using Linux for eight years I have never really used GIMP since I&#8217;m brought up with Photoshop. But lately I&#8217;ve started using it to make a few layout elements for various web projects and although It&#8217;s quite frustrating when you all the time hit Photoshop shortcuts and end up with the wrong [...]]]></description>
			<content:encoded><![CDATA[<p>Although I&#8217;ve been using Linux for eight years I have never really used <a href='http://gimp.org/'>GIMP</a> since I&#8217;m brought up with Photoshop. But lately I&#8217;ve started using it to make a few layout elements for various web projects and although It&#8217;s quite frustrating when you all the time hit Photoshop shortcuts and end up with the wrong tools and what not, GIMP really isn&#8217;t that awful when you start to get grip of it.</p>
<p>Anyway, I did a re-install of <a href='http://www.ubuntu.com'>Ubuntu</a> the other day and found a theme for <a href='http://www.gnome.org'>Gnome</a> that I really liked but I had no desktop wallpaper that fitted so I though I&#8217;d better make my own. And so I did!</p>
<p><strong>Screenshot</strong><br />
<a href="/blog/data/images/glicious1.jpg"><img src='/blog/data/images/glicious1.jpg/680' title="View full size" alt='Gnome Compiz-Fusion screen shot' /></a></p>
<p><strong>The wallpaper, 1680&#215;1050</strong><br />
<a href="/blog/data/images/gnomealicious.jpg"><img src='/blog/data/images/gnomealicious.jpg/680'  alt='Gnomealicious desktop wallpaper' title='View full size' /></a></p>
<p>So I&#8217;m about to become better friends with GIMP!</p>
<p>Peace out!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.poppa.se/blog/my-first-gimp-job-gnomealicious/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

