Terminal 2.0.1 split screen icon ?

Hi Guys,
With Terminal 2.0.1 we now have tabs in the Terminal window. A feature that has been in Linux for years now is available in OSX. Great improvement !
But what seems to have disappeared is the split screen icon. Has that been removed, or am I overlooking a preference setting somewhere?
Can you please nudge me in the right direction?
Take care,
Hip

Thanks for the reply. I renamed Terminal 1.5.1 (from 10.4.11) and extracted and installed Terminal 2.0.1 from the 10.5.4 upgrade with Pacifist. I removed com.apple.Terminal.plist from ~Library.Preferences. Terminal 2.0.1 still refused to launch and system.log gave the following entry:
Jul 5 09:46:25 Macintosh Terminal[1246]: Unable to load nib file: MainMenu, exiting
Jul 5 09:46:26 Macintosh com.apple.launchd[600] ([0x0-0x85085].com.apple.Terminal[1246]): Exited with exit code: 1
Jul 5 09:47:28 Macintosh Terminal[1256]: Unable to load nib file: MainMenu, exiting
Jul 5 09:47:29 Macintosh com.apple.launchd[600] ([0x0-0x86086].com.apple.Terminal[1256]): Exited with exit code: 1
Jul 5 09:48:40 Macintosh Terminal[1261]: Unable to load nib file: MainMenu, exiting
Jul 5 09:48:40 Macintosh com.apple.launchd[600] ([0x0-0x87087].com.apple.Terminal[1261]): Exited with exit code: 1
It did not generate a new .plist file.
I removed it to the trash and renamed Terminal 1.5.1 and it launches normally.
I copied Terminal 2.0.1 from a backup drive (last backup to this drive was June 10th) and it launched fine. I wonder if the original Terminal 2.0.1 I had in my Utilities folder somehow got damaged.
Thanks again for your help.

