Gentoo Forums
Gentoo Forums
Gentoo Forums
Quick Search: in
[SOLVED] Getting external monitor to display to the right...
View unanswered posts
View posts from last 24 hours
View posts from last 7 days

 
Reply to topic    Gentoo Forums Forum Index Desktop Environments
View previous topic :: View next topic  
Author Message
bedtime
n00b
n00b


Joined: 19 Dec 2012
Posts: 71

PostPosted: Sat Jun 24, 2017 4:15 pm    Post subject: [SOLVED] Getting external monitor to display to the right... Reply with quote

I would like my external monitor to display to the right of my laptop monitor. I have this working fine using xrandr, but I would like to do this by hand in /etc/X11/xorg.conf.d/ to avoid having an extra program running.

/etc/X11/xorg.conf.d/20-intel.conf:
Code:
Section "Device"
  Identifier "intel"
  Driver "intel"
EndSection


/etc/X11/xorg.conf.d/30-opengl.conf:
Code:
Section "Device"
EndSection


/etc/X11/xorg.conf.d/40-monitor.conf:
Code:
Section "Device"
  Identifier "intel"
  Option     "Monitor-LVDS1-0" "LVDS1 screen"
  Option     "Monitor-VGA1-0" "VGA1 screen"
EndSection
Section "Monitor"
  Identifier "LVDS1 screen"
EndSection
Section "Monitor"
  Identifier "VGA1 screen"
  Option     "Position" "1367 0"
EndSection


xrandr made reference to 'LVDS1' and 'VGA1', hence my usage of those names above.

The result is that the displays both run but the VGA dispaly is displaying the same image as the LVDS display. Anyone know what I might be doing wrong?


*** Solved ***

/etc/X11/xorg.conf.d/40-monitor.conf:
Code:
Section "Device"
  Identifier "intel"
  Option     "Monitor-LVDS1-0" "LVDS1 screen"
  Option     "Monitor-VGA1-0" "VGA1 screen"
EndSection
Section "Monitor"
  Identifier "LVDS1 screen"
EndSection
Section "Monitor"
  Identifier "VGA1 screen"
  Option     "RightOf" "LVDS1"
EndSection


and I removed opengl.conf
Back to top
View user's profile Send private message
Display posts from previous:   
Reply to topic    Gentoo Forums Forum Index Desktop Environments All times are GMT
Page 1 of 1

 
Jump to:  
You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot vote in polls in this forum