<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	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:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
		>
<channel>
	<title>Comments on: The most annoying Firefox thing</title>
	<atom:link href="http://kmandla.wordpress.com/2009/01/27/the-most-annoying-firefox-thing/feed/" rel="self" type="application/rss+xml" />
	<link>http://kmandla.wordpress.com/2009/01/27/the-most-annoying-firefox-thing/</link>
	<description>K.Mandla's blog of Linux experiences</description>
	<lastBuildDate>Mon, 11 Feb 2013 18:19:59 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
	<item>
		<title>By: Cleaning up is hard to do &#171; Motho ke motho ka botho</title>
		<link>http://kmandla.wordpress.com/2009/01/27/the-most-annoying-firefox-thing/#comment-39963</link>
		<dc:creator><![CDATA[Cleaning up is hard to do &#171; Motho ke motho ka botho]]></dc:creator>
		<pubDate>Fri, 24 Jul 2009 00:27:18 +0000</pubDate>
		<guid isPermaLink="false">http://kmandla.wordpress.com/2009/01/27/the-most-annoying-firefox-thing/#comment-39963</guid>
		<description><![CDATA[[...] I use the precompiled Firefox binary and keep it in a hidden folder in my home directory, which is why the first part of the first line looks funny. The second part resizes the window to 1280&#215;1024, because the -height and -width flags for Firefox, have never, in my experience, worked. But that&#8217;s not news. [...]]]></description>
		<content:encoded><![CDATA[<p>[...] I use the precompiled Firefox binary and keep it in a hidden folder in my home directory, which is why the first part of the first line looks funny. The second part resizes the window to 1280&#215;1024, because the -height and -width flags for Firefox, have never, in my experience, worked. But that&#8217;s not news. [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: M Belsky</title>
		<link>http://kmandla.wordpress.com/2009/01/27/the-most-annoying-firefox-thing/#comment-39669</link>
		<dc:creator><![CDATA[M Belsky]]></dc:creator>
		<pubDate>Fri, 19 Jun 2009 07:28:08 +0000</pubDate>
		<guid isPermaLink="false">http://kmandla.wordpress.com/2009/01/27/the-most-annoying-firefox-thing/#comment-39669</guid>
		<description><![CDATA[I am trying to specify Firefox&#039;s height and width for a batch file I&#039;m making for myself to start a few apps at the same time.

This is what I&#039;ve gotten so far.

@rem Open Some Firefox Windows With Settings &amp; Sizes Remembered
Start &quot;&quot; firefox.exe -no-remote -new-window -p &quot;FirefoxProfileNameYouCreate1&quot; www.first_url.com -width 585 -height 520
Start &quot;&quot; firefox.exe -no-remote -new-window -p &quot;FirefoxProfileNameYouCreate2&quot; www.second_url.com -width 585 -height 520

@rem Start 1st Program (Minimized option used. /min)
cd &quot;C:\Program Files\1st Program&quot;
Start /min &quot;&quot; 1stProgram.exe

@rem Start Last Program
cd &quot;C:\Program Files\Last Program&quot;
Start &quot;&quot; LastProgram.exe


Initially, I believe I was able to get the window sizes to stick using this command:
Start &quot;&quot; firefox.exe -cache -p &quot;FirefoxProfileNameYouCreate1&quot; www.first_url.com -width 585 -height 520

the problem was that if i had a firefox window open before running the command, the profile (-p) would be ignored and firefox would use the current profiles settings. So I found the -no-remote switch to force firefox to use the specified profile but that caused the height and width to be ignored. For my uses this is okay because it is just for my convenience and each time I run my batch file, the windows open is the previous toolbar setup and window size and position.

Basically, I was able to get multiple window sizes and positions remembered ance set up, but am still not able to specify that info in the command line format.

If anyone who is better than me at batch files can play around with the switches ive mentioned in a way that will allow the windows sizes to be specified from the command line that works when an existing instance of firefox is already open, I would be very grateful.

Thanks.

M Belsky]]></description>
		<content:encoded><![CDATA[<p>I am trying to specify Firefox&#8217;s height and width for a batch file I&#8217;m making for myself to start a few apps at the same time.</p>
<p>This is what I&#8217;ve gotten so far.</p>
<p>@rem Open Some Firefox Windows With Settings &amp; Sizes Remembered<br />
Start &#8220;&#8221; firefox.exe -no-remote -new-window -p &#8220;FirefoxProfileNameYouCreate1&#8243; <a href="http://www.first_url.com" rel="nofollow">http://www.first_url.com</a> -width 585 -height 520<br />
Start &#8220;&#8221; firefox.exe -no-remote -new-window -p &#8220;FirefoxProfileNameYouCreate2&#8243; <a href="http://www.second_url.com" rel="nofollow">http://www.second_url.com</a> -width 585 -height 520</p>
<p>@rem Start 1st Program (Minimized option used. /min)<br />
cd &#8220;C:\Program Files\1st Program&#8221;<br />
Start /min &#8220;&#8221; 1stProgram.exe</p>
<p>@rem Start Last Program<br />
cd &#8220;C:\Program Files\Last Program&#8221;<br />
Start &#8220;&#8221; LastProgram.exe</p>
<p>Initially, I believe I was able to get the window sizes to stick using this command:<br />
Start &#8220;&#8221; firefox.exe -cache -p &#8220;FirefoxProfileNameYouCreate1&#8243; <a href="http://www.first_url.com" rel="nofollow">http://www.first_url.com</a> -width 585 -height 520</p>
<p>the problem was that if i had a firefox window open before running the command, the profile (-p) would be ignored and firefox would use the current profiles settings. So I found the -no-remote switch to force firefox to use the specified profile but that caused the height and width to be ignored. For my uses this is okay because it is just for my convenience and each time I run my batch file, the windows open is the previous toolbar setup and window size and position.</p>
<p>Basically, I was able to get multiple window sizes and positions remembered ance set up, but am still not able to specify that info in the command line format.</p>
<p>If anyone who is better than me at batch files can play around with the switches ive mentioned in a way that will allow the windows sizes to be specified from the command line that works when an existing instance of firefox is already open, I would be very grateful.</p>
<p>Thanks.</p>
<p>M Belsky</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: George Mandis</title>
		<link>http://kmandla.wordpress.com/2009/01/27/the-most-annoying-firefox-thing/#comment-39238</link>
		<dc:creator><![CDATA[George Mandis]]></dc:creator>
		<pubDate>Fri, 01 May 2009 08:09:14 +0000</pubDate>
		<guid isPermaLink="false">http://kmandla.wordpress.com/2009/01/27/the-most-annoying-firefox-thing/#comment-39238</guid>
		<description><![CDATA[Oh my god, I thought I was going crazy.  I&#039;m so glad someone else has found this problem.  The JavaScript work-around is clever.]]></description>
		<content:encoded><![CDATA[<p>Oh my god, I thought I was going crazy.  I&#8217;m so glad someone else has found this problem.  The JavaScript work-around is clever.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: K.Mandla</title>
		<link>http://kmandla.wordpress.com/2009/01/27/the-most-annoying-firefox-thing/#comment-38281</link>
		<dc:creator><![CDATA[K.Mandla]]></dc:creator>
		<pubDate>Tue, 27 Jan 2009 20:44:48 +0000</pubDate>
		<guid isPermaLink="false">http://kmandla.wordpress.com/2009/01/27/the-most-annoying-firefox-thing/#comment-38281</guid>
		<description><![CDATA[I remember using that plugin a few years ago, when I did a little web page design work. You&#039;re right, it is convenient. It&#039;s useful for previewing pages and the effect a window size has on the design. 

It would be a little too much to install, for me that is, when all I want is the same size window each time.]]></description>
		<content:encoded><![CDATA[<p>I remember using that plugin a few years ago, when I did a little web page design work. You&#8217;re right, it is convenient. It&#8217;s useful for previewing pages and the effect a window size has on the design. </p>
<p>It would be a little too much to install, for me that is, when all I want is the same size window each time.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Binny V A</title>
		<link>http://kmandla.wordpress.com/2009/01/27/the-most-annoying-firefox-thing/#comment-38280</link>
		<dc:creator><![CDATA[Binny V A]]></dc:creator>
		<pubDate>Tue, 27 Jan 2009 18:21:10 +0000</pubDate>
		<guid isPermaLink="false">http://kmandla.wordpress.com/2009/01/27/the-most-annoying-firefox-thing/#comment-38280</guid>
		<description><![CDATA[If you want to do it in Konqueror, this will work...
konqueror --geometry=800x600+0+0]]></description>
		<content:encoded><![CDATA[<p>If you want to do it in Konqueror, this will work&#8230;<br />
konqueror &#8211;geometry=800&#215;600+0+0</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Ted</title>
		<link>http://kmandla.wordpress.com/2009/01/27/the-most-annoying-firefox-thing/#comment-38279</link>
		<dc:creator><![CDATA[Ted]]></dc:creator>
		<pubDate>Tue, 27 Jan 2009 15:26:52 +0000</pubDate>
		<guid isPermaLink="false">http://kmandla.wordpress.com/2009/01/27/the-most-annoying-firefox-thing/#comment-38279</guid>
		<description><![CDATA[Thanks for the tip. This used to really annoy me.
I also found this works even better. Type 

javascript:window.resizeTo(1065,755);window.moveTo(205,5);

in the location box. These can be saved as bookmarks with different sizes &amp; window positions to suit your needs/mood.

This can also be embedded into a web page (like a browser start page) to automatically do this on Firefox startup. 


    // Get the firefox window to behave nicely
    window.resizeTo(1065,755);window.moveTo(205,5);
]]></description>
		<content:encoded><![CDATA[<p>Thanks for the tip. This used to really annoy me.<br />
I also found this works even better. Type </p>
<p>javascript:window.resizeTo(1065,755);window.moveTo(205,5);</p>
<p>in the location box. These can be saved as bookmarks with different sizes &amp; window positions to suit your needs/mood.</p>
<p>This can also be embedded into a web page (like a browser start page) to automatically do this on Firefox startup. </p>
<p>    // Get the firefox window to behave nicely<br />
    window.resizeTo(1065,755);window.moveTo(205,5);</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: lordalan</title>
		<link>http://kmandla.wordpress.com/2009/01/27/the-most-annoying-firefox-thing/#comment-38276</link>
		<dc:creator><![CDATA[lordalan]]></dc:creator>
		<pubDate>Tue, 27 Jan 2009 09:57:23 +0000</pubDate>
		<guid isPermaLink="false">http://kmandla.wordpress.com/2009/01/27/the-most-annoying-firefox-thing/#comment-38276</guid>
		<description><![CDATA[The most excellent &lt;a href=&quot;http://chrispederick.com/work/web-developer/&quot; rel=&quot;nofollow&quot;&gt;Web Developer plugin&lt;/a&gt; allows you to change Firefox&#039;s resolution on-the-fly to whatever you want.

HTH

Alan]]></description>
		<content:encoded><![CDATA[<p>The most excellent <a href="http://chrispederick.com/work/web-developer/" rel="nofollow">Web Developer plugin</a> allows you to change Firefox&#8217;s resolution on-the-fly to whatever you want.</p>
<p>HTH</p>
<p>Alan</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: K.Mandla</title>
		<link>http://kmandla.wordpress.com/2009/01/27/the-most-annoying-firefox-thing/#comment-38275</link>
		<dc:creator><![CDATA[K.Mandla]]></dc:creator>
		<pubDate>Tue, 27 Jan 2009 08:39:57 +0000</pubDate>
		<guid isPermaLink="false">http://kmandla.wordpress.com/2009/01/27/the-most-annoying-firefox-thing/#comment-38275</guid>
		<description><![CDATA[Yes, I spotted the extension before I found the javascript trick. But since I generally eschew extensions and because I usually open Firefox to a blank page &lt;em&gt;and&lt;/em&gt; because I use a bash script to trigger the program anyway ... this is convenient. To each his own, of course. Funny how something like that doesn&#039;t work, and yet is listed as a command-line option. :)]]></description>
		<content:encoded><![CDATA[<p>Yes, I spotted the extension before I found the javascript trick. But since I generally eschew extensions and because I usually open Firefox to a blank page <em>and</em> because I use a bash script to trigger the program anyway &#8230; this is convenient. To each his own, of course. Funny how something like that doesn&#8217;t work, and yet is listed as a command-line option. <img src='http://s0.wp.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>By: eksith</title>
		<link>http://kmandla.wordpress.com/2009/01/27/the-most-annoying-firefox-thing/#comment-38274</link>
		<dc:creator><![CDATA[eksith]]></dc:creator>
		<pubDate>Tue, 27 Jan 2009 05:58:27 +0000</pubDate>
		<guid isPermaLink="false">http://kmandla.wordpress.com/2009/01/27/the-most-annoying-firefox-thing/#comment-38274</guid>
		<description><![CDATA[Those are the correct, and presumably current, arguments according to the &lt;a href=&quot;http://kb.mozillazine.org/Command_line_arguments&quot; rel=&quot;nofollow&quot;&gt;command line KB&lt;/a&gt;, but it doesn&#039;t seem to work in Windows either.

There is an &lt;a href=&quot;https://addons.mozilla.org/en-US/firefox/addon/5792&quot; rel=&quot;nofollow&quot;&gt;extension&lt;/a&gt; available to set specific window sizes. I don&#039;t know that might be worth it though, since it&#039;s more bloat.

You could write up a little script to copy a profile file from a different location, overwrite the existing one and command FF to use that using the -profile argument.]]></description>
		<content:encoded><![CDATA[<p>Those are the correct, and presumably current, arguments according to the <a href="http://kb.mozillazine.org/Command_line_arguments" rel="nofollow">command line KB</a>, but it doesn&#8217;t seem to work in Windows either.</p>
<p>There is an <a href="https://addons.mozilla.org/en-US/firefox/addon/5792" rel="nofollow">extension</a> available to set specific window sizes. I don&#8217;t know that might be worth it though, since it&#8217;s more bloat.</p>
<p>You could write up a little script to copy a profile file from a different location, overwrite the existing one and command FF to use that using the -profile argument.</p>
]]></content:encoded>
	</item>
</channel>
</rss>
