LinuxQuestions.org
Download your favorite Linux distribution at LQ ISO.
Home Forums Tutorials Articles Register
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Desktop
User Name
Password
Linux - Desktop This forum is for the discussion of all Linux Software used in a desktop context.

Notices


Reply
  Search this Thread
Old 03-21-2017, 01:23 PM   #1
273
LQ Addict
 
Registered: Dec 2011
Location: UK
Distribution: Debian Sid AMD64, Raspbian Wheezy, various VMs
Posts: 7,680

Rep: Reputation: 2373Reputation: 2373Reputation: 2373Reputation: 2373Reputation: 2373Reputation: 2373Reputation: 2373Reputation: 2373Reputation: 2373Reputation: 2373Reputation: 2373
Using KDE with two monitors with NVDIA proprietary drivers?


I've been using XFCE for a fair while now setting my monitors as seperate X screens with no Xinerama or anything like that. It means that applications are stuck on the monitor they open on (as it's the X11 display, 0.0 or 0.1) and lets me play a game full screen on one monitor whilst watching a video full screen on the other.
When I try KDE with my current setup I can only use one screen but can move my mouse to the second.
What are my options for using KDE with a dual monitor setup on NVIDIA card with binary blob drivers?

Last edited by 273; 03-21-2017 at 01:43 PM. Reason: Typo's.
 
Old 03-21-2017, 02:02 PM   #2
John VV
LQ Muse
 
Registered: Aug 2005
Location: A2 area Mi.
Posts: 17,624

Rep: Reputation: 2651Reputation: 2651Reputation: 2651Reputation: 2651Reputation: 2651Reputation: 2651Reputation: 2651Reputation: 2651Reputation: 2651Reputation: 2651Reputation: 2651
some of the monitor settings are in the eye candy effects in KDE
you can set it so that a window or virtual desktop can be slid from one to a different monitor

i like kde but there are a bit too many settings

kickoff / applications / settings / "configure desktop"

under "workspace" is "desktop behavior "

and under "hardware" is "display and monitor"
 
Old 03-21-2017, 02:05 PM   #3
273
LQ Addict
 
Registered: Dec 2011
Location: UK
Distribution: Debian Sid AMD64, Raspbian Wheezy, various VMs
Posts: 7,680

Original Poster
Rep: Reputation: 2373Reputation: 2373Reputation: 2373Reputation: 2373Reputation: 2373Reputation: 2373Reputation: 2373Reputation: 2373Reputation: 2373Reputation: 2373Reputation: 2373
Could I, for example, run two fullscreen games at the same time?
I'm more worried about baing able to set programs to run full screen without any interference with the other screen.
 
Old 03-22-2017, 09:24 AM   #4
allend
LQ 5k Club
 
Registered: Oct 2003
Location: Melbourne
Distribution: Slackware64-15.0
Posts: 6,371

Rep: Reputation: 2749Reputation: 2749Reputation: 2749Reputation: 2749Reputation: 2749Reputation: 2749Reputation: 2749Reputation: 2749Reputation: 2749Reputation: 2749Reputation: 2749
This is an example xorg.conf file for a setup using an nVidia proprietary driver with a left monitor identified as DFP-0 and a right monitor identified as CRT-0.
Code:
Section "ServerFlags"
    Option "DefaultServerLayout"     "Layout3"
EndSection

Section "ServerLayout"
    Identifier     "Layout0"
    Screen      0  "Screen0" 0 0
EndSection

Section "ServerLayout"
    Identifier     "Layout1"
    Screen      0  "Screen1" 0 0
EndSection

Section "ServerLayout"
    Identifier     "Layout2"
    Screen      0  "Screen3" 0 0
EndSection

Section "ServerLayout"
    Identifier     "Layout3"
    Screen      0  "Screen0" 0 0
    Screen      1  "Screen2" RightOf "Screen0"
EndSection

Section "Device"
    Identifier     "Device0"
    Driver         "nvidia"
    VendorName     "NVIDIA Corporation"
    BoardName      <your board>
    BusID          <your BusID>
    Screen          0
EndSection

Section "Device"
    Identifier     "Device1"
    Driver         "nvidia"
    VendorName     "NVIDIA Corporation"
    BoardName      <your board>
    BusID          <your BusID>
    Screen          1
EndSection

Section "Screen"
    Identifier     "Screen0"
    Device         "Device0"
    Monitor        "Monitor0"
    DefaultDepth    24
    Option         "TwinView" "Off"
    Option         "UseDisplayDevice" "DFP-0"
    Option         "metamodes" "DFP: nvidia-auto-select +0+0"
    SubSection     "Display"
        Depth       24
    EndSubSection
EndSection

Section "Screen"
    Identifier     "Screen1"
    Device         "Device0"
    Monitor        "Monitor1"
    DefaultDepth    24
    Option         "TwinView" "Off"
    Option         "UseDisplayDevice" "CRT-0"
    Option         "metamodes" "CRT: nvidia-auto-select +0+0"
    SubSection     "Display"
        Depth       24
    EndSubSection
EndSection