Similar Messages

  • Terminal.app and split-screen

    Am I the only one who used the split-screen terminal we had before Leopard? It was great for watching scrolling output since you could keep an eye on new traffic in the bottom of the screen while scrolling back and even searching in the top half of the screen.
    As far as I can tell, we no longer have a split-screen option in Terminal 2 in Leopard. If anyone knows away to enable it, please post it.

    While tabs are nice, I don't find them that much more useful than having separate terminal windows open. Especially since the only time I normally have more than one window open is to be able to cut and paste between them. The screen command provided most of what tabs offer (with the obvious lack of the tab buttons themselves). The biggest thing I found useful with split screens is for long running programs with a bunch of output. I used the split to examine the older output while watching the newest output at the bottom of the screen. For now I use old Terminal when I need to run a program like this and the new Terminal for everything else. I haven't noticed any problems from running them at the same time.

  • SALV in Split Screen - not refreshing

    I have a Report based program with Selection Screen
    Upon entering valid Inputs program calls screen 100.
    On Screen 100, I placed following elements
      Docking Container
           Splitter Container with 2 rows with Docking container as Parent
                  Placed a Toolbar object on the Top container of the split. Toolbar has 2 buttons BSID & BSAD
                  If user clicks BSID, then I have to show a SALV report in Lower Split
                  If user clicks BSAD, then I have to show a bit different data SALV report in same Lower Split
    I tried several methods to refresh the data in SALV( I used 1 SALV)
    Data is not refreshing in the second split...
    I see that Lower Split container has children attribute set.. I tried to free() the lower container, but it deletes cmplete container itself, what can I do to refresh the data without completely redoing all the container stuff?
    Also Children attribute in Split container is Read-only, how can I change this one ?
    Valid answers would receive points...

    PROGRAM  yvtest3 LINE-SIZE 512.
                                  CLASSES
    CLASS: lcl_main  DEFINITION DEFERRED,
           lcl_event DEFINITION DEFERRED.
                                   TYPES
    TYPES: BEGIN OF t_kna1,           " Customer Info
            kunnr TYPE kna1-kunnr,
            name1 TYPE kna1-name1,
           END OF t_kna1.
    TYPES: BEGIN OF t_lfa1,           " Vendor Info
            lifnr TYPE lfa1-kunnr,
            name1 TYPE lfa1-name1,
           END OF t_lfa1.
                                   OBJECTS
    DATA: o_tlbar TYPE REF TO cl_gui_toolbar,
          o_split TYPE REF TO cl_gui_splitter_container,
          o_dock  TYPE REF TO cl_gui_docking_container,
          o_main  TYPE REF TO lcl_main,
          o_event TYPE REF TO lcl_event,
          o_top   TYPE REF TO cl_gui_container,
          o_down  TYPE REF TO cl_gui_container.
                                 INTERNAL TABLES
    DATA: i_kna1 TYPE STANDARD TABLE OF t_kna1,
          i_lfa1 TYPE STANDARD TABLE OF t_lfa1.
                                   PARAMETERS
    PARAMETERS: p_dbcnt TYPE sy-dbcnt DEFAULT '500'.
          CLASS lcl_event DEFINITION
          Events Definition
    CLASS lcl_event DEFINITION.
      PUBLIC SECTION.
        METHODS: on_click FOR EVENT function_selected OF cl_gui_toolbar
                           IMPORTING fcode.
    ENDCLASS.                    "lcl_event DEFINITION
          CLASS lcl_main DEFINITION
          Main Definition
    CLASS lcl_main DEFINITION.
      PUBLIC SECTION.
        METHODS: constructor.
    ENDCLASS.                    "lcl_main DEFINITION
                                    GET DATA
    START-OF-SELECTION.
    Get Customers
      SELECT kunnr name1
          FROM kna1
          INTO TABLE i_kna1
          UP TO p_dbcnt ROWS.
      IF sy-subrc = 0.
        SORT i_kna1 BY kunnr.
      ENDIF.
    Get Customers
      SELECT kunnr name1
          FROM kna1
          INTO TABLE i_kna1
          UP TO p_dbcnt ROWS.
      IF sy-subrc = 0.
        SORT i_lfa1 BY lifnr.
      ENDIF.
      IF i_kna1 IS NOT INITIAL OR i_lfa1 IS NOT INITIAL.
        CALL SCREEN '0100'.
      ELSE.
        MESSAGE 'No data exists for entry criteria'(001) TYPE 'I'.
        LEAVE TO LIST-PROCESSING.
      ENDIF.
          CLASS lcl_event IMPLEMENTATION
           Events Implementation
    CLASS lcl_event IMPLEMENTATION.
      METHOD on_click.
        CASE fcode.
          WHEN 'KNA1'.
            TRY.
                CALL METHOD cl_salv_table=>factory
                  EXPORTING
                    r_container = o_down
                  CHANGING
                    t_table     = i_kna1.
              CATCH cx_salv_msg.
                MESSAGE 'SALV - error'(007) TYPE 'I'.
                LEAVE TO LIST-PROCESSING.
            ENDTRY.
          WHEN 'LFA1'.
            TRY.
                CALL METHOD cl_salv_table=>factory
                  EXPORTING
                    r_container = o_down
                  CHANGING
                    t_table     = i_lfa1.
              CATCH cx_salv_msg.
                MESSAGE 'SALV - error'(007) TYPE 'I'.
                LEAVE TO LIST-PROCESSING.
            ENDTRY.
          WHEN 'EXIT'.
            LEAVE TO SCREEN 0.
        ENDCASE.
        cl_gui_cfw=>flush( ).
      ENDMETHOD.                    "on_click
    ENDCLASS.                    "lcl_event IMPLEMENTATION
          CLASS lcl_main IMPLEMENTATION
          Main Implementation
    CLASS lcl_main IMPLEMENTATION.
      METHOD constructor.
        DATA: lw_evnt  TYPE cntl_simple_event.       " Events
        DATA: li_evnt  TYPE cntl_simple_events.      " Events
    Create Docking Container
        FREE o_dock.
        CREATE OBJECT o_dock
          EXPORTING
            repid                       = sy-cprog
            dynnr                       = '0100'
            side                        = 1            " dock_at_left
            extension                   = 400
            lifetime                    = 1            " Dynpro
          EXCEPTIONS
            cntl_error                  = 1
            cntl_system_error           = 2
            create_error                = 3
            lifetime_error              = 4
            lifetime_dynpro_dynpro_link = 5
            OTHERS                      = 6.
        IF sy-subrc <> 0.
          MESSAGE 'Error creating Docking Container'(002) TYPE 'I'.
          LEAVE LIST-PROCESSING.
        ENDIF.
    Create Split Screen
        FREE: o_split,o_top,o_down.
        CREATE OBJECT o_split
          EXPORTING
            parent            = o_dock
            rows              = 2
            columns           = 1
          EXCEPTIONS
            cntl_error        = 1
            cntl_system_error = 2
            OTHERS            = 3.
        IF sy-subrc <> 0.
          MESSAGE 'Error creating Splitter Container'(003) TYPE 'I'.
          LEAVE LIST-PROCESSING.
        ENDIF.
    Set Sash Invisible
        o_split->set_row_sash( id    = 1
                              type  = o_split->type_sashvisible
                              value = o_split->false ).
    Set Row Height of 1st Container to fit Buttons
        o_split->set_row_height( id = 1 height = 5 ).
        o_top  = o_split->get_container( row = 1 column = 1 ).
        o_down = o_split->get_container( row = 2 column = 1 ).
    Create Toolbar
        CREATE OBJECT o_tlbar
          EXPORTING
            parent             = o_top
            lifetime           = 1
          EXCEPTIONS
            cntl_install_error = 1
            cntl_error         = 2
            cntb_wrong_version = 3
            OTHERS             = 4.
        IF sy-subrc <> 0.
          MESSAGE 'Error creating Toolbar'(004) TYPE 'I'.
          LEAVE LIST-PROCESSING.
        ENDIF.
    Add Buttons to the Toolbar
        CALL METHOD o_tlbar->add_button
          EXPORTING
            fcode            = 'KNA1'
            icon             = ' '
            butn_type        = 0
            text             = 'KNA1'
          EXCEPTIONS
            cntl_error       = 1
            cntb_btype_error = 2
            cntb_error_fcode = 3
            OTHERS           = 4.
        IF sy-subrc <> 0.
          MESSAGE 'Error creating Button on Toolbar'(005) TYPE 'I'.
          LEAVE LIST-PROCESSING.
        ENDIF.
        CALL METHOD o_tlbar->add_button
          EXPORTING
            fcode            = 'LFA1'
            icon             = ' '
            butn_type        = 0
            text             = 'LFA1'
          EXCEPTIONS
            cntl_error       = 1
            cntb_btype_error = 2
            cntb_error_fcode = 3
            OTHERS           = 4.
        IF sy-subrc <> 0.
          MESSAGE 'Error creating Button on Toolbar'(005) TYPE 'I'.
          LEAVE LIST-PROCESSING.
        ENDIF.
        CALL METHOD o_tlbar->add_button
          EXPORTING
            fcode            = 'EXIT'
            icon             = ' '
            butn_type        = 0
            text             = 'Exit'
          EXCEPTIONS
            cntl_error       = 1
            cntb_btype_error = 2
            cntb_error_fcode = 3
            OTHERS           = 4.
        IF sy-subrc <> 0.
          MESSAGE 'Error creating Button on Toolbar'(005) TYPE 'I'.
          LEAVE LIST-PROCESSING.
        ENDIF.
    Add Events
    register events for toolbar-control
        lw_evnt-eventid = o_tlbar->m_id_function_selected.
        APPEND lw_evnt TO li_evnt.
        o_tlbar->set_registered_events( li_evnt ).
    Create Event Handler
        CREATE OBJECT o_event.
        SET HANDLER o_event->on_click FOR o_tlbar.
      ENDMETHOD.                    "constructor
    ENDCLASS.                    "lcl_main IMPLEMENTATION
    *&      Module  STATUS_0100  OUTPUT
          Screen 100 Init
    MODULE status_0100 OUTPUT.
      IF o_main IS NOT BOUND.
        CREATE OBJECT o_main.
      ENDIF.
    ENDMODULE.                 " STATUS_0100  OUTPUT

  • Don't want split screen on Internet

    WHen I open up tje Internet through safari, a split screen comes up. The screen on the left  says  "shared links" . The message in the screen says "no shared links".   The top of the screen  has 3 icons:  a book, glasses and @ sign icons.
    The bottom lower right is 'Subscriptioms"
    THe right side is my internet page.e
    how do I get rid of the split screen when I open the Internet?
    thank you

    Tap the solid blue book at the very top to toggle the side bookmark column off. Tap it again to show the side column. It will change from solid blue to clear depending on if the side column is open or closed.

  • How can I disable the split screen in Safari in iOS 8?

    As a mature user, I need the entire screen so I can enlarge textwhile reading.  This split screen uses too much space for me.

    Thank you so much! I was unable to figure this out on my own, had gotten so frustrated with Safari as a result that I actually downloaded the Chrome app!
    Now if I can just get the same thing to work in the mail app I will be happy.
    ...and, it turns out it's even easier in mail, it's just the regular "expand" icon rather than the slightly less intuitive book icon. So: HAPPINESS!

  • HT1349 My wife's I pad #1 suddenly as a split screen for the keyboard. Weird. Out of the blue. Ideas???

    Help. Why des a split  screen keyboard come up all ofa sudden

    Pull the two ends of the keyboard together with your fingers - toward the middle of the screen. Or ... Tap and hold down on the little keyboard icon in the lower right corner of the keyboard and select - Dock and Merge.
    You can turn the feature off ....
    Settings>General>Keyboard>Split Keyboard>Off.

  • 27" iMac split screen problem?

    I went through the other threads but did not see a similar issue to this. I've had my iMac for a couple of weeks now with no problem. Today I was using it and this thick red/purple vertical stripe appeared all the way down the monitor, seemingly distorting my background image. After a few minutes the red bar went away but my screen now looks like a split screen with the left side being slightly darker than the right. The split screen only impacts the coloring, the Icons and everything still show up in the correct place. Has this issue been seen by anyone else?

    Check MacRumors there was a picture of an IMac with similar issues there.

  • I have a split screen with two site. All the suggestions are not working.

    Everytime I load Firefox, I get a split screen with two sites on it.
    I have tried the resetting of home page and clicking off the icon to not show the site selection page.
    I have facebook on the left and it cannot be expanded bigger than a panel. I have a 3/4 screen of what ever web site I wanted to load.
    How do I turn this off?
    Nothing is working and I cannot imagine how it happened.

    Can you attach a screenshot?
    *http://en.wikipedia.org/wiki/Screenshot
    *https://support.mozilla.org/kb/how-do-i-create-screenshot-my-problem
    Use a compressed image type like PNG or JPG to save the screenshot.
    Opening in the sidebar is the default for bookmarks that are created via a link or button on a website.<br />
    You can check the Properties of a bookmark via the right-click context menu in the sidebar (Ctrl+B; Cmd+B on Mac).<br />
    In the Bookmarks Manager (Bookmarks > Show All Bookmarks) you can click the More button in the Details pane at the bottom right.<br />
    Make sure that "Load this bookmark in the sidebar" is not selected.<br />

  • Using local/testing server with cs5 inserting images look fine in the split screen but do not show

    Hi
    If I open example: header.php and insert any photo jpeg/.html ecs i can see the images in the split screen but not in the browser if i save then refresh. I am able to make any change to the code ecs. and they are reflected just fine. I have tried this with my fireworks images .html and when that did not work i tried a strait jpeg off the desktop. This all did not work. I have deleted the local server then step by step created a new one via devnet instruction. This did not work! everything looks fine i even tried in 3 sep browsers with 0 luck....There is no remote server connected at this time because i am making a child theme for my current site. After all changes are done we will the ftp the word press files to site and change.
    Ps i even started over from scratch with 0 positive affects....

    After a lot of pain!!!!!!! the issue is fixed lol After 3 weeks I have overlooked the obvious !!! so the simple fix was the path of the image. Yes i feel stupid 10 years in lol....
    Apparently dreamweaver cs 5 will not use the full path when inserting images into the page example: If you drag the image out of your assets folder or however you do it, DW will give you a path like this <img src="images/glass.jpg" width="800" height="729"> This is not the full path and when your pist!!! you cant see things like that ;( so the image path should look like this:
    <img src="wp-content/themes/adszoom/images/glass.jpg" width="800" height="729">
    also in the html files example of bad then good!
    <!--======================== BEGIN COPYING THE HTML HERE ==========================-->
    <img name="navigation" src="navigation.gif" width="1000" height="50" border="0" usemap="#m_navigation" alt="">
    <map name="m_navigation">
      <area shape="poly" coords="804,7,994,7,994,47,804,47,804,7" href="http://adszoom.com/699-2/" title="SEARCH BY CATEGORIES FOR CLASSIFIED ADS" alt="SEARCH BY CATEGORIES FOR CLASSIFIED ADS" >
      <area shape="poly" coords="602,8,792,8,792,48,602,48,602,8" href="http://adszoom.com/wp-admin/edit.php/" title="VIEW OR EDIT YOUR CLASSIFIED ADS" alt="VIEW OR EDIT YOUR CLASSIFIED ADS" >
      <area shape="poly" coords="405,8,595,8,595,48,405,48,405,8" href="http://adszoom.com/post-an-ad/" title="NEW CLASSIFIED AD POST" alt="NEW CLASSIFIED AD POST" >
      <area shape="poly" coords="206,8,396,8,396,48,206,48,206,8" href="http://adszoom.com/help/" title="HELP WITH YOUR CLASSIFIED ADS" alt="HELP WITH YOUR CLASSIFIED ADS" >
      <area shape="poly" coords="3,9,193,9,193,49,3,49,3,9" href="http://adszoom.com/" title="HOME VIEW CLASSIFIED ADS" alt="HOME VIEW CLASSIFIED ADS" >
    </map>
    <!--========================= STOP COPYING THE HTML HERE =========================-->
    </body>
    NOW THE GOOD!
    <!--======================== BEGIN COPYING THE HTML HERE ==========================-->
    <img name="navigation" src="wp-content/themes/adszoom/images/navigation.gif" width="1000" height="50" border="0" usemap="#m_navigation" alt="">
    <map name="m_navigation">
      <area shape="poly" coords="804,7,994,7,994,47,804,47,804,7" href="http://adszoom.com/699-2/" title="SEARCH BY CATEGORIES FOR CLASSIFIED ADS" alt="SEARCH BY CATEGORIES FOR CLASSIFIED ADS" >
      <area shape="poly" coords="602,8,792,8,792,48,602,48,602,8" href="http://adszoom.com/wp-admin/edit.php/" title="VIEW OR EDIT YOUR CLASSIFIED ADS" alt="VIEW OR EDIT YOUR CLASSIFIED ADS" >
      <area shape="poly" coords="405,8,595,8,595,48,405,48,405,8" href="http://adszoom.com/post-an-ad/" title="NEW CLASSIFIED AD POST" alt="NEW CLASSIFIED AD POST" >
      <area shape="poly" coords="206,8,396,8,396,48,206,48,206,8" href="http://adszoom.com/help/" title="HELP WITH YOUR CLASSIFIED ADS" alt="HELP WITH YOUR CLASSIFIED ADS" >
      <area shape="poly" coords="3,9,193,9,193,49,3,49,3,9" href="http://adszoom.com/" title="HOME VIEW CLASSIFIED ADS" alt="HOME VIEW CLASSIFIED ADS" >
    </map>
    <!--========================= STOP COPYING THE HTML HERE =========================-->
    </body>
    THIS LINE IS YOUR ISSUE
    <img name="navigation" src="wp-content/themes/adszoom/images/navigation.gif" width="1000" height="50" border="0" usemap="#m_navigation" alt="">
    Ok thanks and if there are any issues with dw please ask: [email protected]

  • When using firefox and each time I open a new tab I end up with a split screen and it is annoying. How so I fix it.

    I open firefox. Go to website then where there is a + sign I open a new tab. A new tab comes up but then splits the screen into two with a new tab in the middle and I end up with 3 small split screens in the one instead of 3 separate tabs.because it is doing that i cannot then get a full screen and go about my usual business. Lately there seems to be numerous problems with fire fox loading also. it continues to come up with page not found and try again. I hit try again and then it may find the page. these are on sites that I access daily and have done so for several years now. Never before have I had so much trouble with fire fox. Not only I but we have four computers accessing the internet ...have done for some time and never had this problem but everyone is suddenly experiencing the same problem. The only thing new that has been put on the main computer is a K9 protection thing recently and I am wondering could that have anything to do with these issues and if not is fire fox having tech issues . How can these problems??

    Start Firefox in <u>[[Safe Mode]]</u> to check if one of the extensions is causing the problem (switch to the DEFAULT theme: Firefox (Tools) > Add-ons > Appearance/Themes).
    *Don't make any changes on the Safe mode start window.
    *https://support.mozilla.com/kb/Safe+Mode
    *https://support.mozilla.com/kb/Troubleshooting+extensions+and+themes

  • How do I do a split screen to show the contents of my Library and a playlist at the same time?

    I’m using iTunes 11.3.1 on a current generation Mac running OSX 10.9.4.
    I like to manually create playlists.  I want to be able to see the contents of a playlist and my library at the same time. Is there a way to do a split screen view in iTunes so the songs in my playlist show in one window and the library shows in another?

    See this thread -> https://discussions.apple.com/thread/5666364

  • CS4-How do I remove a split screen in the Program monitor window?

    I have Pro CS4 on a vista 64 OS. I am using the Mainstream encoders and my Program monitor window switches to a split screen every time I play the timeline. When I stop the playback, the screen returns to normal full screen with the last frame showing. When I start the playback again, the screen splits into two screens squishing the actual playback window to the left part of the monitor window. Any Ideas? Thanks.

    I found the solution by changing my quality settings (in the top right hand corner of the program display window) from "Automatic Quality" to "Highest Quality".
    I am not sure why it affects the display in this manner, but it just works this way and it is repeatable.
    I am working with 50 Mb MXF files from a Sony PDW900 HD camera.I use the Mainstream codecs to inport the files. I am using a Nvidia Quadro CX as a video card with the latest drivers. I first thought that the Mainstream codecs were affecting the display somehow, but then again, I do not remember changing these display settings. Thanks for the suggestions, I appreciate the response just the same...

  • Just want to ask about the full screen icon that used to be on the play bar but seems to have disappeared since upgrade to mountain lion, any way to get it back?

    Since upgrading to mountain lion I've noticed the full screen icon which used to be on the playback bar in quicktime has gone, I know you can go to the menus to make it full screen but if you're watching something online like with apple trailers I can't seem to make them fullscreen anymore, is it me or have they just taken this option away now?

    I've been playing the trailers in my browser and the full screen option has gone for me,
    As already stated, the icon was replaced by the "Share" pop-up menu icon in the same location.
    and the command-f keys don't work either when I'm playing in a browser and it's truly only been since I upgraded to mountain lion.
    Strange! It works for me. Here is a link to a screen recording of me wayching a trailer in Safari and later watching a trailer download. In both cases the trailer could be expsnded for full screen viewing and then reduced back to the size of the original 720p player display screen. If you can't do this then you may have a player problem also.
    http://downloads.walker4.me/downloads/Temporary_files/ScreenFlow_6.mov
    Why did apple make these changes when they worked perfectly the old way, I mean if it ain't broke don't fix it!
    Only Apple whould know for sure but my guess would be that other users may have requested the "Share" pop-up more. Makes no difference to me because I normally use the key shortcuts anyway.

  • My Built-in Webcam has my image in a horizontal split screen!

    My Built-in Webcam has my image in a horizontal split screen. How can I fix this???

    Let me explain more - when I use skype for example, my image is displayed in a horizontal split screen. I have tried another chat product and the same thing happens - so it must be something to do with the built in camera or configuration of the camera. Would it be best to contact Apple about this? Will somebody have to get a spanner out to fix my quite new macbook pro? (3 months old). I teach languages online so I really depend on a decent image. Can anybody help me?

  • I have an IPod 2nd generation I bought from a pawn shop.  It worked for a day but now when I try to charge it, it keeps switching back and forth from the large full screen icon of a low battery and a lighting bolt below to the blue screen with the apple s

    I have an IPod 2nd generation I bought from a pawn shop.  It worked for a day but now when I try to charge it, it keeps switching back and forth from the large full screen icon of a low battery and a lighting bolt below to the blue screen with the apple symbol in the middle.  I had it on charge all night but still dead.

    Try here.
    iPod touch: Hardware troubleshooting
    You may have a hardware problem.

Maybe you are looking for