<?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>lukebaker.org &#187; mozilla.org</title>
	<atom:link href="http://lukebaker.org/archives/category/mozillaorg/feed/" rel="self" type="application/rss+xml" />
	<link>http://lukebaker.org</link>
	<description>lukebaker.org</description>
	<lastBuildDate>Tue, 01 Jul 2008 17:08:53 +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>Missed Party</title>
		<link>http://lukebaker.org/archives/2004/10/19/missed-party/</link>
		<comments>http://lukebaker.org/archives/2004/10/19/missed-party/#comments</comments>
		<pubDate>Tue, 19 Oct 2004 16:51:25 +0000</pubDate>
		<dc:creator>Luke</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[mozilla.org]]></category>

		<guid isPermaLink="false">http://lukebaker.org/archives/2004/10/19/missed-party/</guid>
		<description><![CDATA[Looks like I&#8217;ll miss the party in my hometown.
]]></description>
			<content:encoded><![CDATA[<p>Looks like I&#8217;ll miss the <a href="http://jedbrown.net/mozilla/party/index.php">party in my hometown.</a></p>
]]></content:encoded>
			<wfw:commentRss>http://lukebaker.org/archives/2004/10/19/missed-party/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Firefox Setup</title>
		<link>http://lukebaker.org/archives/2004/09/15/firefox-setup/</link>
		<comments>http://lukebaker.org/archives/2004/09/15/firefox-setup/#comments</comments>
		<pubDate>Wed, 15 Sep 2004 17:36:04 +0000</pubDate>
		<dc:creator>Luke</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[mozilla.org]]></category>

		<guid isPermaLink="false">http://lukebaker.org/archives/2004/09/15/firefox-setup/</guid>
		<description><![CDATA[After updating to Firefox 1.0PR, I re-tooled my Firefox startup script.  The script accepts a URL and if there is no Firefox process running, it will start one and go to the URL that was the input.  If there already is a Firefox process running it will open the URL in a new [...]]]></description>
			<content:encoded><![CDATA[<p>After updating to <a href="http://getfirefox.com/">Firefox 1.0PR,</a> I re-tooled my <a href="http://www.spreadfirefox.com/?q=affiliates&amp;id=14194">Firefox</a> startup script.  The script accepts a URL and if there is no Firefox process running, it will start one and go to the URL that was the input.  If there already is a Firefox process running it will open the URL in a new tab in the already running Firefox window.  Previously, I used it every time I launched Firefox.  This is not necessary anymore, now it is only used when I click on links from other applications.  This is probably only useful for those using Linux.</p>
<p>I also had to change my <a href="http://texturizer.net/firefox/edit.html#css">userChrome.css</a> file so that I could change the width of my search-bar.  Unfortunately, the <a href="http://texturizer.net/firefox/tips.html#app_searchbarsize">directions</a> which I had previously used were old and didn&#8217;t quite work.<br />
<span id="more-13"></span><br />
To change the width of the search bar, the following needs to be in you userChrome.css file:<br />
<code><br />
/* Make the Search box flex wider<br />
   (in this case 400 pixels wide) */<br />
#search-container {<br />
   -moz-box-flex: 400 !important;<br />
}<br />
#searchbar {<br />
-moz-box-flex: 400 !important;<br />
}<br />
</code></p>
<p>And here&#8217;s my newly updated startup script:<br />
<code><br />
#!/bin/bash<br />
FF=/usr/local/firefox<br />
url=$1<br />
[ -z $url ] &#038;&#038; url=about:blank<br />
## Run Firebird remotely if there's an existing process running...<br />
if [ -x $FF/firefox ] ; then<br />
$FF/firefox -remote 'ping()'<br />
if [ $? -eq 0 ]; then # Already running -> new-tab<br />
$FF/firefox -remote "openURL($url,new-tab)" &#038;<br />
else<br />
$FF/firefox $url &#038;<br />
fi<br />
fi<br />
</code></p>
]]></content:encoded>
			<wfw:commentRss>http://lukebaker.org/archives/2004/09/15/firefox-setup/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
	</channel>
</rss>

<!-- Dynamic Page Served (once) in 0.181 seconds -->
