<?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>bingshui.org &#187; Songbird sans iTunes</title>
	<atom:link href="http://www.bingshui.org/tag/songbird-sans-itunes/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.bingshui.org</link>
	<description>the Life of Zim</description>
	<lastBuildDate>Thu, 02 Feb 2012 16:27:42 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>Remove iTunes Playlist from Songbird</title>
		<link>http://www.bingshui.org/tech/remove-itunes-playlist-from-songbird/</link>
		<comments>http://www.bingshui.org/tech/remove-itunes-playlist-from-songbird/#comments</comments>
		<pubDate>Mon, 24 May 2010 17:36:14 +0000</pubDate>
		<dc:creator>dzimney</dc:creator>
				<category><![CDATA[Tech]]></category>
		<category><![CDATA[iTunes]]></category>
		<category><![CDATA[left]]></category>
		<category><![CDATA[library]]></category>
		<category><![CDATA[menu]]></category>
		<category><![CDATA[nav]]></category>
		<category><![CDATA[playlist]]></category>
		<category><![CDATA[remove itunes]]></category>
		<category><![CDATA[service-pane.rdf]]></category>
		<category><![CDATA[Songbird]]></category>
		<category><![CDATA[Songbird sans iTunes]]></category>

		<guid isPermaLink="false">http://www.bingshui.org/?p=1157</guid>
		<description><![CDATA[Recently I switched over to Songbird as an alternative to iTunes. Songbird, in all it&#8217;s glory has the ability to integrate with iTunes, which includes importing the library and sharing playlists among other things. It&#8217;s great if you want to be using iTunes along with Songbird or are even just wanting to port your iTunes [...]]]></description>
			<content:encoded><![CDATA[<p>Recently I switched over to <a href="http://getsongbird.com/">Songbird</a> as an alternative to iTunes.  Songbird, in all it&#8217;s glory has the ability to integrate with iTunes, which includes importing the library and sharing playlists among other things. It&#8217;s great if you want to be using iTunes along with Songbird or are even just wanting to port your iTunes setup to Songbird. However, if you don&#8217;t want to be using this feature, there&#8217;s one flaw. In the lefthand nav, Songbird creates an iTunes &#8220;folder&#8221; for playlists brought in from iTunes. Even if this folder is empty, it still shows up. So naturally, it can be a bit of an eyesore when you&#8217;re trying to get as far from iTunes as possible, but still have to see it represented along with your Library and playlists.</p>
<div id="attachment_1168" class="wp-caption aligncenter" style="width: 226px"><img src="http://www.bingshui.org/wordpress/wp-content/uploads/2010/05/itunes1.gif" alt="" title="itunes" width="216" height="165" class="size-full wp-image-1168" /><p class="wp-caption-text">iTunes listed with other playlists etc.</p></div>
<p>The solution lies in the <code>service-pane.rdf</code> file found in your Songbird profile folder. On OS X, Songbird profiles are stored here: <code>~/Library/Application Support/Songbird1/Profiles/</code>. The <code>Songbird1</code> portion of the path is subject to change. Mine was called <code>Songbird2</code>. There should be only one folder with this naming scheme though.</p>
<p>Each folder within the Profiles folder will be named <code>*some_random_string*.default</code>, where <code>*some_random_string*</code> is replaced by&#8230; some random string. For example, my profile was called <code>a3ufknya.default</code>. It&#8217;s possible you may have multiple profile folders, so you may need to snoop around a bit.</p>
<p>Once you found the profile you want to edit, within the profile folder find your <code>service-pane.rdf</code> file. Now be sure to duplicate the folder in case you botch things up. I just copy and pasted the file as <code>service-pane-orig.rdf</code>. Now open up the original file, <code>service-pane.rdf</code>, in your favorite text editor. I use <a href="http://www.barebones.com/products/textwrangler/">TextWrangler</a>, but you can use anything that&#8217;ll save the file out as UTF-8. Now do a search on the file for &#8220;iTunes&#8221;. You should find two bits containing the word iTunes:</p>
<blockquote><p><code>&lt;RDF:Seq RDF:about=&quot;SB:iTunes&quot;&gt;<br />
&lt;/RDF:Seq&gt;<br />
&lt;RDF:Description RDF:about=&quot;SB:iTunes&quot;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;NC:Name=&quot;&amp;amp;servicesource.itunes&quot;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;NS1:Properties=&quot;folder servicesource-itunes&quot;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;NS1:contractid=&quot;@songbirdnest.com/servicepane/library;1&quot;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;NS1:Editable=&quot;false&quot;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;NS1:Weight=&quot;3&quot;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;NS1:Hidden=&quot;false&quot;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;NS1:Open=&quot;true&quot; /&gt;</code></blockquote >
<p>and</p>
<blockquote><p><code>&lt;RDF:li RDF:resource=&quot;SB:iTunes&quot;/&gt;</code></p></blockquote>
<p>The second line is what you want, or rather don&#8217;t want. By deleting this line of code from the file, you remove the reference to the first bit, thus remove the item from the left nav menu. Ta da!</p>
<div id="attachment_1166" class="wp-caption aligncenter" style="width: 225px"><img src="http://www.bingshui.org/wordpress/wp-content/uploads/2010/05/songbird.gif" alt="" title="songbird" width="215" height="171" class="size-full wp-image-1166" /><p class="wp-caption-text">Songbird sans iTunes</p></div>
<p>It&#8217;s always good to keep the <code>service-pane-orig.rdf</code> file in case you need/want to revert back. It&#8217;s also possible that Songbird will add the item back into the file if you re-enable the iTunes synchronization, but I don&#8217;t know as I&#8217;ve completely kicked iTunes off my machine.</p>
<p>Hope this helps someone else out, as I couldn&#8217;t find any information online regarding this topic.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.bingshui.org/tech/remove-itunes-playlist-from-songbird/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

