How to set the title of an urxvt window?

Hello,
I have read the manpage and FAQ on the urxvt website, but my problem persists:
When I try to set the title of an urxvt window, for example:
$ urxvt -title test
then the new window shows for a second the title "test" and then switches  to "username@hostname:~".
Yes, I have
case $TERM in
xterm*|*rxvt*|Eterm|eterm|rxvt-unicode|urxvt)
PROMPT_COMMAND='echo -ne "\033]0;${USER}@${HOSTNAME%%.*}:${PWD/$HOME/~}\007"'
screen)
PROMPT_COMMAND='echo -ne "\033_${USER}@${HOSTNAME%%.*}:${PWD/$HOME/~}\033\\"'
esac
in my .bashrc.
But I think, the explicit command line option "-title" should break the .bashrc, right?
The default setting by .bashrc is intentional, but in this specific case I would like to set the window title by hand.
How can I do that?
Last edited by indianahorst (2011-06-22 11:01:34)

I would recommend that you not use the PROMPT_COMMAND to set your bash prompt at all.  Use the PS1 environment variable. By using PROMPT_COMMAND, you are invoking a subshell each time you hit return; which is most likely unnecessary.
In fact, you are probably already setting PS1 in your .bashrc; and that is what is changing your window title.  You can set PS1 to a different value, and then it will not reset your window title with each command.
Just set PS1 in your .bashrc to:
PS1="[\u@\h \W]\$ "
You can see a more complete list of the available \u, \H, etc. options here.
If you do wish to reset the urxvt window title by setting PS1, do the following:
PS1="[\u@\h \W]\$ "
PS1="\[\e]2;\u \W\a\]$PS1"
Edit:  As I look at this a little closer, I see that your PROMPT_COMMAND is indeed setting your window title.  You could change it to the following:
PROMPT_COMMAND='echo -ne "${USER}@${HOSTNAME%%.*}:${PWD/$HOME/~}"'
But I would still not use PROMPT_COMMAND and just set PS1 instead.
Last edited by rockin turtle (2011-06-23 03:53:57)