Section "Screen"
    Identifier     "Screen2"
    Device         "Device1"
    Monitor        "Monitor1"
    DefaultDepth    24
    Option         "TwinView" "Off"
    Option         "UseDisplayDevice" "CRT-0"
    Option         "metamodes" "CRT: nvidia-auto-select +0+0"
    SubSection     "Display"
        Depth       24
    EndSubSection
EndSection

Section "Screen"
    Identifier     "Screen3"
    Device         "Device0"
    Monitor        "Monitor0"
    DefaultDepth    24
    Option         "TwinView" "On"
    Option         "UseDisplayDevice" "CRT-0, DFP-0"
    Option         "metamodes" "DFP: nvidia-auto-select +0+0, CRT: nvidia-auto-select +1280+0"
    SubSection     "Display"
        Depth       24
    EndSubSection
EndSection

Section "Monitor"
    Identifier     "Monitor0"
EndSection

Section "Monitor"
    Identifier     "Monitor1"
EndSection

Section "Extensions"
    Option         "Composite" "Enable"
EndSection
Using server "Layout0", only the left monitor is used.
Using server "Layout1", only the right monitor is used.
Using server "Layout2", the left and right monitors are used as a single screen.
Using server "Layout3" (the default), the left and right monitors are used as a separate screens.
 
Old 03-22-2017, 01:18 PM   #5
273
LQ Addict
 
Registered: Dec 2011
Location: UK
Distribution: Debian Sid AMD64, Raspbian Wheezy, various VMs
Posts: 7,680

Original Poster
Rep: Reputation: 2373Reputation: 2373Reputation: 2373Reputation: 2373Reputation: 2373Reputation: 2373Reputation: 2373Reputation: 2373Reputation: 2373Reputation: 2373Reputation: 2373
Quote:
Originally Posted by allend View Post
Using server "Layout3" (the default), the left and right monitors are used as a separate screens.
That looks a lot likle my xorg.conf -- how does one get KDE to use that?
 
Old 03-22-2017, 04:53 PM   #6
allend
LQ 5k Club
 
Registered: Oct 2003
Location: Melbourne
Distribution: Slackware64-15.0
Posts: 6,371

Rep: Reputation: 2749Reputation: 2749Reputation: 2749Reputation: 2749Reputation: 2749Reputation: 2749Reputation: 2749Reputation: 2749Reputation: 2749Reputation: 2749Reputation: 2749
Unfortunately, KDE no longer respects layouts in xorg.conf.
When I want separate screens, I now run WindowMaker.
 
Old 04-05-2017, 02:55 PM   #7
baldur_1
Member
 
Registered: Sep 2010
Posts: 275

Rep: Reputation: 28
well, i am running kde fc 24 with an nvidia card and two monitors and while i have no gamed on it, i can watch two full screen vids, one on each screen. when i plugged the second in it treated it like an extended desktop but when i go full screen on one it does not interfere with the other.
 
Old 04-05-2017, 04:07 PM   #8
273
LQ Addict
 
Registered: Dec 2011
Location: UK
Distribution: Debian Sid AMD64, Raspbian Wheezy, various VMs
Posts: 7,680

Original Poster
Rep: Reputation: 2373Reputation: 2373Reputation: 2373Reputation: 2373Reputation: 2373Reputation: 2373Reputation: 2373Reputation: 2373Reputation: 2373Reputation: 2373Reputation: 2373
Quote:
Originally Posted by baldur_1 View Post
well, i am running kde fc 24 with an nvidia card and two monitors and while i have no gamed on it, i can watch two full screen vids, one on each screen. when i plugged the second in it treated it like an extended desktop but when i go full screen on one it does not interfere with the other.
Thanks. Are you able to have panels and task bar on both?
 
Old 04-05-2017, 08:03 PM   #9
baldur_1
Member
 
Registered: Sep 2010
Posts: 275

Rep: Reputation: 28
i can do panels and i can have the task bar but only on the clone option. i am not sure if that can play two different things on the clone option or not because i usually don't use that.
 
  


Reply



Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off



Similar Threads
Thread Thread Starter Forum Replies Last Post
[SOLVED] Fedora 14, ATI's proprietary driver, and multiple monitors - a nightmarish hell MrEvilBreakfast Linux - Hardware 2 02-15-2011 02:53 PM
Pleaseeeee, help!, Fiesty, Fawn, vs., nvdia, drivers! dilipm Ubuntu 14 06-07-2007 01:46 AM
SLED 10 Graphics Disabled after trying to install nvdia GeForce 7900GS drivers petercc Linux - Software 2 04-23-2007 03:29 PM
Proprietary nvidia drivers vs. generic intel sound and ethernet drivers vharishankar Linux - Hardware 2 02-22-2005 05:32 AM
NVdia Drivers won't install. Baldorg Linux - Software 1 10-04-2003 12:03 PM

LinuxQuestions.org > Forums > Linux Forums > Linux - Desktop

All times are GMT -5. The time now is 06:11 AM.

Main Menu
Advertisement
My LQ
Write for LQ
LinuxQuestions.org is looking for people interested in writing Editorials, Articles, Reviews, and more. If you'd like to contribute content, let us know.
Main Menu
Syndicate
RSS1  Latest Threads
RSS1  LQ News
Twitter: @linuxquestions
Open Source Consulting | Domain Registration