MetaModes, how do I use them? :)

Hello,
I have a dualscreen setup, and that's a problem when I'm gonna play a game...
The most games just want to use both of my screens. And I don't want that. :+
Before I did a re-installation (switcht to 64bits) I did some magic with the metamodes in my xorg.conf file but I can't figure out what I did.
My current metamode line:
Option         "metamodes" "CRT-0: 1280x1024_75 +0+0, CRT-1: 1280x1024_75 +1280+0"
And now I need one that turns my right screen off... tried a lot but everything I do breaks xorg. :S
Can someone help me? :-)
My current xorg.conf is generated with the nvidia x server settings application.
Last edited by WernerL (2008-07-09 12:51:37)

this is my metamodes:
Option "metamodes" "CRT-0: 1280x1024_75 +0+0, CRT-1: 1280x1024_75 +1280+0; CRT-0: 1280x1024 +0+0; CRT-0: 1024x768 +0+0; CRT-0: 800x600 +0+0; CRT-0: 640x480 +0+0"
lucky for you i also turn the right screen of
when you have added it and restarted x run xrandr if it says:
Screen 0: minimum 640 x 480, current 2560 x 1024, maximum 2560 x 1024
default connected 2560x1024+0+0 0mm x 0mm
2560x1024 50.0*
1280x1024 51.0
1024x768 52.0
800x600 53.0
640x480 54.0
or something close to that it should work
be aware though that it isnt flawless if a game wants 1280x1024 it will turn the right screen of but everything on it will end up to the right of the main screen so if you put your
mouse to the right edge of the screen it will scroll to show whats actually there to get around that add;
xrandr -s 1
before the game executable and
xrandr -s 0
after it that way it (should) change resolution and then start game and when you quit the game it will go back to the normal one
of course xrandr -s 1
is for the 1280x1024 res so for say 640x480 (if you play starcraft) you enter:
xrandr -s 4
Last edited by INCSlayer (2008-07-10 13:28:03)

