<?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>Ole Bakstad&#039;s blog &#187; Linux</title>
	<atom:link href="http://dibon.net/wordpress/category/os/linux-os/feed/" rel="self" type="application/rss+xml" />
	<link>http://dibon.net/wordpress</link>
	<description>About stuff that happens, when it happens, if it happens.</description>
	<lastBuildDate>Mon, 15 Jun 2009 20:08:57 +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>Change TAB behavior in Firefox</title>
		<link>http://dibon.net/wordpress/change-tab-behavior-in-firefox/</link>
		<comments>http://dibon.net/wordpress/change-tab-behavior-in-firefox/#comments</comments>
		<pubDate>Sun, 17 May 2009 10:40:39 +0000</pubDate>
		<dc:creator>Ole Bakstad</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Mac OS]]></category>
		<category><![CDATA[Tips & Hints]]></category>
		<category><![CDATA[behavior]]></category>
		<category><![CDATA[firefox]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[mac]]></category>
		<category><![CDATA[OS]]></category>
		<category><![CDATA[tab]]></category>
		<category><![CDATA[Ubuntu]]></category>

		<guid isPermaLink="false">http://dibon.net/wordpress/?p=116</guid>
		<description><![CDATA[Before I started using Linux as my default OS I used Mac OS for 5 years. In Mac OS the TAB key behaves different in Firefox than Ubuntu (my preferred distro). When using the TAB key in Mac OS it focuses on input fields only rather than every object (images, links, whatever) in a web [...]]]></description>
			<content:encoded><![CDATA[<p>Before I started using Linux as my default OS I used Mac OS for 5 years. In Mac OS the TAB key behaves different in Firefox than Ubuntu (my preferred distro). When using the TAB key in Mac OS it focuses on input fields only rather than every object (images, links, whatever) in a web page .</p>
<p>Today I finally took the time to find out what the difference between the Firefox in Mac OS and Ubuntu. I opened the about:config and searched for &#8220;tab&#8221;, and what do you know. I found an option called &#8220;accessibility.tabfocus&#8221; which was set to the value &#8220;7&#8243;.</p>
<p>A quick google search brought me to <a href="http://kb.mozillazine.org/Accessibility.tabfocus">this</a> site which tells you everything you want to know about accessibility.tabfocus.</p>
<p>If you want TAB behavior like the one in Mac OS you simply change the value of accessibility.tabfocus to &#8220;1&#8243;, et voilà, it works!</p>
<p>You can combine options. For example you can set the value &#8220;3&#8243; to select any form element on a web page. Read more at <a href="http://kb.mozillazine.org/Accessibility.tabfocus">http://kb.mozillazine.org/Accessibility.tabfocus</a>.</p>
<p><strong>edit:</strong></p>
<p>For those who didn&#8217;t know; you can press Shift+TAB to focus the <em>previous</em> selected element.</p>
]]></content:encoded>
			<wfw:commentRss>http://dibon.net/wordpress/change-tab-behavior-in-firefox/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Get Spotify URI&#8217;s working with wine</title>
		<link>http://dibon.net/wordpress/get-spotify-uris-working-with-wine/</link>
		<comments>http://dibon.net/wordpress/get-spotify-uris-working-with-wine/#comments</comments>
		<pubDate>Sun, 17 May 2009 09:43:58 +0000</pubDate>
		<dc:creator>Ole Bakstad</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Tips & Hints]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[spotify]]></category>
		<category><![CDATA[uri]]></category>
		<category><![CDATA[url]]></category>
		<category><![CDATA[wine]]></category>

		<guid isPermaLink="false">http://dibon.net/wordpress/?p=114</guid>
		<description><![CDATA[This may be old news, but I didn&#8217;t notice this before today (thanks to Emil for the tip):
You can actually get the Spotify URI&#8217;s to work with wine!
To get this working for Firefox all you have to do is:
Make a runable bash script
echo '#!/bin/sh' &#62; ~/.browser2spotify
echo 'exec wine "C:\Program Files\Spotify\spotify.exe" /uri "$@"' &#62;&#62; ~/.browser2spotify
chmod 755 [...]]]></description>
			<content:encoded><![CDATA[<p>This may be old news, but I didn&#8217;t notice this before today (thanks to Emil for the tip):<br />
You can actually get the Spotify URI&#8217;s to work with wine!</p>
<p>To get this working for <a href="http://getfirefox.com">Firefox</a> all you have to do is:</p>
<p><strong>Make a runable bash script</strong></p>
<p><code>echo '#!/bin/sh' &gt; ~/.browser2spotify<br />
echo 'exec wine "C:\Program Files\Spotify\spotify.exe" /uri "$@"' &gt;&gt; ~/.browser2spotify<br />
chmod 755 ~/.browser2spotify</code></p>
<p><strong>Add settings to Firefox</strong></p>
<p>First open the config window (type about:config in the address field).</p>
<p>You now want to add the following options:</p>
<p><strong>network.protocol-handler.external.spotify = True<br />
</strong><strong>network.protocol-handler.app.spotify = ~/.browser2spotify</strong></p>
<p>The last option may vary depending on where you put your browser2spotify script.</p>
<p>You can find everything in this post at <a href="http://www.spotify.com/en/help/faq/wine/">http://www.spotify.com/en/help/faq/wine/</a>. They also have a howto for <a href="http://opera.com">Opera</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://dibon.net/wordpress/get-spotify-uris-working-with-wine/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