Similar Messages

  • How to set the title of pages created in Webcenter Spaces?

    Hi
    I need to set the title of the pages created in webcenter spaces. How can i do that? By default when i create the page in webcenter spaces the page name with which i created the page is coming up on the browser tab. But i want the browser title to be different from the page name. Is there a way to do this? I tried with using javascript and setting "document.title" but it works only partially. That is when the page is loading it shows the text that i have set using javascript but it doesnot remain persistent. As soon as the page loads it again resets back to the name of the page :(
    I also tried adding html markup on to the page in edit mode and tried giving in the <title> tag but it is not getting applied, as soon as i click on apply it just refreshes the page and my changes are gone.
    Please i need some help around this asap as it is critical.
    Thanks

    Thanks for the reply Jaap.
    It was really helpful. But i need further help on this.
    I need to change the browser title based on the tab selected. And here the tabs on spaces page is actually coming from a custom task flow. Any idea how can i achieve this? And there is no page refresh involved.
    Some help on this please.
    Thanks

  • How-to set the title of  a View

    Hi,
    I'm a very newbie of Obj-C and InterfaceBuilder.
    From three days I'm fighting with my iPhone app to set the title of a view.
    I've the MainWindow.xib with a UITabBarController; each tabbar's viewcontroller is on a separate xib (i.e.: the GUI of every button of the tabbar is on a different xib file).
    In IB I set up the top bar property to Translucente etc... In Xcode, in the viewDidLoad I set the self.title to something... but the top bar is never shown!!
    I also tried to set self.navigationItem.title... but nothing...
    To see the top bar do I have to use a NavigationController inside every "button" of the tab bar?? Or is the top bar property of IB not working??
    Thanks to all...

    Wenwen,
    View Function dropdown "standard view" is just making the ALV to display the ALV standard configuration (so it will display the ALV the way is designed).
    now if you want to change that to your OWN VIEW you just need to click in the SETTINGS (ALV TOOLBAR at the right end) and then configure your ALV the way you want to be display. After that click SAVE AS and you can name the VIEW to your own and also you can click INITIAL VIEW checkbox in order to display always that for youl.
    Please note that this is a user base personification so this will be only available for you.
    if you want to have your own view for every user then you need to enhanced the ALV in a POST-EXIT method and do not allowed user personification.
    you can disable user personification at the application level in the parameters tab.
    hope this help!
    Jason PV

  • How to set the Title twice for Down/Across Repeating Frame?

    Hi All,
    I'm using a repeating frame with Down/Across value for Print Direction Property, and make it's size small enough to show the data twice in columns.
    But how to specify it's titles? Even it is shown once or twice?
    If the data is shown once I need to show the titles once and if the data is shown twice I need to show the titles twice
    Don't hesitate to ask me any thing if there is something not clear please!
    Note:
    I'm using Reports 6i.

    So, you would like it like this?:
    | title | title |
    | no. 1 | no. 2 |
    |       |       |
    | no. 3 | no. 4 |
    |       |       |
    -----------------I don't think tihs will work, since the title above the repeating-frame will never know about the number of columns.
    If your repeating frame has horizontal- and vertical-elasticity = fixed, you could do it like this:
    | title | title |
    | no. 1 | no. 2 |
    |       |       |
    | no. 3 | no. 4 |
    |       |       |
    -----------------You then have to create a format-trigger on "title" with the following code:
    IF( mod( :rownum, 4 ) IN ( 1, 2 ) )
      THEN
        return( TRUE );
    ELSE
      return( FALSE );
    END IF;The "4" stands for the max number of repeating-frames per page, the "1, 2" means the number of columns per page.
    Regards
    Markus

  • How to set the title and tab name of page in EXCEL format

    I have generated a HTML page in a popup. I want to show the page in Excel format in the popup.
    I did this by executing the command
             owa_util.mime_header('application/vnd.ms-excel',true);before the report.
    This is working correct only now you see the complete URL in the popup title and
    the "f?p=.." part in the excel sheet name.
    How can you change the title and the sheet name.
    I have already tried the following:
             owa_util.mime_header('application/vnd.ms-excel',false);
             htp.p('Content-Disposition: inline; name=overzicht.xls');
             htp.p('Content-Description: overzicht.xls');
             owa_util.http_header_close;but this does not change anything.
    Does somebody know a solution.
    thanks,
    Fred.

    Liam,
    I'm posting again because the issue is not resolved yet. I thought it was fixed but it isn’t.
    I followed other posts you had answered about blog meta tags, but still can’t get it fixed.
    For the BC Blog - unable to show blog post description "{tag_blogpostmetadescription}" for SEO.
    blog post <title> tag works fine but not the blog post description.
    As previous forum answers indicated:
    Went to:
    - Site Manager->Module Templates->Blogs->Blog Post Details layout and put the above code.
    - made sure in blog post SEO the title and description fields are filled out.
    - removed from my blog-template any call for the title and description.
    must be missing something.
    re: your comment about pasting code in editor?  Not sure what you mean - should I not paste code?
    Thanks for your reply and help
    Will

  • How to set the dimension of main page windows for std dot matrix printer

    Hi All,
    I have to print a form in a pre- printed form which is coming from the standard dot matrix printer( 80 column).
    In the Sap script how i will define the dimensions of main page window .
    The printer is in US .  How i can sets the page dimensions .
    reward point will be provided.
    Regards

    Change SEQUENCE = "213" to SEQUENCE = "218" in the Task ID Field component. That will solve the issue.
    --Shiv                                                                                                                                                                                                                               

  • How to set the minimum size of app window?

    Hi JavaFX experts :)
    Is it possible to limit the minimum size of application window? What would be the JavaFX equivalent of the following SWING code?
            JFrame frame = new JFrame("Application Title");
            frame.setMinimumSize(new Dimension(320, 240));
            frame.setPreferredSize(new Dimension(640, 480));Preferred or initial size was easy (width/height), but what about the minimum size?
    Stage {
        title: "Application Title"
        width: 640
        height: 480
        scene: Scene {
            content: [
                // some content
    }Thanks!

    var stage: Stage;
    var stageWidth = stage.width on replace
        if (stageWidth < 640) stageWidth = 640;
    var stageHeight = stage.height on replace
        if (stageHeight < 400) stageHeight = 400;
    stage = Stage {
        title: "Application Title"
        width: bind stageWidth with inverse
        height: bind stageHeight with inverse
        scene: Scene {
            content: [
                // some content
    }It doesn't prevent resizing to smaller dimensions but it restores to minimal dimension if done.

  • How to set the Mozilla Firefox as default window when you run the 11g

    Hi,
    Whenever i run any application in JDev 11g, its opening in IE, where as i need to see it in Firefox. May i know how to configure it in JDev 11g.

    Hi,
    You have to set Tools --> Preferences --> Web Browser And Proxy --> Browser Command Line and select firefox.exe(win) in your file system.
    Hope this helps
    Joseba

  • How to set the focus to the tabbed pane title?

    Dear Friends,
    I'm using tabbed pane (JTabbedPane) in my application. I have 2 tabbed panes and each contain some text fields and buttons.
    In first tabbed, I have 2 text fields, OK and Cancel buttons. I have to set the focus to the title of the tabbed pane after it lost focus from the Cancel button (focus has to move from Cancel button to tabbed pane title by pressing tab key).
    Could anyone please tell me how to set the focus to the tabbed pane title?
    Thanks in advance,
    Sathish kumar D

    Thanks for your reply.
    Could you please tell me how to set focus for title of the tabbed pane throug FocusTraversalPolicy?
    because usually we set the focus for the component by requestFocusInWindow().
    for example set focust to the button OK,
    btnOk.requestFocusInWindow()likewise could you tell me how to set focus to Title of the tabbed pane?
    Sathish kumar D

  • Setting the title for File download dialog when using content-disposition

    I am trying to send a file from server to client (browser). I am setting the content type of the resopnse and using the "content-disposition" header and giving the filename.
    But the issue is, when it is downloading and the dialog box is showing the progress bar, The title of the dialog box is showing something like "40% of localhost:9080.....". It doesn't show the file name in the title bar. Also, if the URL is very long (I am passing some get parameters and the servlet name is also long), I get junk characters like small boxes.
    How to set this title in the servlet?

    Is there a reason why you have to use FileReference.Save versus File.browseForSave?  In Adobe AIR, the File class, which extends the FileReference class,    provides more capabilities and has less security restrictions than the FileReference class.  Using File.browseForSave, it has a title:String parameter which is a string that is diplayed in the title bar of the dialog box.

  • How to set the width of DataGridColumn dynamically?

    What I want to do is, load data from a text file and put into a DataGrid component, the fields of ech record in the text have fixed length, and are seperated by a space, like this:
    personal.txt
    50 Uvwxyz  Male    123456789
    60 Hijklmn  Male    67890123456789
    30 Abcdefg Male    123456789012345
    40 Opqrst   Female 987654321012345678
    the configuration file is column.xml:
    <dgcolumn>
         <personal>
              <len>20</len>
              <title>Name</title>
         </personal>
         <personal>
              <len>3</len>
              <title>Age</title>
         </personal>
         <personal>
              <len>6</len>
              <title>Sex</title>
         </personal>
         <personal>
              <len>20</len>
              <title>IdNumber</title>
         </personal>
    </dgcolumn>
    First I load the column.xml into an arrColumn, then read the personal.txt and seperate the record by the width( "len" in the xml file ), and put the seperated fields into another arrField, set the arrayFld as the dataProvider of a DataGrid, thus, the title can be showed as the headerText of the DataGrid and the data can be loaded correctly.
    private function handleComplete( event:Event ):void
         var arrField:Array = new Array();
         var arrFile:Array = loader.data.split(/\n/);
         for( var i:int = 0; i < arrColumn.length; i ++ )
              arrField[i] = convIcom( arrFile[i] );
         adgFile.dataProvider = arrField;
         trace( "The data has successfully loaded" );
    private function convIcom( strRecord:String ):Object
         var key:String = null;
         var dataField:String = null;
         var offset:int = 0;
         var obj:Object = new Object();
         if( strRecord.length > 0 )
              for( var i:int = 0; i < arrColumn.length; i ++ )
                   dataField = strRecord.substr( offset, arrColumn[i].len );
                   key = arrColumn[i].title;
                   obj[key] = dataField;
                   offset += arrColumn[i].len + 1;
         return obj;
    <mx:DataGrid x="10" y="100" width="400" id="dgFile" />
    The problem is, the width of the DataGridColumn is average, how to set the column width by the length of each field? I can calculate the rate of each field ( field / fields ), but I don't know how to change the property of the DataGridColumn.width.
    Thanks for helping.

    In the above post, I pasted an old version of personal.txt, so I paste it again:
    personal.txt
    Uvwxyz  50 Male   123456789
    Hijklmn 60 Male   67890123456789
    Opqrst  40 Female 987654321012345678
    Abcdefg 30 Male   123456789012345
    And I have another question, when the data is loaded into the DataGrid, the fields of each record are ordered in alphabetical order ( the "Age" column will appear firstly, then "IdNumber", "Name", "Sex" ), not as the order in column.xml, how to make it keep the sequence of the xml file?
    Thanks again.

  • How to set the extra component to horizontal scrollbar position

    How to set the component to position of horizontal scrollbar , that position contain two component horizontal scrollbar and any component (JButton , JLabel ) like that.. Ms-Word scrollbar ,
    Like that bellow fig.
    <!--[if !mso]>
    <style>
    v\:* {behavior:url(#default#VML);}
    o\:* {behavior:url(#default#VML);}
    w\:* {behavior:url(#default#VML);}
    .shape {behavior:url(#default#VML);}
    </style>
    <![endif]--><!--[if gte mso 9]><xml>
    <w:WordDocument>
    <w:View>Normal</w:View>
    <w:Zoom>0</w:Zoom>
    <w:PunctuationKerning/>
    <w:ValidateAgainstSchemas/>
    <w:SaveIfXMLInvalid>false</w:SaveIfXMLInvalid>
    <w:IgnoreMixedContent>false</w:IgnoreMixedContent>
    <w:AlwaysShowPlaceholderText>false</w:AlwaysShowPlaceholderText>
    <w:Compatibility>
    <w:BreakWrappedTables/>
    <w:SnapToGridInCell/>
    <w:WrapTextWithPunct/>
    <w:UseAsianBreakRules/>
    <w:DontGrowAutofit/>
    </w:Compatibility>
    <w:BrowserLevel>MicrosoftInternetExplorer4</w:BrowserLevel>
    </w:WordDocument>
    </xml><![endif]--><!--[if gte mso 9]><xml>
    <w:LatentStyles DefLockedState="false" LatentStyleCount="156">
    </w:LatentStyles>
    </xml><![endif]-->
    <!--
    /* Style Definitions */
    p.MsoNormal, li.MsoNormal, div.MsoNormal
    {mso-style-parent:"";
    margin:0in;
    margin-bottom:.0001pt;
    mso-pagination:widow-orphan;
    font-size:12.0pt;
    font-family:"Times New Roman";
    mso-fareast-font-family:"Times New Roman";}
    @page Section1
    {size:8.5in 11.0in;
    margin:1.0in 1.25in 1.0in 1.25in;
    mso-header-margin:.5in;
    mso-footer-margin:.5in;
    mso-paper-source:0;}
    div.Section1
    {page:Section1;}
    -->
    <!--[if gte mso 10]>
    <style>
    /* Style Definitions */
    table.MsoNormalTable
    {mso-style-name:"Table Normal";
    mso-tstyle-rowband-size:0;
    mso-tstyle-colband-size:0;
    mso-style-noshow:yes;
    mso-style-parent:"";
    mso-padding-alt:0in 5.4pt 0in 5.4pt;
    mso-para-margin:0in;
    mso-para-margin-bottom:.0001pt;
    mso-pagination:widow-orphan;
    font-size:10.0pt;
    font-family:"Times New Roman";
    mso-ansi-language:#0400;
    mso-fareast-language:#0400;
    mso-bidi-language:#0400;}
    </style>
    <![endif]-->{font:'Times New Roman'}{size:12pt}<!--[if gte vml 1]><v:shapetype id="_x0000_t75"
    coordsize="21600,21600" o:spt="75" o:preferrelative="t" path="m@4@5l@4@11@9@11@9@5xe"
    filled="f" stroked="f">
    <v:stroke joinstyle="miter"/>
    <v:formulas>
    <v:f eqn="if lineDrawn pixelLineWidth 0"/>
    <v:f eqn="sum @0 1 0"/>
    <v:f eqn="sum 0 0 @1"/>
    <v:f eqn="prod @2 1 2"/>
    <v:f eqn="prod @3 21600 pixelWidth"/>
    <v:f eqn="prod @3 21600 pixelHeight"/>
    <v:f eqn="sum @0 0 1"/>
    <v:f eqn="prod @6 1 2"/>
    <v:f eqn="prod @7 21600 pixelWidth"/>
    <v:f eqn="sum @8 21600 0"/>
    <v:f eqn="prod @7 21600 pixelHeight"/>
    <v:f eqn="sum @10 21600 0"/>
    </v:formulas>
    <v:path o:extrusionok="f" gradientshapeok="t" o:connecttype="rect"/>
    <o:lock v:ext="edit" aspectratio="t"/>
    </v:shapetype><v:shape id="_x0000_i1025" type="#_x0000_t75" style='width:453pt;
    height:26.25pt'>
    <v:imagedata src="file:///C:\DOCUME~1\ADMINI~1\LOCALS~1\Temp\msohtml1\04\clip_image001.png"
    o:title=""/>
    </v:shape><![endif]--><!--[if !vml]--><img src="file:///C:/DOCUME~1/ADMINI~1/LOCALS~1/Temp/msohtml1/04/clip_image002.jpg" alt="" width="485" height="27" /><!--[endif]-->{size}{font}
    How to design ?

    pradeep.rajadurai wrote:
    I want set the JTable as a background of jframe or jinternalframe , how it is possible One way that may work, you can always extract the image from a rendered JTable and then paint the same image into the JPanel that holds your components via it's paintComponent method, then added the JPanel to the app's contentPane.
    give me simple pgmIs English your second language? Because if so, please understand that this demand can be taken by some as rude.

  • Publishing with TCS3 - how to set the default topic?

    Hi all,
    I am having a problem with the new Publishing function of FM10/TCS3. Here is how I proceed:
    1. Create a RoboHelp project.
    2. Create a link to the FrameMaker book and update (the link properties are set to generate a TOC).
    3. Tweak the import settings until layout fits.
    4. Select the generated TOC in the SSL and set the title page as default topic.
    5. Generate HTML help output and test.
    6. When all is fine, export isf file and close Robohelp.
    Now the idea would be that I can edit the book using Framemaker and generate HTML Help output without using Robohelp:
    1. Open Book in Framemaker and edit. I also need to edit the title page.
    2. Select File > Publish.
    3. Select the Robohelp projekt and isf file.
    4. Generate HTML Help.
    Result. Everthing works fine, except for the title page - the online help still displays the default topic at the state is had in the Robohelp project, before I edited the Framemaker file. When I select the title page manualy from the TOC, then the correct updated page is displayed. That means that both versions are contained in the CHM and the correct version is linked to the TOC, but the wrong version is set as default topic.
    Any solution to this? Otherwise I might file a bug report.

    Can you please elaborate the para below
    Everything works fine, except for the title page - the online help still displays the default topic at the state is had in the RoboHelp project, before I edited the FrameMaker file. When I select the title page manually from the TOC, then the correct updated page is displayed. That means that both versions are contained in the CHM and the correct version is linked to the TOC, but the wrong version is set as default topic.
    do you mean to say that you selected a different topic as default in the RoboHelp project and later while File Publish you changed the default topics - the question is from where did you do it (in RoboHelp project?) and this selecting from TOC is not clear (as default topic selection combo in SSL does not shows TOC but all the topics present).
    Secondly Did you used the same FM file set to create .isf from RoboHelp project that was used later for File Publish option or did you created a downsample of you FM file set in the RoboHelp project.
    One of the things I would suggest is that if you are that proficient with RoboHelp (the way you linked and did mapping and all) then why go to FrameMaker to Publish, as you can create the same output right there sitting the RoboHelp project (while you are creating the .isf - mapping that you require). It will give you more flexibility with respect to the output generation like applying a different CSS to all the topics before generating output
    one last explanation what seems to have happened in your case is that you selected a different topics (topics generated from the linked FM in RoboHelp project) and while publish the files used for output is the one generated through import of the FM book in the RoboHelp project (which is a different set of files) and thus the outputs default topics would be the one generated from your linked FM document (the one that you selected while creating the .isf file)
    If you use linked FM documents and generate online outputs from RoboHelp you would have a better control over these online outputs and for PDF you can always generate it from FrameMaker
    Hope this will help
    Ashish

  • Implemented webutil , how to change the title Webutil

    Hi All,
    We have implemented webutil. However the application title in the browser gets appended to xx application - Webutil . Now how do I remove the " - Webutil "
    IAS 10g R2.
    I have set the title in the formsweb.cfg as "xx application.
    Not able to figure out from where " -Webutil" is coming
    Thanks
    Rajesh Alex

    1     Download Jacob 1.8 archive and webutil 1.06
         CREATE USER webutil IDENTIFIED BY Webutil$123
    DEFAULT TABLESPACE users
    TEMPORARY TABLESPACE temp;
         GRANT CONNECT, CREATE PROCEDURE, CREATE PUBLIC SYNONYM TO webutil;
         GRANT RESOURCE, CONNECT TO WEBUTIL;
         REVOKE UNLIMITED TABLESPACE FROM WEBUTIL;
         create public synonym webutil_db for webutil.webutil_db;
         grant execute on webutil_db to public;
    grant EXECUTE on WEBUTIL_DB to PUBLIC
         Login as webutil user and create_webutil_db.sql
    Sign the Jar File jacob.jar and frmwebutil.jar
    2.     copy jacob.jar and copy frmwebutil.jar to ORACLE_HOME/forms/java directory.
    3.     . Create directory webutil under [OraHome]\forms\webutil and .
         . copy jacob.dll , JNIsharedstubs.dll, d2kwutil.dll
    4.     . Forms.conf AliasMatch ^/forms/webutil/(..*)      $ORACLE_HOME/forms/webutil/$1"
    ( in 10g R2 it is already configured)
    5.     In the default.env update
    WEBUTIL_CONFIG=/opt/oracle/product/10gas/forms/server/webutil.cfg
         CLASSPATH=c:\temp\webutil\lib\frmwebutil.jar;c:\"Program      Files"\Java\j2re1.4.2_06\lib\rt.jar (Include rt.jar)
         Also include C:\Dev10g\forms\java\ frmall.jar
    10 Formsweb.cfg create a new config section
    [webutil]
    WebUtilArchive=frmwebutil.jar,jacob.jar
    WebUtilLogging=off
    WebUtilLoggingDetail=normal
    WebUtilErrorMode=Alert
    WebUtilDispatchMonitorInterval=5
    WebUtilTrustInternal=true
    WebUtilMaxTransferSize=16384
    baseHTMLjinitiator=basejpi.htm
    baseHTMLjpi=webutiljpi.htm
    #archive_jini=frmall_jinit.jar
    lookAndFeel=oracle
    form=WELCOME.fmx
    userid=webutil/Webutil$123
    width=955
    height=545
    jpi_download_page=https://java.sun.com/products/archive/j2se/1.4.2_09/index.html
    jpi_classid=clsid:8AD9C840-044E-11D1-B3E9-00805F499D93
    jpi_codebase=https://java.sun.com/products/plugin/autodl/jinstall-1_4-windows-i586.
    cab#Version=1,4,0,0
    jpi_mimetype=application/x-java-applet;version=1.4
    11. Copy webutilbase.htm webutil.cfg webutiljini.htm webutiljpi.htm to
    $ORACLE_HOME/forms/server
    rt.jar is not in the classpath
    On UNIX platforms, Forms needs to locate the libjava.so file so the LD_
    LIBRARY_PATH on most UNIX platforms including Linux, will need to contain
    the directory that holds this file. For instance on Linux this would be $JAVA_
    HOME/jre/lib/i386/native_threads. Again the Java runtime install that is part of Oracle Application Server or Oracle Developer Suite is ideal
    12. copy sign_webutil.sh to webutil folder
    sign_webutil.sh $ORACLE_HOME/forms/java/jacob.jar
    sign_webutil.sh $ORACLE_HOME/forms/java/frmwebutil.jar
    13. compile webutil.pll , fmb
    comp_webutil.pll
    mv *.plx ../forms
    Also put webutil.olb in forms folder.
    $ORACLE_HOME/bin/frmcmp module=$ORACLE_HOME\forms\webutil.pll

  • Start page lacks menu items - unlike "How to set the home page" view

    I have just downloaded the beta of Firefox 4 and am attempting to reproduce opening home page from previous version. Directions on accomplishing this (loading the NY Times front page) depend on a menu bar with "File, Edit, View, History" etc. There are not visible. They are shown in the directions on Firefox Help but not on my computer. How to do this??

    Click the Firefox button, then click Options. This will open the options dialog that the [[How to set the home page]] article refers to.
    When viewing the support articles, in the right-hand column there is a section titled "Help With:", make sure it is set to Windows and Firefox 4 to get help relevant to the version you are using. In some articles you get different content when you select Firefox 4.

Maybe you are looking for