Dell XPS 15 : Nvidia hardwired HDMI with multiple monitors with KDE

Hello everyone,
I did an Archlinux instalation a few months back in my Dell XPS 15 laptop and configured my Nvidia card with bumblebee and primusrun.
I have a extra monitor now and want to use dual monitors with my system.
I tryed the following guides for setting up the dual screens outputs without success:
https://wiki.archlinux.org/index.php/Bu … creenclone
https://wiki.archlinux.org/index.php/De … al_Display
THe output from the last try was this:
[chicao@svadisthana etc]$ startx
/usr/bin/Xorg.wrap: Only console users are allowed to run the X server
xinit: giving up
xinit: unable to connect to X server: Connection refused
xinit: server error
Couldn't get a file descriptor referring to the console
[chicao@svadisthana etc]$ sudo startx
xauth: file /root/.Xauthority does not exist
xauth: file /root/.Xauthority does not exist
X.Org X Server 1.16.2
Release Date: 2014-11-10
X Protocol Version 11, Revision 0
Build Operating System: Linux 3.17.2-1-ARCH x86_64
Current Operating System: Linux svadisthana 3.17.3-1-ARCH #1 SMP PREEMPT Fri Nov 14 23:13:48 CET 2014 x86_64
Kernel command line: BOOT_IMAGE=/boot/vmlinuz-linux root=UUID=40feb1b1-2717-4fee-89b9-e1e9cdd03278 rw quiet
Build Date: 10 November 2014 07:52:13PM
Current version of pixman: 0.32.6
Before reporting problems, check http://wiki.x.org
to make sure that you have the latest version.
Markers: (--) probed, (**) from config file, (==) default setting,
(++) from command line, (!!) notice, (II) informational,
(WW) warning, (EE) error, (NI) not implemented, (??) unknown.
(==) Log file: "/var/log/Xorg.1.log", Time: Thu Nov 27 11:56:17 2014
(==) Using config file: "/etc/X11/xorg.conf"
(==) Using system config directory "/usr/share/X11/xorg.conf.d"
removing GPU device /sys/devices/pci0000:00/0000:00:01.0/0000:01:00.0/drm/card1 /dev/dri/card1
/etc/X11/xinit/xinitrc: line 55: exec: xterm: not found
/etc/X11/xinit/xinitrc: line 51: twm: comando não encontrado
/etc/X11/xinit/xinitrc: line 52: xclock: comando não encontrado
xinit: connection to X server lost
waiting for X server to shut down (EE) Server terminated successfully (0). Closing log file.
My bumblebee.conf file:
# Configuration file for Bumblebee. Values should **not** be put between quotes
## Server options. Any change made in this section will need a server restart
# to take effect.
[bumblebeed]
# The secondary Xorg server DISPLAY number
VirtualDisplay=:8
# Should the unused Xorg server be kept running? Set this to true if waiting
# for X to be ready is too long and don't need power management at all.
KeepUnusedXServer=true
# The name of the Bumbleblee server group name (GID name)
ServerGroup=bumblebee
# Card power state at exit. Set to false if the card shoud be ON when Bumblebee
# server exits.
TurnCardOffAtExit=false
# The default behavior of '-f' option on optirun. If set to "true", '-f' will
# be ignored.
NoEcoModeOverride=false
# The Driver used by Bumblebee server. If this value is not set (or empty),
# auto-detection is performed. The available drivers are nvidia and nouveau
# (See also the driver-specific sections below)
Driver=
# Directory with a dummy config file to pass as a -configdir to secondary X
XorgConfDir=/etc/bumblebee/xorg.conf.d
## Client options. Will take effect on the next optirun executed.
[optirun]
# Acceleration/ rendering bridge, possible values are auto, virtualgl and
# primus.
Bridge=auto
# The method used for VirtualGL to transport frames between X servers.
# Possible values are proxy, jpeg, rgb, xv and yuv.
VGLTransport=proxy
# List of paths which are searched for the primus libGL.so.1 when using
# the primus bridge
PrimusLibraryPath=/usr/lib/primus:/usr/lib32/primus
# Should the program run under optirun even if Bumblebee server or nvidia card
# is not available?
AllowFallbackToIGC=false
# Driver-specific settings are grouped under [driver-NAME]. The sections are
# parsed if the Driver setting in [bumblebeed] is set to NAME (or if auto-
# detection resolves to NAME).
# PMMethod: method to use for saving power by disabling the nvidia card, valid
# values are: auto - automatically detect which PM method to use
# bbswitch - new in BB 3, recommended if available
# switcheroo - vga_switcheroo method, use at your own risk
# none - disable PM completely
# https://github.com/Bumblebee-Project/Bumblebee/wiki/Comparison-of-PM-methods
## Section with nvidia driver specific options, only parsed if Driver=nvidia
[driver-nvidia]
# Module name to load, defaults to Driver if empty or unset
KernelDriver=nvidia
PMMethod=none
# colon-separated path to the nvidia libraries
LibraryPath=/usr/lib/nvidia:/usr/lib32/nvidia
# comma-separated path of the directory containing nvidia_drv.so and the
# default Xorg modules path
XorgModulePath=/usr/lib/nvidia/xorg/,/usr/lib/xorg/modules
XorgConfFile=/etc/X11/xorg.conf
## Section with nouveau driver specific options, only parsed if Driver=nouveau
[driver-nouveau]
KernelDriver=nouveau
PMMethod=none
XorgConfFile=/etc/bumblebee/xorg.conf.nouveau
My /etc/X11/xorg.conf:
Section "ServerLayout"
Identifier "X.org Configured"
Screen 0 "Screen0" 0 0
Screen 1 "Screen1" RightOf "Screen0"
InputDevice "Mouse0" "CorePointer"
InputDevice "Keyboard0" "CoreKeyboard"
EndSection
Section "Files"
ModulePath "/usr/lib/xorg/modules"
FontPath "/usr/share/fonts/misc/"
FontPath "/usr/share/fonts/TTF/"
FontPath "/usr/share/fonts/Type1/"
FontPath "/usr/share/fonts/cyrillic"
FontPath "/usr/share/fonts/100dpi/"
FontPath "/usr/share/fonts/75dpi/"
EndSection
Section "Module"
Load "glx"
EndSection
Section "InputDevice"
Identifier "Keyboard0"
Driver "kbd"
EndSection
Section "InputDevice"
Identifier "Mouse0"
Driver "mouse"
Option "Protocol" "auto"
Option "Device" "/dev/input/mice"
Option "ZAxisMapping" "4 5 6 7"
EndSection
Section "Monitor"
Identifier "Monitor0"
VendorName "Monitor Vendor"
ModelName "Monitor Model"
EndSection
Section "Monitor"
Identifier "Monitor1"
VendorName "Monitor Vendor"
ModelName "Monitor Model"
EndSection
Section "Device"
Identifier "Card0"
Driver "nvidia"
BusID "PCI:1:0:0"
EndSection
Section "Device"
Identifier "Card1"
Driver "intel"
BusID "PCI:0:2:0"
EndSection
Section "Screen"
Identifier "Screen0"
Device "Card0"
Monitor "Monitor0"
SubSection "Display"
Viewport 0 0
Depth 1
EndSubSection
SubSection "Display"
Viewport 0 0
Depth 4
EndSubSection
SubSection "Display"
Viewport 0 0
Depth 8
EndSubSection
SubSection "Display"
Viewport 0 0
Depth 15
EndSubSection
SubSection "Display"
Viewport 0 0
Depth 16
EndSubSection
SubSection "Display"
Viewport 0 0
Depth 24
EndSubSection
EndSection
Section "Screen"
Identifier "Screen1"
Device "Card1"
Monitor "Monitor1"
SubSection "Display"
Viewport 0 0
Depth 1
EndSubSection
SubSection "Display"
Viewport 0 0
Depth 4
EndSubSection
SubSection "Display"
Viewport 0 0
Depth 8
EndSubSection
SubSection "Display"
Viewport 0 0
Depth 15
EndSubSection
SubSection "Display"
Viewport 0 0
Depth 16
EndSubSection
SubSection "Display"
Viewport 0 0
Depth 24
EndSubSection
EndSection
The X server is started by KDM. And don't know if there is some sort of way that I should configure KDE to start X with the bumblebee configuration.
Anyway, does somebody came across this kind of issue? How can I make my external and laptop screen work properly ?