Similar Messages

  • I bought an album from iTunes with ringtones and text message tones but how do I use them on the iPhone

    I bought an album from iTunes containing text and ringtones but I cannot access them in the iPhone settings. How can I use them for individual family and friends?

    Delete the current copies and then download again (free) from your purchased history. If the problem persists contact iTunes Store support staff through the report a problem links in your account history.
    tt2

  • Where do I use These lock object FM's (Enqueue & D? and How do I use them?

    I created lock object for user defined table (zconsist). The system automatically created 2 FM's (Enquiue & Dequeue).
    I created a new TCode and accessing this with mulitple users to do some updates and inserts in that above table.
    I used INSERT ZCONSIST statement in 5 places in my program (4 include programs).
    Where do I use These FM's? and How do I use them?
    I mean before inserting which FM I need to use? after immediately what fm used?.
    every insert statemnt before i need to use the respective fm? so 5 places i need to call the respective FM is it right?
    thank in advance.

    Hi Sekhar,
    Lock objects are use in SAP to avoid the inconsistancy at the time of data is being insert/change into database.
    SAP Provide three type of Lock objects.
    Read Lock(Shared Locked)
    protects read access to an object. The read lock allows other transactions read access but not write access to
    the locked area of the table
    Write Lock(exclusive lock)
    protects write access to an object. The write lock allows other transactions neither read nor write access to
    the locked area of the table.
    Enhanced write lock (exclusive lock without cumulating)
    works like a write lock except that the enhanced write lock also protects from further accesses from the
    same transaction.
    You can create a lock on a object of SAP thorugh transaction SE11 and enter any meaningful name start with EZ Example EZTEST_LOCK.
    Use: you can see in almost all transaction when you are open an object in Change mode SAP could not allow to any other user to open the same object in change mode.
    Example: in HR when we are enter a personal number in master data maintainance screen SAP can't allow to any other user to use same personal number for changes.
    Technicaly:
    When you create a lock object System automatically creat two function module.
    1. ENQUEUE_<Lockobject name>. to insert the object in a queue.
    2. DEQUEUE_<Lockobject name>. To remove the object is being queued through above FM.
    You have to use these function module in your program.
    check this link for example.
    http://help.sap.com/saphelp_nw04s/helpdata/en/cf/21eea5446011d189700000e8322d00/content.htm
    tables:vbak.
    call function 'ENQUEUE_EZLOCK3'
    exporting
    mode_vbak = 'E'
    mandt = sy-mandt
    vbeln = vbak-vbeln
    X_VBELN = ' '
    _SCOPE = '2'
    _WAIT = ' '
    _COLLECT = ' '
    EXCEPTIONS
    FOREIGN_LOCK = 1
    SYSTEM_FAILURE = 2
    OTHERS = 3
    if sy-subrc 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
    WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    endif.
    Normally ABAPers will create the Lock objects, because we know when to lock and how to lock and where to lock the Object then after completing our updations we unlock the Objects in the Tables
    http://help.sap.com/saphelp_nw04s/helpdata/en/cf/21eea5446011d189700000e8322d00/content.htm
    purpose: If multiple user try to access a database object, inconsistency may occer. To avoid that inconsistency and to let multiple user give the accessibility of the database objects the locking mechanism is used.
    Steps: first we create a loc object in se11 . Suppose for a table mara. It will create two functional module.:
    1. enque_lockobject
    1. deque_lockobject
    before updating any table first we lock the table by calling enque_lockobject fm and then after updating we release the lock by deque_lockobject.
    http://help.sap.com/saphelp_nw04/helpdata/en/cf/21eea5446011d189700000e8322d00/content.htm
    GO TO SE11
    Select the radio button "Lock object"..
    Give the name starts with EZ or EY..
    Example: EYTEST
    Press Create button..
    Give the short description..
    Example: Lock object for table ZTABLE..
    In the tables tab..Give the table name..
    Example: ZTABLE
    Save and generate..
    Your lock object is now created..You can see the LOCK MODULES..
    In the menu ..GOTO -> LOCK MODULES..There you can see the ENQUEUE and DEQUEUE function
    Lock objects:
    http://www.sap-img.com/abap/type-and-uses-of-lock-objects-in-sap.htm
    http://help.sap.com/saphelp_nw04s/helpdata/en/cf/21eea5446011d189700000e8322d00/content.htm
    Match Code Objects:
    http://help.sap.com/saphelp_nw2004s/helpdata/en/41/f6b237fec48c67e10000009b38f8cf/content.htm
    http://searchsap.techtarget.com/tip/0,289483,sid21_gci553386,00.html
    See this link:
    http://www.sap-img.com/abap/type-and-uses-of-lock-objects-in-sap.htm
    Check these links -
    lock objects
    Lock Objects
    Lock Objects
    kindly reward if found helpful.
    cheers,
    Hema.

  • What is the use of control breaks in reoprts?how can we use them in report?

    hello all
    what is the use of control breaks in reoprts? and how can we use them in reports?

    hi,
    check this sample program using control break statements.
    *& Report  Y777_CBSTABLE
    REPORT  Y777_CBSTABLE1.
    TYPES:
    BEGIN OF S_MARKS,
         ROLLNO    TYPE I,
         SCODE(3)  TYPE C,
        ROLLNO    TYPE I,
         SNAME(10) TYPE C,
         MARKS     TYPE I,
    END OF S_MARKS.
    DATA : C TYPE I,
           D(3) TYPE C,
           TOT TYPE I,
           STU TYPE I,
           MARKS TYPE STANDARD TABLE OF S_MARKS,
           WA_MARKS TYPE S_MARKS.
    WA_MARKS-ROLLNO = 1.
    WA_MARKS-SCODE  = 'MAT'.
    WA_MARKS-SNAME  = 'MATHS'.
    WA_MARKS-MARKS  = 65.
    APPEND WA_MARKS TO MARKS.
    CLEAR WA_MARKS.
    WA_MARKS-ROLLNO = 1.
    WA_MARKS-SCODE  = 'SCI'.
    WA_MARKS-SNAME  = 'SCIENCE'.
    WA_MARKS-MARKS  = 85.
    APPEND WA_MARKS TO MARKS.
    CLEAR WA_MARKS.
    WA_MARKS-ROLLNO = 1.
    WA_MARKS-SCODE  = 'COM'.
    WA_MARKS-SNAME  = 'COMPUTER'.
    WA_MARKS-MARKS  = 90.
    APPEND WA_MARKS TO MARKS.
    CLEAR WA_MARKS.
    WA_MARKS-ROLLNO = 2.
    WA_MARKS-SCODE  = 'MAT'.
    WA_MARKS-SNAME  = 'MATHS'.
    WA_MARKS-MARKS  = 55.
    APPEND WA_MARKS TO MARKS.
    CLEAR WA_MARKS.
    WA_MARKS-ROLLNO = 2.
    WA_MARKS-SCODE  = 'SCI'.
    WA_MARKS-SNAME  = 'SCIENCE'.
    WA_MARKS-MARKS  = 75.
    APPEND WA_MARKS TO MARKS.
    CLEAR WA_MARKS.
    WA_MARKS-ROLLNO = 2.
    WA_MARKS-SCODE  = 'COM'.
    WA_MARKS-SNAME  = 'COMPUTER'.
    WA_MARKS-MARKS  = 80.
    APPEND WA_MARKS TO MARKS.
    CLEAR WA_MARKS.
    RETRIVAL ************************************
    SORT MARKS BY SCODE .
    LOOP AT MARKS INTO WA_MARKS.
        AT FIRST .
           ULINE.
           FORMAT COLOR 6 ON.
           WRITE:/ 'SUBJECT CODE', 65 ' ' .
           FORMAT RESET.
           FORMAT COLOR 6 ON INTENSIFIED OFF.
           WRITE:/20 'ROLL NO',
                  40 'SUBJECT NAME',
                  55 'MARKS',
                  65 ' '.
           FORMAT RESET.
           ULINE.
        ENDAT.
        ON CHANGE OF WA_MARKS-SCODE.
           IF SY-TABIX NE 1.
               NEW-LINE.
               ULINE 40(25).
               FORMAT COLOR 5 ON INVERSE ON INTENSIFIED ON.
               TOT = TOT / STU.
               WRITE:/40 'AVERAGE MARKS =', TOT.
               FORMAT RESET.
               CLEAR TOT.
               CLEAR STU.
           ENDIF.
          FORMAT COLOR 6 ON INTENSIFIED ON.
          WRITE:/ WA_MARKS-SCODE.
          FORMAT RESET.
        ENDON.
        FORMAT COLOR 6 ON INTENSIFIED OFF.
        WRITE:/20 WA_MARKS-ROLLNO,
               40 WA_MARKS-SNAME,
               55 WA_MARKS-MARKS,
               65 ' '.
        FORMAT RESET.
        STU = STU + 1.
        TOT = TOT + WA_MARKS-MARKS.
        C = STU.
        AT LAST.
               NEW-LINE.
               ULINE 40(25).
               FORMAT COLOR 5 ON INVERSE ON INTENSIFIED ON.
               TOT = TOT / STU.
               WRITE:/40 'AVERAGE MARKS =', TOT.
               FORMAT RESET.
               CLEAR TOT.
               CLEAR STU.
             ULINE.
             FORMAT COLOR 6 ON INVERSE ON INTENSIFIED ON.
             WRITE:/ ' TOTAL STUDENTS : ', C.
             FORMAT RESET.
        ENDAT.
    ENDLOOP.
    reward points if hlpful.

  • What is the use of control breaks in reoprts?  and how can we use them?

    hello all
    what is the use of control breaks in reoprts? and how can we use them in reports?

    use F1 on AT in a program.
    You get this
    Control break with extracts
    - AT NEW f.
    - AT END OF f.
    - AT FIRST.
    - AT LAST.
    - AT fg.
    Control break with internal tables
    - AT NEW f.
    - AT END OF f.
    - AT FIRST.
    - AT LAST.
    Each of these have a link to explain in detail what you are asking.

  • What are muse templates and how do i use them?

    what are muse templates and how do i use them?

    thank you for the information. the reason i am asking is that i am having a problem with a website i am building in muse, specifically the functionality of my accordion menu. the accordion menu is on the left side of the page with a couple of elements directly beneath it. i would like the elements directly below the accordion menu to be pushed down when the menu is opened, however the menu is pushing everything on the page that is below down when it is opened. i have attached images to illustrate what i am talking about. is there any way that i can have the accordion menu push down just the elements directly below down and ignore all of the other elements on the page?

  • What is webdynpro? What is webdynpro iview? How can I use them?

    Hi,
    What is webdynpro? What is webdynpro iview? How can I use them?
    Is there any .pdf describe it?
    Thanks.

    If these are items listed on your account as features, I think there are supposed to be there.
    I know I have that dynamic IP address one for my smartphone. So I suspect it is associated with the smartphone provisioning.
    The mobile hotspot provisioning would depend on what kind of plan you have.
    The pay per message is probably associated with your text messages so your phone will receive and send them.
    The other one I'm not sure about, but it could be something associated with the SIM card.

  • I have my mac pro with the keyboard in spanish and i didn't knew that it was going to be a big problem because i can't use the key pads the way they are printed, how can i use them the way they r printed?

    i have my mac pro with the keyboard in spanish and i didn't knew that it was going to be a big problem because i can't use the key pads the way they are printed, how can i use them the way they are printed?

    why can't you use the keyboard the way it is printed?

  • I have two movie credits on my iTunes account. What are credits, and how can I use them?

    I have two movie credits on my iTunes account. What are credits, and how can I use them?

    You have a Puerto Rico address on your account ? From a quick search I've found one site from somebody in Puerto Rico that includes a screenshot for an app receipt showing tax of 7 cents added to a 99 cent purchase. Are you able to view the purchase history on the account that you've been using, and see what prices show on them (e.g. if the store's listed price or price plus tax) : Store > View Account menu option on a computer's iTunes, then 'see all' link next to the Purchase History section.

  • HT2534 I bought 2 apple store prepaid card , how can i use them if i live in saudi arabia ?

    I bought 2 prepaid card and when i tried to use them the told me this is just for us app store , i live in saudi arabia so how can i use them ???

    Pre paid cards are not accepted ...
    iTunes Store: Accepted forms of payment

  • Want to setup collections, how do you use them?

    Now that I have all of my photos imported into LR and in the process of applying metadata, i would like to implement Collections. This would all be for family/travel related photos and I was curious how others are using them. So if you could please share a short description of how you are using them, that would be great.

    dj paige covered the mechanics of setting up a hierarchy. The details, I think, depend on how you think you will want to search in the future. With your example I'd set up a hierarchy like this:
    [PEOPLE]
         Family
              Baby
           Colleagues
              Lee
              Mike (Michael)
           Friends
              Ann
              Bill
    [EVENTS]
         Holidays
              Christmas
              Songkran
    [PLACES]
         Asia
              Singapore
              Thailand
         USA
              Hawaii (HI)
                   Maui
              Michigan (MI)
                   Detroit
    and so on. The keywords in brackets / capital letters are not exported - they are just for organization. I put possible synonyms in parentheses (..).
    I don't include dates because they're already in the metadata and you can easily filter for them or create Smart Collections.
    I would give all pictures of Baby the "Baby" keyword and then create a Smart Collection for "Best Baby Pics" (>= 4 stars).
    I actually posted a snapshot of my hierarchy at http://bkkphotographer.wordpress.com/2009/08/24/controlled-vocabulary/ so you can see what a compulsive keyworder will do. And http://bkkphotographer.wordpress.com/tag/keyword/ has a lot of comments and experiences on keywording in LR.
    Best of luck.
    Ian

  • Yoga 3 Pro - Certain Keys Missing from Keyboard. How to virtually use them?

    Hi.
    I have bought this for about a week and was not happy about the combination of "Home" and "End" keys since I use them a lot. In using VMWare I noticed there is no "Insert" key on the keyboard at all, thus I cannot use the Ctrl+Alt+Insert functionality in my virtual machines. Today, a random combination of keys was pressed on the keyboard and the "Scroll Lock" was enabled, and guess what: There is no scroll lock in the Yoga 3 Pro! Now I have no idea how to disable this again and non of the forums or manuals have addressed this.
    (Lenovo design team has made is specifically hard for users. Not only the keyboard layout and certain keys are removed, but even I cannot find a spare chargin cable for my officec. They have changed everything - even Yoga 2 Pro charging cable is not compatible - and yet not available in the market. Not a very smart strategy )
    Solved!
    Go to Solution.

    Welcome to the forum!
    I'm sorry to hear about your problem. I had to really take a look at my own Y3P to realize there is no Insert key, I guess I got too used to the touchscreen 
    To get rid of the Scroll Lock you can press the combination Fn+C.
    Alternatively you can also go to the Control Panel, then "Easy of Access Center" and start the On-Screen Keyboard, you can disable the Scroll lock from there too.
    /L40SX/240/240X/2*340CSE/360PE/365XD/380D/380E/380XD/380Z/390/560E/560X/2*570/2*600/600E/750Cs/755C/760CD/760EL/760XD/770E/A20p/A22p
    A31/i1600/G40/R50p/R61i/S30/SL510/2*T22/4*T4x/11*T6x/6*T4x0x/6*T5x0/3*W5x0/W700/3*X2x/4*X3x/3*X4x/5*X6x/3*X6xT/10*X2xx/2*X200T/4*X30x/Z60m/3*Z61x
    Comunidad en Español  English Community  Deutsche Community   Русскоязычное Сообщество

  • Events: what do they mean and how can I use them?

    Hi everybody,
    I'm new to this, so it's maybe a silly question. I can't understand what an event on iPhoto is and I don't know how to use it: for example I'm used to take photos with my mobile now and then so the pictures are not related to an event in particular like a birthday or a travel. They are just everyday pictures. So how can I manage them?
    Again: I have some big folders of pictures related to some job experiences abroad. In that case the event is just "Germany job" for example? When I import the pictures iPhoto automatically create an event for each date of the folder, so it becomes boring to rename every single event.
    Thank you very much

    I'm new to this, so it's maybe a silly question. I can't understand what an event on iPhoto is and I don't know how to use it: for example I'm used to take photos with my mobile now and then so the pictures are not related to an event in particular like a birthday or a travel. They are just everyday pictures. So how can I manage them?
    Don't get hung up on the Word 'Event'. I have Evetss called Spring 08, Autumn-Winter 05 and so on. An Event is just a Folder of pictures. They can mean whatever you want them to mean. When you import from a camera iPhoto will break the pics into Folders of Days, called Events.
    Again: I have some big folders of pictures related to some job experiences abroad. In that case the event is just "Germany job" for example? When I import the pictures iPhoto automatically create an event for each date of the folder, so it becomes boring to rename every single event
    iPhoto -> Preferences -> Events: Uncheck the box at "Imported Items from the Finder"
    Now iPhoto will not attempt to split the Folders of Images.
    Regards
    TD

  • Tags...how do YOU use them?

    I'm using Lightroom since first edition and also the tags. But I still find it strange that it should be such a tedious job to use them. I mean...when I think of a new tag I have to go over all of my 40,000 photographes to see if they fit the tag. That's why I generally stick to my 20 or so tags because else the database wouldn't be right. But more tags give more specific hits in a search. So I'm wondering how other users use tags and especially what do you do when you come up with a new tag?

    I assign tags initially at import. I have some tags that belong in a hierarchy and some that sit outside (at the top level).
    So, for travel stuff I have /travel/Malaysia/Kuching for example and this  contains some tags specific to Kuching (buildings which occur only there, say).
    I also have another set /buildings/religious which contains tags like Buddhist Temple and Anglican Cathedral and so on.
    When importing on the main (desktop) machine, I use the keyword list gadget.
    When travelling I import to LR3 on a netbook (runs ok with 1GB on that!). Then I just type keywords into the box and I don't worry about hierarchy.
    When I get home and import the netbook catalogue, I drag-and-drop the keywords that have appeared at the top level to where they really belong in the hierarchy.
    It is at this stage that I try to remember to create collections as I go.
    If I wasn't too lazy, I'd type the hierarchy at first import; I can never remember the syntax!
    This may sound a bit weird but it works for me. If I shot 1000 per day instead of about 1000 per month, I'd have to get really organised.

  • How do you add plug ins to adobe and once you do how do you use them

    I have tried to add plug ins but with no success if i can do this how then do i go about using them alongside adobe elements 13

    I suppose I should have explained what I was trying to do and it would have made more sense. I am trying to add ES2 oscillators to some Apple bass loops and the I/O on the channel strip has no more spaces when using Apple loops. I don't know why this would be impossible without creating a new channel, strip, instrument, etc. It seems like a pretty simple request; Apple bass loop + ES2 oscillation effects...

Maybe you are looking for