I solved it by brute force:
pacman -Rdd libgl
(delete conflicting package without checking dependencies)
pacman -S nvidia nvidia-utils
And now I can watch high-quality video on a  big external TV through HDMI (driven by Nvidia card), while also independently using internal monitor.

Similar Messages

  • Can i have multiple monitor with my mac mini ?

    Can i have multiple monitor with my mac mini like i do with my PC ?  2 differents screens.. not mirror.

    There's lots of Mac Mini models since 2006 or so. What do you have?
    Most support two monitors but how you do it is different depending on model.
    Put this phrase into Google
            dual monitors, mac mini
    and you'll come up with the solution needed based on which MM you have.

  • [Non IE Regression] Support for full screen mode with multiple monitors

    This seems to be a regression with Flash Player v11.2.202.x (for all other browsers).
    With Internet Explorer it is still working.
    http://kb2.adobe.com/cps/890/cpsid_89050.html
    == Support for full screen mode with multiple monitors ==
    Full screen content will remain in full-screen on secondary monitors, allowing users to watch full-screen content while working on another display.
    Tested on Windows 7 x64 SP1 with:
    - Internet Explorer 9
    - Firefox Release, Beta, Aurora, Nightly
    - Opera 12 build 1116
    In bugbase.adobe.com I cannot choose v11.2.x

    Please vote for it If you have the same problem:
    https://bugbase.adobe.com/index.cfm?event=bug&id=3016912
    Thanks

  • Auto-Detect Screen Resolution Does Not Work Across Multiple Monitors With Different Resolutions

    Hi,
    The Acrobat Pro DC (15.007.20033.2203) auto-detect screen resolution feature does not work with multiple monitors at different resolutions.  Acrobat looks fine on my hidpi primary laptop display (Razr 14" 2014) but is completely unusable if I drag or extend the application to a standard HD resolution secondary monitor. Dragging Acrobat from my primary desktop display to the secondary display causes the UI elements to become 2x as large as they should be and makes Acrobat unusable. 
    Is there a way to make Acrobat auto-detect the display that it is currently on? 
    Thanks!
    -Donald

    To prevent it from happing again, you can
    1. go to the Mouse preference and turn off the scroll zoom feature.
    2. go to the Universal Access preference and disable the zoom features.

  • Web dynpro screen with multiple rows with columns that can be edited

    Web dynpro screen with multiple rows with columns that can be edited individually:
    Hi
    I am busy creating a screen in web dynpro for ABAP which we would like to make available via Portal ESS (Portal 7).
    I need to add 'n type of table (or almost something like Excel) or something in which someone can type a few paycode numbers (there should be lets say 10 blank rows in which info can be typed in and if I click on a button or so, more rows must be added if necessary.  Then in the other colums stuff like amounts must be entered which one should also be able to edit then and there.
    Can anyone assist in what I can use for this?  There does not seem to be some existing element that I can use.
    Help will be appreciated.
    Regards
    Debbie

    Hi Debbie,
    Whiel Creating table you need to be care full that use chose INPUT FIELD as the CELL EDITOR. Just guessing that if ur table is not editable u might have choosen TextView as default cell editor type.
    check link for details on TABLE UI
    [http://help.sap.com/saphelp_erp2005/helpdata/EN/b5/ac884118aa1709e10000000a155106/frameset.htm]
    easy way is to first add UI ELEMENT TABLE to your VIEW, then right click over it & select create binding from context. After you have a pop up where you can select what columns you want what should be its cell editor etc.
    Greetings
    Prashant

  • [svn] 949: Bug: BLZ-96 - When sending a HttpService request from ActionScript with multiple headers with the same name , it causes a ClassCastException in the server

    Revision: 949
    Author: [email protected]
    Date: 2008-03-27 07:12:59 -0700 (Thu, 27 Mar 2008)
    Log Message:
    Bug: BLZ-96 - When sending a HttpService request from ActionScript with multiple headers with the same name, it causes a ClassCastException in the server
    QA: Yes - try again with legacy-collection true and false.
    Doc: No
    Checkintests: Pass
    Details: Another try in fixing this bug. When legacy-collection is false, Actionscript Array on the client becomes Java Array on the server and my fix yesterday assumed this case. However, when legacy-collection is true, Actionscript Array becomes Java ArrayList on the server. So added code to handle this case.
    Ticket Links:
    http://bugs.adobe.com/jira/browse/BLZ-96
    Modified Paths:
    blazeds/branches/3.0.x/modules/proxy/src/java/flex/messaging/services/http/proxy/RequestF ilter.java

    Hi all!
    Just to post the solution to this if anyone ever runs accross this thread...
    For some reason i had it bad the first time, don't have time right now to see why but here is what worked for me:
    HashMap primaryFile = new HashMap();
    primaryFile.put("fileContent", bFile);
    primaryFile.put("fileName", uploadedFile.getFilename());
    operationBinding.getParamsMap().put("primaryFile", primaryFile);
    HashMap customDocMetadata = new HashMap();
    HashMap [] properties = new HashMap[1];
    HashMap customMetadataPropertyRoom = new HashMap();
    customMetadataPropertyRoom.put("name", "xRoom");
    customMetadataPropertyRoom.put("value", "SOME ROOM");
    properties[0] = customMetadataPropertyRoom;
    customDocMetadata.put("property", properties);
    operationBinding.getParamsMap().put("CustomDocMetaData", customDocMetadata);
    Basically an unbounded wsdl type is an array of objects (HashMaps), makes sense, i thought i had it like this before, must have messed up somewhere...
    Good luck all!

  • [svn] 931: Bug: BLZ-96 - When sending a HttpService request from ActionScript with multiple headers with the same name , it causes a ClassCastException in the server

    Revision: 931
    Author: [email protected]
    Date: 2008-03-26 11:31:01 -0700 (Wed, 26 Mar 2008)
    Log Message:
    Bug: BLZ-96 - When sending a HttpService request from ActionScript with multiple headers with the same name, it causes a ClassCastException in the server
    QA: Yes - we need automated tests for this basic case.
    Doc: No
    Checkintests: Pass
    Details: RequestFilter was not handling multiple headers with the same name properly.
    Ticket Links:
    http://bugs.adobe.com/jira/browse/BLZ-96
    Modified Paths:
    blazeds/branches/3.0.x/modules/proxy/src/java/flex/messaging/services/http/proxy/RequestF ilter.java

    Hi all!
    Just to post the solution to this if anyone ever runs accross this thread...
    For some reason i had it bad the first time, don't have time right now to see why but here is what worked for me:
    HashMap primaryFile = new HashMap();
    primaryFile.put("fileContent", bFile);
    primaryFile.put("fileName", uploadedFile.getFilename());
    operationBinding.getParamsMap().put("primaryFile", primaryFile);
    HashMap customDocMetadata = new HashMap();
    HashMap [] properties = new HashMap[1];
    HashMap customMetadataPropertyRoom = new HashMap();
    customMetadataPropertyRoom.put("name", "xRoom");
    customMetadataPropertyRoom.put("value", "SOME ROOM");
    properties[0] = customMetadataPropertyRoom;
    customDocMetadata.put("property", properties);
    operationBinding.getParamsMap().put("CustomDocMetaData", customDocMetadata);
    Basically an unbounded wsdl type is an array of objects (HashMaps), makes sense, i thought i had it like this before, must have messed up somewhere...
    Good luck all!

  • Let's Be Honest / Save Time: Lenovo T430s (NVIDIA) DOES NOT Support Multiple Monitors

    There have been a few comments / complaints / articles around the web regarding the T430s and difficulties using multiple monitors.
    But since this capabilitiy is clearly documented in all of Lenovo's specifications and marketing literature, I went ahead and bought an i7, NVIDIA, SSD, T430s with the docking station and all the bells and whistles to facilitate 3 or even 4 monitors.
    Well please listen and let's be clear:  IT DOES NOT WORK. Therefore, to be clear:
    DO NOT BUY THIS MACHINE AND DOCK IF YOU WANT IT TO LIVE UP TO ITS MULTI MONITOR PROMISE.
    In the two weeks since FedEx arrived, here is the deal:
    1) I fussed around with the dock and monitors at home and the office to no avail, for most of TWO weekends.  (I am not a beginner).
    2) Then, I spoke to Lenovo in Atlanta's tech support for THREE HOURS.  No results
    3) I spoke to Lenovo's "premium support" (paid) for FOUR HOURS.  No results.
    4) I consulted with a 3rd party expert on mulitple monitors who was kind enough to remote into my machine for another HOUR.  No results.
    5) Muliple parties have confirmed that yes, all hardware is working and yes, everything can be seen in device manager, and yes, the NVIDA card is properly switched on in the BIOS, yes I bought the i7 version etc.
    6) And just in case, yes, we wiped the drive clean for a factory reset, yes we unistalled and reinstalled all the drivers and yes, we even deleted the Lenovo driver just in case the NVIDIA driver was newer or better and yes, we double checked the settings in the BIOS again.
    7) Yes, we tried every connector in the dock AND the laptop:  VGA, DVI, DP and mini DP - in EVERY possible combination.
    And NO, IT STILL DOESN'T WORK. AT ALL.  Two screens, take your pick, but THAT'S IT.
    Finally, not one but TWO technicians asked me to not quote them (so I wont mention any names) but that in their opinion IT JUST DOESNT WORK AT ALL, EVER, despite Lenovo's claims / insistance that it is configured for 3 and even 4 monitors.
    So the final conclusion was only that Lenovo must have rushed this T430 spec / configuration / capability to market (including the glossy brochures!) before figuring out that something is missing in the handshake between the mother board and the NVIDIA card? 
    Or in the firmware re swithing between the Intel (internal) and NVIDA card? 
    Or something else which prevents the NVIDIA card from seeing the ports on the laptop or the dock?
    In summary 1) you get NOTHING from the NVIDIA upgrade and with respect to more than 2 monitors, IT JUST DOES NOT WORK, AT ALL, EVER, PERIOD and END OF STORY.
    I too am a die hard old school Thinkpad enthusiast and with the company's service could match their classic products.
    I have an X201 that I generall love, but would appreciate more speed, an SSD and I have to drive at least 3 external monitors, using at least 1920 x 1080 resolution.
    Perhaps a W series Thinkpad would work, but I also travel so going up to the T430s was already a sacrifice vs the small size of the X201.
    There are some 3rd party solutions but they are expensive and not so sure how plug and play they are with 3 or more monitors - what the T430s and Mini Dock 3.0 are SUPPOSED TO DO.  But they dont.
    Not giving up yet, but this has been a real bummer.
    PS
    Lenovo was very focused, efficient, and uncompromising when charging my CC for "premium" support.
    Solved!
    Go to Solution.

    Thors,
    Thank you and happy to report, albeit after all the hours and now weekend number 3:
    1) For the moment, I am able to repeat the 3 screen performance using mini DP from the Thinkpad and 2 DPs from the dock to the external monitors
    AND
    2) For the first time ever, I am just now for the first time running the 3rd external monitor from the VGA port on the dock.
    That is what I meant by using the various ports on the dock, so that the Thinkpad can simply be docked and undocked without connecting the mini DP - the purpose of a dock obviously.  As stated in other threads and articles, various configurations of the dock ports supposedly work to achieve 3 external screens, but until today was not able to do this.
    That is the good news and thank you for all help.
    The bad news is I stil have no clear idea why this has been so difficult, or where the problem lives that consumed so many hours of my own time and many hours with Lenovo tech support as stated above.
    Some success seems to have happened only after more than one set of LONG updates to Windows 7 (?)
    If I can replicate this set up the office (where I have 3 of the same monitors) I will be almost there.
    Thank you again to all for help and support.

  • Can you have multiple users working off the same Mac pro at the same time with multiple monitors but doing different things?

    I'm buying desktops for a start up company and was wondering if I could purchase a single Mac Pro and run multiple monitors to allow multiple users to work on the computer at the same time. These users would be doing different tasks but I would hope to accomplish that on a single desktop. I know that screen sharing is possible but with only one user controlling both of the screens. Thanks in advance, sorry for my apple ignorance!

    A lot of companies are buying or leasing laptops to be used at the office by day, and carried home at night.
    Some companies are doing "Bring your own device". Bring a device to receive email -- computer/smartphone/tablet you already have, or have an allowance to buy one for your use.
    If Capital is short (and when is it not) leasing computers, to be turned in a few years, can be a huge savings because the cost is expensed as incurred. The alternative is laying out cash today, but not being able to expense the cost this year. Instead, the computer expense must be recovered over their useful life (often five years) through depreciation.

  • You cannot shadow a session with multiple monitors enabled in Windows Server 2008 R2

    Searching through the forums (and according to KB2484290) it appears that there is no solution to this problem.  We are rolling out thin clients that are using dual monitors exclusively and we were very surprised to find out that we couldn't shadow
    sessions with dual monitors (which to us means that we can't shadow ANY sessions).  This now completely changes our approach to managing these devices. 
    We are running Windows Server 2008 R2 SP1 with Remote Desktop Services installed.  The thin clients are running Windows Embedded Standard 7 with the latest updates / RDP client. All steps have been followed to ensure that the apropriate settings and
    permissions have been set up to allow access into the session. 
    We tested by unchecking the RDP setting “use all my monitors for the remote session”, with that setting disabled shadowing worked
    Questions:
    1. KB2484290 is from Dec 2010 - It's now April 2012, is there a workaround / hotfix for this issue that will allow us to shadow sessions using the native Microsoft tools?
    2. Are there any recommended alternatives (software)?  Free/Paid - doesn't matter we just need something that will work.  I'm sure there are a few options out there but I am looking for suggestions for what people have used in the past that worked
    best for them to help us narrow down the choices.

    Hi,
    In my experience, so far, the workaround is Remote Assistance, Remote Assistance supports multiple monitors, and is the presently recommended solution if you need this functionality. Remote Assistance is a Windows Server Feature that must be explicitly installed
    on Windows Server 2008 R2; it is already installed with the client versions of the operating system.
    More information:
    Remote Assistance Overview
    http://technet.microsoft.com/en-us/library/cc753881.aspx
    Remote Assistance and Resulting Internet Communication in Windows Server 2008
    http://technet.microsoft.com/en-us/library/cc770456(v=ws.10).aspx
    As far as I know, there are some third-party tools can be used as the solution, such as Teamviewer, ISL Online, etc.
    Please Note: The third-party products discussed here are manufactured by companies that are independent of Microsoft. We make no warranty, implied or otherwise, regarding
    these products' performance or reliability.
    Regards,
    Dollar Wang
    Forum Support
    TechNet Subscriber Support
    If you are TechNet Subscription user and have any feedback on our support quality, please send your feedback
    here.
    Technology changes life……

  • Multiple Monitors with T440p and Pro Dock

    Hello:  I recently recieved my new business computer from our company offerings.  I got a T440p with the Pro Dock station.  Previously I had something similar that I got two years ago.  On the old system I was able to connect three monitors to the docking station (VGA, Digital, Display Port) and I could use any two at a time.  On the new system, if I plug anything into Display Port (even with that monitor turned off), the Digital port becomes disabled.  So I can't seem to use my "any two of three monitor" scheme without unplugging in one and plugging in another to the docking station.  Is there another solution for this? Thanks.  mbb.

    According to this: http://support.lenovo.com/us/en/documents/pd029622 I also have a Pro-dock (judging from the port layout) and it should be possible to use 3 monitors in any combination. But I can't get windows to activate VGA, DVI + Display Port. I got VGA + Mini Display Port + DVI working, but not reliably: When undocking and using the laptops build-in monitor, the multi display configuration can become invalid. Getting this configuration to work is a hassle, as multiple tries are needed and the configuration information in the Intel configuration dialog is wrong and the one in windows is ambiguous. Configuring Display Port + VGA works with-out problems. Display Port + DVI is difficult to achieve. Any help is approciated.

  • Use of HDMI (HDCP enabled) Monitor with MacBook

    Hi
    I’ve been searching the discussion boards to try and answer this but as I haven’t been able to get a definitive answer I will post my own thread (with apologies if I’ve missed a previous response that covers this)…
    I am about to purchase one of the new HP w2408h monitors which has VGA and HDMI (with HDCP) inputs:
    http://h10010.www1.hp.com/wwpc/uk/en/ho/WF05a/20491-314293-314303-314303-314303- 80644319.html
    My concern is that the HDCP will cause an issue when using this with my Macbook. The posts I’ve read so far talk about issues with TVs rather than monitors – does this make a difference?
    I would expect to be able to utilise the full 1920 x 1200 resolution, will this be possible?
    My plan is to use a DVI to HDMI cable via a mini DVI to DVI adaptor if this will do the job (as a fallback I could use VGA connections, but would much prefer to use the digital signal).
    Thanks in anticipation.

    OK, so I bit the bullet and ordered the monitor (HP had assured me it would work OK).
    Most importantly it does work, exactly as I wanted it to (MacBook recognised it immediately).
    In summary, the MacBook is connected via a DVI adaptor to a DVI to HDMI cable. I'm then passing the cable through a passive HDMI switching box (also connected to a PC) which is connected (via HDMI to HDMI) to the monitor.
    I'm using the MacBook in Extended Desktop mode with the external monitor running in its native 1920 by 1200 resolution - it looks great.
    I am able to flick between the MacBook and a PC using the switching box. When in PC display mode, the MacBook reverts to single screen mode.
    I am not using any HDCP encoding (as far as I know).
    Hope this info is of use.

  • How do you center dialogs with multiple monitors. code, best practices

    My existing code will take the pixel size of the java app, and using the size of the dialog, it will center dialogs perfectly in the center of the application. This is great for single monitors, but when multiple monitors are introduced it is a problem. With dual monitor, the dialog is split in half between the two monitors.
    I should be able to determine which pixel/frame initiated the user's action; and then i am hoping to get some code or direction on:
    1. how to determine which monitor the user initiated the action on (knowing the px or frame location, how would i do this)
    2. how to center dialog on that monitor
    if possible, it would be appreciated if you can provide some code; i cant find anything on determing pixel size of monitors and this seems to be a little bit of a project to do from scratch. open source, 3rd party, insight, guidance, all is appreciated. thanks !

    This code may help:
    import java.awt.*;
    import java.awt.event.*;
    import javax.swing.*;
    public class OptionPaneDemo {
        ActionListener al = new ActionListener() {
            public void actionPerformed(ActionEvent evt) {
                Component comp = (Component) evt.getSource();
                JFrame f = (JFrame) SwingUtilities.windowForComponent(comp);
                showDialogInUpperRightCorner(f);
        public static void main(String[] args) {
            EventQueue.invokeLater(new Runnable(){
                public void run() {
                    new OptionPaneDemo().go();
        void go() {
            GraphicsEnvironment ge = GraphicsEnvironment.getLocalGraphicsEnvironment();
            for(GraphicsDevice gd: ge.getScreenDevices()) {
                JButton showDialogButton = new JButton("show the dialog");
                showDialogButton.addActionListener(al);
                JFrame f = new JFrame(gd.getDefaultConfiguration());
                f.getContentPane().add(showDialogButton, BorderLayout.NORTH);
                f.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
                f.pack();
                centerWindow(f);
                f.setVisible(true);
        void centerWindow(Window w) {
            Rectangle windowBounds = w.getBounds();
            GraphicsConfiguration gc = w.getGraphicsConfiguration();
            Rectangle screenBounds = gc.getBounds();
            int x = screenBounds.x + (screenBounds.width - windowBounds.width)/2;
            int y = screenBounds.y + (screenBounds.height - windowBounds.height)/2;
            w.setLocation(x, y);
        void showDialogInUpperRightCorner(JFrame f) {
            JOptionPane pane = new JOptionPane("Hello, world!");
            JDialog dialog = pane.createDialog(f, "title");
            Rectangle dialogBounds = dialog.getBounds();
            GraphicsConfiguration gc = dialog.getGraphicsConfiguration();
            Rectangle screenBounds = gc.getBounds();
            //int x = screenBounds.x + screenBounds.width - dialogBounds.width;
            //int y = screenBounds.y == 0 ? 1 : screenBounds.y;
            int x = screenBounds.x;
            int y = screenBounds.y + screenBounds.height - dialogBounds.height-1;
            System.out.format("(%d,%d)%n", x, y);
            dialog.setLocation(x, y);
            dialog.setVisible(true);
    }

  • How can use full app with multiple monitor

    in Lion and Mountain Lion
    when i use Multiple Monitors and move any app in full-screen mode
    its become in one monitor and other monitor become blank
    but it seems usefull that other monitor show another app in fullscreen mode
    how can i do this ?
    and sorry for my bad english!!

    Sorry to say, but it is designed to work that way.
    The only way around it that I know of is, not to use full-screen but just fill the screen with the application that you are using.
    A

  • Bizarre crashing with Multiple Monitors in Win 7 64-bit.

    I am running InDesign CS 4.0.2 ME (4.0.4 has yet to be released) with 4 monitors running on 2 nvidia cards. I am having the most bizarre behaviour. After rebooting the computer, ID crashes on starting. The only way to get it to work is to first disable the second card, then it loads fine, the reenable the second card. ID will open and close without any problem until I reboot again!
    This is really strange.
    I used to have a similar problem on Vista where if ID was maximised on start it wouldn't load so I had to make the preference be that it didn't open full screen (1920 x 1200) and then it would work.
    It seems that Adobe would prefer us all to work on XP with a 17" monitor.
    On a similar front, in 64-bit Windows 7, the ID icon doesn't show. It's just a blank icon. The book icon works, as does, .idml etc., but an .indd simply doesn't appear in purple. This is unique to 64-bit Win 7, because under 32-bit it works fine.
    Most bizarre and quite irritating!

    All I can tell you is that I don't see this issue with the standard version of InDesign.
    It sounds to me like a video card/driver issue and that's where I'd be concentrating my efforts.
    Bob

Maybe you are looking for

  • Wee inconsistency in region template "Form Table Attributes"

    In the region template definition there is a field for specifying form table attributes. If I specify table attribute(s) they work as expected. If I then add an item type of "Stop and start table" to the region, the custom attributes are not used in

  • [SOLVED] xmonad installation - confused (?)

    After recovering from a failed xmonad installation, I thought it would be a good idea to post this.. Again, to everyone who helped with my other thread, I'm sorry if this is stupid. Every guide on installing xmonad is out of date. Or everyone that I

  • Po release strategy - if value decreased

    Dears, If the Po value is decreased, I need the release strategy to be re triggered. As I know in standard its not possible. But can you help Is there any BADI or user exits can be used to accomplish this task. Regards Kamesh

  • Link to IMG activity in documentation

    Hi all, within a documentation e.g. for data elements it is possible to create links to different object types (documentation of report, data elements, function modules etc.). It is also possible to define a link to IMG activities or more precisely t

  • Inter-VRF Route leakage

    Hi Guyz, I have 3 VRF's on VSS core. 1) VRF A 2) VRF B 3) Global VRF. I have Firewall in L3 mode between these VRFs. Traffic between A & B have to cross firewall.  i can use BGP or EVN to leak routes between VRFs,  but they leak only routes tht are p