You are not logged in.

#1 2020-05-13 12:10:02

jlindsay
Member
From: Sydney, Australia
Registered: 2020-05-07
Posts: 16
Website

Using Nvidia causes xrandr settings to fail

$ uname -srm
Linux 5.6.11-arch1-1 x86_64

(Using Awesome window manager.)

I am using a laptop that is connected to an external monitor. I have the following settings which originally worked perfectly:

In `~/.Xresources` I have `Xft.dpi: 192`.

In `~/.xinitrc`,

...
xrandr --output eDP-1 --pos 288x1620 --scale 1.2x1.2 --output HDMI-1 --pos 0x0 --scale 1.5x1.5
...

Everything was fine and dandy. I then enabled Nvidia Optimus according to this guide, which, along with creating the config `10-nvidia-drm-outputclass.conf`, had me placing

xrandr --setprovderoutputsource modesetting NVIDIA-0
xrandr --auto

in my `~/.xinitrc` file. (Curiously, I don't have the file `/usr/share/X11/xorg.conf.d/10-nvidia-drm-outputclass.conf` — which is supposed to be "package provided" — even after reinstalling `nvidia`.) This correctly enabled Nvidia, which I confirmed with the `nvidia-smi` tool (and the fact that `picom` ran perfectly with 0 lag):

+-----------------------------------------------------------------------------+
| NVIDIA-SMI 440.82       Driver Version: 440.82       CUDA Version: 10.2     |
|-------------------------------+----------------------+----------------------+
| GPU  Name        Persistence-M| Bus-Id        Disp.A | Volatile Uncorr. ECC |
| Fan  Temp  Perf  Pwr:Usage/Cap|         Memory-Usage | GPU-Util  Compute M. |
|===============================+======================+======================|
|   0  GeForce 940MX       Off  | 00000000:01:00.0 Off |                  N/A |
| N/A   44C    P0    N/A /  N/A |    222MiB /  2004MiB |     16%      Default |
+-------------------------------+----------------------+----------------------+
                                                                               
+-----------------------------------------------------------------------------+
| Processes:                                                       GPU Memory |
|  GPU       PID   Type   Process name                             Usage      |
|=============================================================================|
|    0      1154      G   /usr/lib/Xorg                                  3MiB |
|    0      2698      G   /usr/lib/Xorg                                  3MiB |
|    0      2713      G   picom                                          1MiB |
|    0      2766      G   /usr/lib/Xorg                                140MiB |
|    0      2782      G   picom                                         20MiB |
|    0      2980      G   ...AAAAAAAAAAAACAAAAAAAAAA= --shared-files    48MiB |
+-----------------------------------------------------------------------------+

However, my dual monitor setup stopped working and I instead had the same output on both screens. I tried to comment out `xrandr --auto` and instead use my original `xrandr` settings: the X server started, but the screen was black and I couldn't use `Shift+Mod4+Q` to exit Awesome to tty.

Going back to `xrandr --auto`, I then tried to follow this section.

I have

$ xrandr --listmonitors
 0: +eDP-1-1 1920/309x1080/173+0+0  eDP-1-1
 1: +HDMI-1-1 1920/521x1080/293+0+0  HDMI-1-1

so I put the following code before `xrandr` settings in `~/.xinitrc`:

nvidia-settings --assign CurrentMetaMode="eDP-1: nvidia-auto-select 173+0+0 {ForceCompositionPipeline=On}, HDMI-1: nvidia-auto-select 293+0+0 {ForceCompositionPipeline=On}

This had absolutely no effect, as far as I can tell. (I also tried with just +0+0 for both monitors.) With or without doing the step above, I had this:

$ nvidia-settings --query CurrentMetaMode

  Attribute 'CurrentMetaMode' (niander:2.0):
  id=50, switchable=yes, source=xconfig :: NULL

P.S. I don't see any options for multihead support in the graphical `nvidia-settings` app.

Edit 1: I am able to use `arandr` to get two separate outputs, but the scaling is still wrong (as expected).

Edit 2: From here, I don't understand what it means to "export" `xorg.conf`. I don't have a `xorg.conf` in either `/etc/X11` or in `/etc`, and I'm not sure what should be in it.

Edit 3: I tried following this guide, and placed the following in `/etc/X11/xorg.conf.d/10-monitor.conf`:

Section "Monitor"
	Identifier	"eDP-1"
	Option		"Primary" "true"
EndSection

Section "Monitor"
	Identifier	"HDMI-1"
	Option		"LeftOf" "eDP-1"
EndSection

Didn't do anything.

Last edited by jlindsay (2020-05-13 12:39:20)

Offline

#2 2020-05-13 12:44:14

V1del
Forum Moderator
Registered: 2012-10-16
Posts: 21,805

Re: Using Nvidia causes xrandr settings to fail

Don't think about using nvidia-settings like that in this context it won't help, your screen and it's dimensions are controlled by the intel card, you just delegate the rendering to the nvidia output.

Your original xrandr command line should still relevantly work, but the display names might've changed focus on that. you have a typo in your xrandr --setoutputprovider line (I'm assuming that's just a copying error though) and your listmonitors output basically grants you the answer as to what your displays are called when having switched to this setup. So use

xrandr --setprovideroutputsource modesetting NVIDIA-0
xrandr --output eDP-1-1 --pos 288x1620 --scale 1.2x1.2 --output HDMI-1-1 --pos 0x0 --scale 1.5x1.5

Edit: Remove/don't use that xorg snippet, you can't do this statically, there must be an xrandr call changing the provider and a config readjusting the screen dimensions afterwards.

Also regarding the lack of the normal 10-nvidia-drm-outputclass.conf this setup would not even start to work if that wasn't present in some form, what's your output for

pacman -Qkk nvidia-utils

?

Last edited by V1del (2020-05-13 12:48:22)

Offline

#3 2020-05-14 00:54:36

jlindsay
Member
From: Sydney, Australia
Registered: 2020-05-07
Posts: 16
Website

Re: Using Nvidia causes xrandr settings to fail

$ pacman -Qkk nvidia-utils
warning: nvidia-utils: /usr/share/X11/xorg.conf.d/10-nvidia-drm-outputclass.conf (No such file or directory)
nvidia-utils: 178 total files, 1 altered file

So it turns out I did have a typo. Whoops. But even after trying

xrandr --setprovideroutputsource modesetting NVIDIA-0
xrandr --output eDP-1-1 --pos 288x1620 --scale 1.2x1.2 --output HDMI-1-1 --pos 0x0 --scale 1.5x1.5

xorg started with a black screen.

EDIT 1:

V1del wrote:

Don't think about using nvidia-settings like that in this context it won't help, your screen and it's dimensions are controlled by the intel card, you just delegate the rendering to the nvidia output.

Is this info in the wiki somewhere?

EDIT 2:

I reinstalled `nvidia` (and `nvidia-utils`) --- I now have the `10-nvidia-drm-outputclass.conf` file, and

$ pacman -Qkk nvidia-utils
nvidia-utils: 178 total files, 0 altered files

But I still get a black screen upon `startx`.

Last edited by jlindsay (2020-05-14 01:11:43)

Offline

#4 2020-05-14 05:27:37

seth
Member
Registered: 2012-09-03
Posts: 51,731

Re: Using Nvidia causes xrandr settings to fail

Is this info in the wiki somewhere?

https://wiki.archlinux.org/index.php/NVIDIA_Optimus ff.

Please post your complete xinitrc and Xorg log.

Offline

#5 2020-05-14 06:14:08

jlindsay
Member
From: Sydney, Australia
Registered: 2020-05-07
Posts: 16
Website

Re: Using Nvidia causes xrandr settings to fail

$ cat ~/.xinitrc
#!/bin/sh

userresources=$HOME/.Xresources
usermodmap=$HOME/.Xmodmap
sysresources=/etc/X11/xinit/.Xresources
sysmodmap=/etc/X11/xinit/.Xmodmap

xrandr --setprovideroutputsource modesetting NVIDIA-0
#xrandr --output eDP-1-1 --pos 288x1620 --scale 1.2x1.2 --output HDMI-1-1 --pos 0x0 --scale 1.5x1.5
xrandr --auto

# merge in defaults and keymaps

if [ -f $sysresources ]; then







    xrdb -merge $sysresources

fi

if [ -f $sysmodmap ]; then
    xmodmap $sysmodmap
fi

if [ -f "$userresources" ]; then







    xrdb -merge "$userresources"

fi

if [ -f "$usermodmap" ]; then
    xmodmap "$usermodmap"
fi

# start some nice programs

if [ -d /etc/X11/xinit/xinitrc.d ] ; then
 for f in /etc/X11/xinit/xinitrc.d/?*.sh ; do
  [ -x "$f" ] && . "$f"
 done
 unset f
fi

# fcitx
export GTK_IM_MODULE=fcitx
export QT_IM_MODULE=fcitx
export XMODIFIERS=@im=fcitx
fcitx

export XDG_SESSION_TYPE=X11

picom -b -c --experimental-backends

exec /usr/bin/awesome >> ~/.cache/awesome/stdout 2>> ~/.cache/awesome/stderr
exec awesome
$ cat /var/log/Xorg.0.log
[    82.627] (WW) Failed to open protocol names file lib/xorg/protocol.txt
[    82.628] 
X.Org X Server 1.20.8
X Protocol Version 11, Revision 0
[    82.628] Build Operating System: Linux Arch Linux
[    82.629] Current Operating System: Linux niander 5.6.11-arch1-1 #1 SMP PREEMPT Wed, 06 May 2020 17:32:37 +0000 x86_64
[    82.629] Kernel command line: BOOT_IMAGE=/boot/vmlinuz-linux root=UUID=b0df2828-c4d0-4b00-a37b-451472735a83 rw loglevel=3
[    82.629] Build Date: 05 May 2020  05:08:17AM
[    82.629]  
[    82.629] Current version of pixman: 0.40.0
[    82.630] 	Before reporting problems, check http://wiki.x.org
	to make sure that you have the latest version.
[    82.630] Markers: (--) probed, (**) from config file, (==) default setting,
	(++) from command line, (!!) notice, (II) informational,
	(WW) warning, (EE) error, (NI) not implemented, (??) unknown.
[    82.630] (==) Log file: "/var/log/Xorg.0.log", Time: Thu May 14 14:34:26 2020
[    82.636] (==) Using config directory: "/etc/X11/xorg.conf.d"
[    82.636] (==) Using system config directory "/usr/share/X11/xorg.conf.d"
[    82.637] (==) No Layout section.  Using the first Screen section.
[    82.637] (==) No screen section available. Using defaults.
[    82.637] (**) |-->Screen "Default Screen Section" (0)
[    82.637] (**) |   |-->Monitor "<default monitor>"
[    82.638] (==) No monitor specified for screen "Default Screen Section".
	Using a default monitor configuration.
[    82.638] (==) Automatically adding devices
[    82.638] (==) Automatically enabling devices
[    82.638] (==) Automatically adding GPU devices
[    82.638] (==) Automatically binding GPU devices
[    82.639] (==) Max clients allowed: 256, resource mask: 0x1fffff
[    82.640] (WW) `fonts.dir' not found (or not valid) in "/usr/share/fonts/misc".
[    82.640] 	Entry deleted from font path.
[    82.640] 	(Run 'mkfontdir' on "/usr/share/fonts/misc").
[    82.641] (WW) The directory "/usr/share/fonts/OTF" does not exist.
[    82.641] 	Entry deleted from font path.
[    82.641] (WW) The directory "/usr/share/fonts/Type1" does not exist.
[    82.641] 	Entry deleted from font path.
[    82.642] (==) FontPath set to:
	/usr/share/fonts/TTF,
	/usr/share/fonts/100dpi,
	/usr/share/fonts/75dpi
[    82.642] (==) ModulePath set to "/usr/lib/xorg/modules"
[    82.642] (II) The server relies on udev to provide the list of input devices.
	If no devices become available, reconfigure udev or disable AutoAddDevices.
[    82.642] (II) Module ABI versions:
[    82.642] 	X.Org ANSI C Emulation: 0.4
[    82.642] 	X.Org Video Driver: 24.1
[    82.642] 	X.Org XInput driver : 24.1
[    82.642] 	X.Org Server Extension : 10.0
[    82.643] (++) using VT number 1

[    82.648] (II) systemd-logind: took control of session /org/freedesktop/login1/session/_31
[    82.650] (II) xfree86: Adding drm device (/dev/dri/card0)
[    82.651] (II) systemd-logind: got fd for /dev/dri/card0 226:0 fd 10 paused 0
[    82.653] (II) xfree86: Adding drm device (/dev/dri/card1)
[    82.654] (II) systemd-logind: got fd for /dev/dri/card1 226:1 fd 11 paused 0
[    82.657] (**) OutputClass "nvidia" ModulePath extended to "/usr/lib/nvidia/xorg,/usr/lib/xorg/modules,/usr/lib/xorg/modules"
[    82.657] (**) OutputClass "nvidia" ModulePath extended to "/usr/lib/nvidia/xorg,/usr/lib/xorg/modules,/usr/lib/nvidia/xorg,/usr/lib/xorg/modules,/usr/lib/xorg/modules"
[    82.657] (**) OutputClass "nvidia" setting /dev/dri/card1 as PrimaryGPU
[    82.660] (--) PCI: (0@0:2:0) 8086:5916:17aa:505c rev 2, Mem @ 0xf0000000/16777216, 0xe0000000/268435456, I/O @ 0x0000e000/64, BIOS @ 0x????????/131072
[    82.660] (--) PCI:*(1@0:0:0) 10de:134d:17aa:505c rev 162, Mem @ 0xf1000000/16777216, 0xc0000000/268435456, 0xd0000000/33554432, I/O @ 0x0000d000/128
[    82.660] (WW) Open ACPI failed (/var/run/acpid.socket) (No such file or directory)
[    82.660] (II) LoadModule: "glx"
[    82.662] (II) Loading /usr/lib/xorg/modules/extensions/libglx.so
[    82.673] (II) Module glx: vendor="X.Org Foundation"
[    82.673] 	compiled for 1.20.8, module version = 1.0.0
[    82.673] 	ABI class: X.Org Server Extension, version 10.0
[    82.673] (II) Applying OutputClass "nvidia" to /dev/dri/card1
[    82.673] 	loading driver: nvidia
[    82.673] (II) Applying OutputClass "nvidia" to /dev/dri/card1
[    82.673] 	loading driver: nvidia
[    82.673] (II) Applying OutputClass "intel" to /dev/dri/card0
[    82.673] 	loading driver: modesetting
[    82.673] (==) Matched nvidia as autoconfigured driver 0
[    82.673] (==) Matched nouveau as autoconfigured driver 1
[    82.673] (==) Matched nv as autoconfigured driver 2
[    82.673] (==) Matched modesetting as autoconfigured driver 3
[    82.673] (==) Matched intel as autoconfigured driver 4
[    82.674] (==) Matched fbdev as autoconfigured driver 5
[    82.674] (==) Matched vesa as autoconfigured driver 6
[    82.674] (==) Assigned the driver to the xf86ConfigLayout
[    82.674] (II) LoadModule: "nvidia"
[    82.674] (II) Loading /usr/lib/xorg/modules/drivers/nvidia_drv.so
[    82.680] (II) Module nvidia: vendor="NVIDIA Corporation"
[    82.680] 	compiled for 1.6.99.901, module version = 1.0.0
[    82.680] 	Module class: X.Org Video Driver
[    82.681] (II) LoadModule: "nouveau"
[    82.682] (WW) Warning, couldn't open module nouveau
[    82.682] (EE) Failed to load module "nouveau" (module does not exist, 0)
[    82.682] (II) LoadModule: "nv"
[    82.683] (WW) Warning, couldn't open module nv
[    82.683] (EE) Failed to load module "nv" (module does not exist, 0)
[    82.683] (II) LoadModule: "modesetting"
[    82.683] (II) Loading /usr/lib/xorg/modules/drivers/modesetting_drv.so
[    82.686] (II) Module modesetting: vendor="X.Org Foundation"
[    82.687] 	compiled for 1.20.8, module version = 1.20.8
[    82.687] 	Module class: X.Org Video Driver
[    82.687] 	ABI class: X.Org Video Driver, version 24.1
[    82.687] (II) LoadModule: "intel"
[    82.687] (WW) Warning, couldn't open module intel
[    82.687] (EE) Failed to load module "intel" (module does not exist, 0)
[    82.687] (II) LoadModule: "fbdev"
[    82.688] (WW) Warning, couldn't open module fbdev
[    82.688] (EE) Failed to load module "fbdev" (module does not exist, 0)
[    82.688] (II) LoadModule: "vesa"
[    82.688] (II) Loading /usr/lib/xorg/modules/drivers/vesa_drv.so
[    82.688] (II) Module vesa: vendor="X.Org Foundation"
[    82.689] 	compiled for 1.20.8, module version = 2.4.0
[    82.689] 	Module class: X.Org Video Driver
[    82.689] 	ABI class: X.Org Video Driver, version 24.1
[    82.689] (II) NVIDIA dlloader X Driver  440.82  Wed Apr  1 19:50:17 UTC 2020
[    82.689] (II) NVIDIA Unified Driver for all Supported NVIDIA GPUs
[    82.689] (II) modesetting: Driver for Modesetting Kernel Drivers: kms
[    82.689] (II) VESA: driver for VESA chipsets: vesa
[    82.690] (II) systemd-logind: releasing fd for 226:1
[    82.691] (II) Loading sub module "fb"
[    82.692] (II) LoadModule: "fb"
[    82.692] (II) Loading /usr/lib/xorg/modules/libfb.so
[    82.693] (II) Module fb: vendor="X.Org Foundation"
[    82.693] 	compiled for 1.20.8, module version = 1.0.0
[    82.693] 	ABI class: X.Org ANSI C Emulation, version 0.4
[    82.693] (II) Loading sub module "wfb"
[    82.693] (II) LoadModule: "wfb"
[    82.693] (II) Loading /usr/lib/xorg/modules/libwfb.so
[    82.695] (II) Module wfb: vendor="X.Org Foundation"
[    82.695] 	compiled for 1.20.8, module version = 1.0.0
[    82.695] 	ABI class: X.Org ANSI C Emulation, version 0.4
[    82.695] (II) Loading sub module "ramdac"
[    82.695] (II) LoadModule: "ramdac"
[    82.695] (II) Module "ramdac" already built-in
[    82.697] (WW) Falling back to old probe method for modesetting
[    82.697] (II) modeset(G0): using drv /dev/dri/card0
[    82.697] (II) NVIDIA(0): Creating default Display subsection in Screen section
	"Default Screen Section" for depth/fbbpp 24/32
[    82.697] (==) NVIDIA(0): Depth 24, (==) framebuffer bpp 32
[    82.697] (==) NVIDIA(0): RGB weight 888
[    82.697] (==) NVIDIA(0): Default visual is TrueColor
[    82.697] (==) NVIDIA(0): Using gamma correction (1.0, 1.0, 1.0)
[    82.698] (II) Applying OutputClass "nvidia" options to /dev/dri/card1
[    82.698] (II) Applying OutputClass "nvidia" options to /dev/dri/card1
[    82.698] (**) NVIDIA(0): Option "AllowEmptyInitialConfiguration"
[    82.698] (**) NVIDIA(0): Enabling 2D acceleration
[    82.698] (II) Loading sub module "glxserver_nvidia"
[    82.698] (II) LoadModule: "glxserver_nvidia"
[    82.698] (II) Loading /usr/lib/nvidia/xorg/libglxserver_nvidia.so
[    82.764] (II) Module glxserver_nvidia: vendor="NVIDIA Corporation"
[    82.764] 	compiled for 1.6.99.901, module version = 1.0.0
[    82.764] 	Module class: X.Org Server Extension
[    82.765] (II) NVIDIA GLX Module  440.82  Wed Apr  1 19:47:36 UTC 2020
[    82.767] (II) NVIDIA: The X server supports PRIME Render Offload.
[    83.096] (II) NVIDIA(0): NVIDIA GPU GeForce 940MX (GM108-A) at PCI:1:0:0 (GPU-0)
[    83.096] (--) NVIDIA(0): Memory: 2097152 kBytes
[    83.096] (--) NVIDIA(0): VideoBIOS: 82.08.63.00.07
[    83.096] (II) NVIDIA(0): Detected PCI Express Link width: 4X
[    83.096] (II) NVIDIA(0): Validated MetaModes:
[    83.096] (II) NVIDIA(0):     "NULL"
[    83.096] (II) NVIDIA(0): Virtual screen size determined to be 640 x 480
[    83.096] (WW) NVIDIA(0): Unable to get display device for DPI computation.
[    83.096] (==) NVIDIA(0): DPI set to (75, 75); computed from built-in default
[    83.096] (==) modeset(G0): Depth 24, (==) framebuffer bpp 32
[    83.096] (==) modeset(G0): RGB weight 888
[    83.096] (==) modeset(G0): Default visual is TrueColor
[    83.096] (II) Loading sub module "glamoregl"
[    83.096] (II) LoadModule: "glamoregl"
[    83.096] (II) Loading /usr/lib/xorg/modules/libglamoregl.so
[    83.108] (II) Module glamoregl: vendor="X.Org Foundation"
[    83.108] 	compiled for 1.20.8, module version = 1.0.1
[    83.108] 	ABI class: X.Org ANSI C Emulation, version 0.4
[    83.470] (II) modeset(G0): glamor X acceleration enabled on Mesa Intel(R) HD Graphics 620 (KBL GT2)
[    83.470] (II) modeset(G0): glamor initialized
[    83.471] (II) modeset(G0): Output eDP-1-1 has no monitor section
[    83.497] (II) modeset(G0): Output HDMI-1-1 has no monitor section
[    83.497] (II) modeset(G0): Output DP-1-1 has no monitor section
[    83.680] (II) modeset(G0): Output HDMI-1-2 has no monitor section
[    83.684] (II) modeset(G0): EDID for output eDP-1-1
[    83.684] (II) modeset(G0): Manufacturer: CMN  Model: 14c9  Serial#: 0
[    83.684] (II) modeset(G0): Year: 2016  Week: 8
[    83.684] (II) modeset(G0): EDID Version: 1.4
[    83.684] (II) modeset(G0): Digital Display Input
[    83.684] (II) modeset(G0): 6 bits per channel
[    83.684] (II) modeset(G0): Digital interface is DisplayPort
[    83.684] (II) modeset(G0): Max Image Size [cm]: horiz.: 31  vert.: 17
[    83.684] (II) modeset(G0): Gamma: 2.20
[    83.684] (II) modeset(G0): No DPMS capabilities specified
[    83.684] (II) modeset(G0): Supported color encodings: RGB 4:4:4 
[    83.684] (II) modeset(G0): First detailed timing is preferred mode
[    83.684] (II) modeset(G0): Preferred mode is native pixel format and refresh rate
[    83.684] (II) modeset(G0): redX: 0.590 redY: 0.350   greenX: 0.330 greenY: 0.555
[    83.684] (II) modeset(G0): blueX: 0.153 blueY: 0.119   whiteX: 0.313 whiteY: 0.329
[    83.684] (II) modeset(G0): Manufacturer's mask: 0
[    83.684] (II) modeset(G0): Supported detailed timing:
[    83.684] (II) modeset(G0): clock: 152.8 MHz   Image Size:  309 x 173 mm
[    83.684] (II) modeset(G0): h_active: 1920  h_sync: 2000  h_sync_end 2060 h_blank_end 2250 h_border: 0
[    83.684] (II) modeset(G0): v_active: 1080  v_sync: 1086  v_sync_end 1094 v_blanking: 1132 v_border: 0
[    83.684] (II) modeset(G0):  N140HCA-EAB
[    83.684] (II) modeset(G0):  CMN
[    83.684] (II) modeset(G0):  N140HCA-EAB
[    83.684] (II) modeset(G0): EDID (in hex):
[    83.684] (II) modeset(G0): 	00ffffffffffff000daec91400000000
[    83.684] (II) modeset(G0): 	081a0104951f11780228659759548e27
[    83.684] (II) modeset(G0): 	1e505400000001010101010101010101
[    83.684] (II) modeset(G0): 	010101010101b43b804a71383440503c
[    83.684] (II) modeset(G0): 	680035ad10000018000000fe004e3134
[    83.684] (II) modeset(G0): 	304843412d4541420a20000000fe0043
[    83.684] (II) modeset(G0): 	4d4e0a202020202020202020000000fe
[    83.684] (II) modeset(G0): 	004e3134304843412d4541420a20003e
[    83.684] (II) modeset(G0): Printing probed modes for output eDP-1-1
[    83.684] (II) modeset(G0): Modeline "1920x1080"x60.0  152.84  1920 2000 2060 2250  1080 1086 1094 1132 -hsync -vsync (67.9 kHz eP)
[    83.684] (II) modeset(G0): Modeline "1920x1080"x120.0  356.38  1920 2080 2288 2656  1080 1081 1084 1118 doublescan -hsync +vsync (134.2 kHz d)
[    83.684] (II) modeset(G0): Modeline "1920x1080"x119.9  266.50  1920 1944 1960 2000  1080 1081 1084 1111 doublescan +hsync -vsync (133.2 kHz d)
[    83.684] (II) modeset(G0): Modeline "1920x1080"x60.0  173.00  1920 2048 2248 2576  1080 1083 1088 1120 -hsync +vsync (67.2 kHz d)
[    83.684] (II) modeset(G0): Modeline "1920x1080"x59.9  138.50  1920 1968 2000 2080  1080 1083 1088 1111 +hsync -vsync (66.6 kHz d)
[    83.684] (II) modeset(G0): Modeline "1680x1050"x60.0  146.25  1680 1784 1960 2240  1050 1053 1059 1089 -hsync +vsync (65.3 kHz d)
[    83.684] (II) modeset(G0): Modeline "1680x1050"x59.9  119.00  1680 1728 1760 1840  1050 1053 1059 1080 +hsync -vsync (64.7 kHz d)
[    83.684] (II) modeset(G0): Modeline "1400x1050"x60.0  122.00  1400 1488 1640 1880  1050 1052 1064 1082 +hsync +vsync (64.9 kHz d)
[    83.684] (II) modeset(G0): Modeline "1600x900"x120.0  246.00  1600 1728 1900 2200  900 901 904 932 doublescan -hsync +vsync (111.8 kHz d)
[    83.684] (II) modeset(G0): Modeline "1600x900"x119.9  186.50  1600 1624 1640 1680  900 901 904 926 doublescan +hsync -vsync (111.0 kHz d)
[    83.684] (II) modeset(G0): Modeline "1600x900"x59.9  118.25  1600 1696 1856 2112  900 903 908 934 -hsync +vsync (56.0 kHz d)
[    83.684] (II) modeset(G0): Modeline "1600x900"x59.8   97.50  1600 1648 1680 1760  900 903 908 926 +hsync -vsync (55.4 kHz d)
[    83.684] (II) modeset(G0): Modeline "1280x1024"x60.0  108.00  1280 1328 1440 1688  1024 1025 1028 1066 +hsync +vsync (64.0 kHz d)
[    83.684] (II) modeset(G0): Modeline "1400x900"x60.0  103.50  1400 1480 1624 1848  900 903 913 934 -hsync +vsync (56.0 kHz d)
[    83.684] (II) modeset(G0): Modeline "1400x900"x59.9   86.50  1400 1448 1480 1560  900 903 913 926 +hsync -vsync (55.4 kHz d)
[    83.684] (II) modeset(G0): Modeline "1280x960"x60.0  108.00  1280 1376 1488 1800  960 961 964 1000 +hsync +vsync (60.0 kHz d)
[    83.684] (II) modeset(G0): Modeline "1440x810"x120.0  198.12  1440 1548 1704 1968  810 811 814 839 doublescan -hsync +vsync (100.7 kHz d)
[    83.684] (II) modeset(G0): Modeline "1440x810"x119.9  151.88  1440 1464 1480 1520  810 811 814 833 doublescan +hsync -vsync (99.9 kHz d)
[    83.684] (II) modeset(G0): Modeline "1368x768"x59.9   85.25  1368 1440 1576 1784  768 771 781 798 -hsync +vsync (47.8 kHz d)
[    83.684] (II) modeset(G0): Modeline "1368x768"x59.9   72.25  1368 1416 1448 1528  768 771 781 790 +hsync -vsync (47.3 kHz d)
[    83.684] (II) modeset(G0): Modeline "1280x800"x120.0  174.25  1280 1380 1516 1752  800 801 804 829 doublescan -hsync +vsync (99.5 kHz d)
[    83.684] (II) modeset(G0): Modeline "1280x800"x119.9  134.25  1280 1304 1320 1360  800 801 804 823 doublescan +hsync -vsync (98.7 kHz d)
[    83.684] (II) modeset(G0): Modeline "1280x800"x59.8   83.50  1280 1352 1480 1680  800 803 809 831 -hsync +vsync (49.7 kHz d)
[    83.684] (II) modeset(G0): Modeline "1280x800"x59.9   71.00  1280 1328 1360 1440  800 803 809 823 +hsync -vsync (49.3 kHz d)
[    83.684] (II) modeset(G0): Modeline "1280x720"x120.0  156.12  1280 1376 1512 1744  720 721 724 746 doublescan -hsync +vsync (89.5 kHz d)
[    83.684] (II) modeset(G0): Modeline "1280x720"x120.0  120.75  1280 1304 1320 1360  720 721 724 740 doublescan +hsync -vsync (88.8 kHz d)
[    83.684] (II) modeset(G0): Modeline "1280x720"x59.9   74.50  1280 1344 1472 1664  720 723 728 748 -hsync +vsync (44.8 kHz d)
[    83.684] (II) modeset(G0): Modeline "1280x720"x59.7   63.75  1280 1328 1360 1440  720 723 728 741 +hsync -vsync (44.3 kHz d)
[    83.684] (II) modeset(G0): Modeline "1024x768"x120.1  133.47  1024 1100 1212 1400  768 768 770 794 doublescan -hsync +vsync (95.3 kHz d)
[    83.684] (II) modeset(G0): Modeline "1024x768"x60.0   65.00  1024 1048 1184 1344  768 771 777 806 -hsync -vsync (48.4 kHz d)
[    83.684] (II) modeset(G0): Modeline "960x720"x120.0  117.00  960 1024 1128 1300  720 720 722 750 doublescan -hsync +vsync (90.0 kHz d)
[    83.684] (II) modeset(G0): Modeline "928x696"x120.1  109.15  928 976 1088 1264  696 696 698 719 doublescan -hsync +vsync (86.4 kHz d)
[    83.685] (II) modeset(G0): Modeline "896x672"x120.0  102.40  896 960 1060 1224  672 672 674 697 doublescan -hsync +vsync (83.7 kHz d)
[    83.685] (II) modeset(G0): Modeline "1024x576"x119.9   98.50  1024 1092 1200 1376  576 577 580 597 doublescan -hsync +vsync (71.6 kHz d)
[    83.685] (II) modeset(G0): Modeline "1024x576"x119.9   78.38  1024 1048 1064 1104  576 577 580 592 doublescan +hsync -vsync (71.0 kHz d)
[    83.685] (II) modeset(G0): Modeline "1024x576"x59.9   46.50  1024 1064 1160 1296  576 579 584 599 -hsync +vsync (35.9 kHz d)
[    83.685] (II) modeset(G0): Modeline "1024x576"x59.8   42.00  1024 1072 1104 1184  576 579 584 593 +hsync -vsync (35.5 kHz d)
[    83.685] (II) modeset(G0): Modeline "960x600"x119.9   96.62  960 1028 1128 1296  600 601 604 622 doublescan -hsync +vsync (74.6 kHz d)
[    83.685] (II) modeset(G0): Modeline "960x600"x120.0   77.00  960 984 1000 1040  600 601 604 617 doublescan +hsync -vsync (74.0 kHz d)
[    83.685] (II) modeset(G0): Modeline "960x540"x119.9   86.50  960 1024 1124 1288  540 541 544 560 doublescan -hsync +vsync (67.2 kHz d)
[    83.685] (II) modeset(G0): Modeline "960x540"x120.0   69.25  960 984 1000 1040  540 541 544 555 doublescan +hsync -vsync (66.6 kHz d)
[    83.685] (II) modeset(G0): Modeline "960x540"x59.6   40.75  960 992 1088 1216  540 543 548 562 -hsync +vsync (33.5 kHz d)
[    83.685] (II) modeset(G0): Modeline "960x540"x59.8   37.25  960 1008 1040 1120  540 543 548 556 +hsync -vsync (33.3 kHz d)
[    83.685] (II) modeset(G0): Modeline "800x600"x120.0   81.00  800 832 928 1080  600 600 602 625 doublescan +hsync +vsync (75.0 kHz d)
[    83.685] (II) modeset(G0): Modeline "800x600"x60.3   40.00  800 840 968 1056  600 601 605 628 +hsync +vsync (37.9 kHz d)
[    83.685] (II) modeset(G0): Modeline "800x600"x56.2   36.00  800 824 896 1024  600 601 603 625 +hsync +vsync (35.2 kHz d)
[    83.685] (II) modeset(G0): Modeline "840x525"x120.0   73.12  840 892 980 1120  525 526 529 544 doublescan -hsync +vsync (65.3 kHz d)
[    83.685] (II) modeset(G0): Modeline "840x525"x119.8   59.50  840 864 880 920  525 526 529 540 doublescan +hsync -vsync (64.7 kHz d)
[    83.685] (II) modeset(G0): Modeline "864x486"x59.9   32.50  864 888 968 1072  486 489 494 506 -hsync +vsync (30.3 kHz d)
[    83.685] (II) modeset(G0): Modeline "864x486"x59.6   30.50  864 912 944 1024  486 489 494 500 +hsync -vsync (29.8 kHz d)
[    83.685] (II) modeset(G0): Modeline "700x525"x120.0   61.00  700 744 820 940  525 526 532 541 doublescan +hsync +vsync (64.9 kHz d)
[    83.685] (II) modeset(G0): Modeline "800x450"x119.9   59.12  800 848 928 1056  450 451 454 467 doublescan -hsync +vsync (56.0 kHz d)
[    83.685] (II) modeset(G0): Modeline "800x450"x119.6   48.75  800 824 840 880  450 451 454 463 doublescan +hsync -vsync (55.4 kHz d)
[    83.685] (II) modeset(G0): Modeline "640x512"x120.0   54.00  640 664 720 844  512 512 514 533 doublescan +hsync +vsync (64.0 kHz d)
[    83.685] (II) modeset(G0): Modeline "700x450"x119.9   51.75  700 740 812 924  450 451 456 467 doublescan -hsync +vsync (56.0 kHz d)
[    83.685] (II) modeset(G0): Modeline "700x450"x119.8   43.25  700 724 740 780  450 451 456 463 doublescan +hsync -vsync (55.4 kHz d)
[    83.685] (II) modeset(G0): Modeline "640x480"x120.0   54.00  640 688 744 900  480 480 482 500 doublescan +hsync +vsync (60.0 kHz d)
[    83.685] (II) modeset(G0): Modeline "640x480"x59.9   25.18  640 656 752 800  480 490 492 525 -hsync -vsync (31.5 kHz d)
[    83.685] (II) modeset(G0): Modeline "720x405"x59.5   22.50  720 744 808 896  405 408 413 422 -hsync +vsync (25.1 kHz d)
[    83.685] (II) modeset(G0): Modeline "720x405"x59.0   21.75  720 768 800 880  405 408 413 419 +hsync -vsync (24.7 kHz d)
[    83.685] (II) modeset(G0): Modeline "684x384"x119.8   42.62  684 720 788 892  384 385 390 399 doublescan -hsync +vsync (47.8 kHz d)
[    83.685] (II) modeset(G0): Modeline "684x384"x119.7   36.12  684 708 724 764  384 385 390 395 doublescan +hsync -vsync (47.3 kHz d)
[    83.685] (II) modeset(G0): Modeline "640x400"x119.8   41.75  640 676 740 840  400 401 404 415 doublescan -hsync +vsync (49.7 kHz d)
[    83.685] (II) modeset(G0): Modeline "640x400"x120.0   35.50  640 664 680 720  400 401 404 411 doublescan +hsync -vsync (49.3 kHz d)
[    83.685] (II) modeset(G0): Modeline "640x360"x119.7   37.25  640 672 736 832  360 361 364 374 doublescan -hsync +vsync (44.8 kHz d)
[    83.685] (II) modeset(G0): Modeline "640x360"x119.7   31.88  640 664 680 720  360 361 364 370 doublescan +hsync -vsync (44.3 kHz d)
[    83.685] (II) modeset(G0): Modeline "640x360"x59.8   18.00  640 664 720 800  360 363 368 376 -hsync +vsync (22.5 kHz d)
[    83.685] (II) modeset(G0): Modeline "640x360"x59.3   17.75  640 688 720 800  360 363 368 374 +hsync -vsync (22.2 kHz d)
[    83.685] (II) modeset(G0): Modeline "512x384"x120.0   32.50  512 524 592 672  384 385 388 403 doublescan -hsync -vsync (48.4 kHz d)
[    83.685] (II) modeset(G0): Modeline "512x288"x120.0   23.25  512 532 580 648  288 289 292 299 doublescan -hsync +vsync (35.9 kHz d)
[    83.685] (II) modeset(G0): Modeline "512x288"x119.8   21.00  512 536 552 592  288 289 292 296 doublescan +hsync -vsync (35.5 kHz d)
[    83.685] (II) modeset(G0): Modeline "480x270"x119.3   20.38  480 496 544 608  270 271 274 281 doublescan -hsync +vsync (33.5 kHz d)
[    83.685] (II) modeset(G0): Modeline "480x270"x119.6   18.62  480 504 520 560  270 271 274 278 doublescan +hsync -vsync (33.3 kHz d)
[    83.685] (II) modeset(G0): Modeline "400x300"x120.6   20.00  400 420 484 528  300 300 302 314 doublescan +hsync +vsync (37.9 kHz d)
[    83.685] (II) modeset(G0): Modeline "400x300"x112.7   18.00  400 412 448 512  300 300 301 312 doublescan +hsync +vsync (35.2 kHz d)
[    83.685] (II) modeset(G0): Modeline "432x243"x119.8   16.25  432 444 484 536  243 244 247 253 doublescan -hsync +vsync (30.3 kHz d)
[    83.685] (II) modeset(G0): Modeline "432x243"x119.1   15.25  432 456 472 512  243 244 247 250 doublescan +hsync -vsync (29.8 kHz d)
[    83.685] (II) modeset(G0): Modeline "320x240"x120.1   12.59  320 328 376 400  240 245 246 262 doublescan -hsync -vsync (31.5 kHz d)
[    83.685] (II) modeset(G0): Modeline "360x202"x119.0   11.25  360 372 404 448  202 204 206 211 doublescan -hsync +vsync (25.1 kHz d)
[    83.685] (II) modeset(G0): Modeline "360x202"x118.3   10.88  360 384 400 440  202 204 206 209 doublescan +hsync -vsync (24.7 kHz d)
[    83.685] (II) modeset(G0): Modeline "320x180"x119.7    9.00  320 332 360 400  180 181 184 188 doublescan -hsync +vsync (22.5 kHz d)
[    83.685] (II) modeset(G0): Modeline "320x180"x118.6    8.88  320 344 360 400  180 181 184 187 doublescan +hsync -vsync (22.2 kHz d)
[    83.711] (II) modeset(G0): EDID for output HDMI-1-1
[    83.711] (II) modeset(G0): Manufacturer: DEL  Model: d08e  Serial#: 808665929
[    83.711] (II) modeset(G0): Year: 2017  Week: 13
[    83.711] (II) modeset(G0): EDID Version: 1.3
[    83.711] (II) modeset(G0): Digital Display Input
[    83.711] (II) modeset(G0): Max Image Size [cm]: horiz.: 52  vert.: 29
[    83.711] (II) modeset(G0): Gamma: 2.20
[    83.711] (II) modeset(G0): DPMS capabilities: StandBy Suspend Off
[    83.711] (II) modeset(G0): Supported color encodings: RGB 4:4:4 YCrCb 4:4:4 
[    83.711] (II) modeset(G0): First detailed timing is preferred mode
[    83.711] (II) modeset(G0): redX: 0.641 redY: 0.338   greenX: 0.315 greenY: 0.629
[    83.711] (II) modeset(G0): blueX: 0.159 blueY: 0.059   whiteX: 0.313 whiteY: 0.329
[    83.711] (II) modeset(G0): Supported established timings:
[    83.711] (II) modeset(G0): 720x400@70Hz
[    83.711] (II) modeset(G0): 640x480@60Hz
[    83.711] (II) modeset(G0): 640x480@75Hz
[    83.711] (II) modeset(G0): 800x600@60Hz
[    83.711] (II) modeset(G0): 800x600@75Hz
[    83.711] (II) modeset(G0): 1024x768@60Hz
[    83.711] (II) modeset(G0): 1024x768@75Hz
[    83.711] (II) modeset(G0): 1280x1024@75Hz
[    83.711] (II) modeset(G0): Manufacturer's mask: 0
[    83.711] (II) modeset(G0): Supported standard timings:
[    83.711] (II) modeset(G0): #0: hsize: 1152  vsize 864  refresh: 75  vid: 20337
[    83.711] (II) modeset(G0): #1: hsize: 1280  vsize 1024  refresh: 60  vid: 32897
[    83.711] (II) modeset(G0): #2: hsize: 1600  vsize 900  refresh: 60  vid: 49321
[    83.711] (II) modeset(G0): #3: hsize: 1920  vsize 1080  refresh: 60  vid: 49361
[    83.711] (II) modeset(G0): Supported detailed timing:
[    83.711] (II) modeset(G0): clock: 148.5 MHz   Image Size:  521 x 293 mm
[    83.711] (II) modeset(G0): h_active: 1920  h_sync: 2008  h_sync_end 2052 h_blank_end 2200 h_border: 0
[    83.711] (II) modeset(G0): v_active: 1080  v_sync: 1084  v_sync_end 1089 v_blanking: 1125 v_border: 0
[    83.711] (II) modeset(G0): Serial No: 1DHND74203CI
[    83.711] (II) modeset(G0): Monitor name: DELL SE2417HG
[    83.711] (II) modeset(G0): Ranges: V min: 56 V max: 76 Hz, H min: 30 H max: 83 kHz, PixClock max 175 MHz
[    83.711] (II) modeset(G0): Supported detailed timing:
[    83.711] (II) modeset(G0): clock: 148.5 MHz   Image Size:  521 x 293 mm
[    83.711] (II) modeset(G0): h_active: 1920  h_sync: 2008  h_sync_end 2052 h_blank_end 2200 h_border: 0
[    83.711] (II) modeset(G0): v_active: 1080  v_sync: 1084  v_sync_end 1089 v_blanking: 1125 v_border: 0
[    83.711] (II) modeset(G0): Supported detailed timing:
[    83.711] (II) modeset(G0): clock: 74.2 MHz   Image Size:  521 x 293 mm
[    83.711] (II) modeset(G0): h_active: 1920  h_sync: 2008  h_sync_end 2052 h_blank_end 2200 h_border: 0
[    83.711] (II) modeset(G0): v_active: 540  v_sync: 542  v_sync_end 547 v_blanking: 562 v_border: 0
[    83.711] (II) modeset(G0): Supported detailed timing:
[    83.711] (II) modeset(G0): clock: 74.2 MHz   Image Size:  521 x 293 mm
[    83.711] (II) modeset(G0): h_active: 1280  h_sync: 1390  h_sync_end 1430 h_blank_end 1650 h_border: 0
[    83.711] (II) modeset(G0): v_active: 720  v_sync: 725  v_sync_end 730 v_blanking: 750 v_border: 0
[    83.711] (II) modeset(G0): Supported detailed timing:
[    83.711] (II) modeset(G0): clock: 27.0 MHz   Image Size:  521 x 293 mm
[    83.711] (II) modeset(G0): h_active: 720  h_sync: 736  h_sync_end 798 h_blank_end 858 h_border: 0
[    83.711] (II) modeset(G0): v_active: 480  v_sync: 489  v_sync_end 495 v_blanking: 525 v_border: 0
[    83.711] (II) modeset(G0): Number of EDID sections to follow: 1
[    83.711] (II) modeset(G0): EDID (in hex):
[    83.711] (II) modeset(G0): 	00ffffffffffff0010ac8ed049433330
[    83.711] (II) modeset(G0): 	0d1b010380341d78ea2cc5a45650a128
[    83.711] (II) modeset(G0): 	0f5054a54b00714f8180a9c0d1c00101
[    83.711] (II) modeset(G0): 	010101010101023a801871382d40582c
[    83.711] (II) modeset(G0): 	450009252100001e000000ff00314448
[    83.711] (II) modeset(G0): 	4e44373432303343490a000000fc0044
[    83.711] (II) modeset(G0): 	454c4c205345323431374847000000fd
[    83.711] (II) modeset(G0): 	00384c1e5311000a2020202020200130
[    83.711] (II) modeset(G0): 	02031ff14c9005040302071601141f12
[    83.711] (II) modeset(G0): 	13230907078301000065030c00200002
[    83.711] (II) modeset(G0): 	3a801871382d40582c45000925210000
[    83.711] (II) modeset(G0): 	1e011d8018711c1620582c2500092521
[    83.711] (II) modeset(G0): 	00009e011d007251d01e206e28550009
[    83.711] (II) modeset(G0): 	252100001e8c0ad08a20e02d10103e96
[    83.711] (II) modeset(G0): 	00092521000018000000000000000000
[    83.711] (II) modeset(G0): 	0000000000000000000000000000004b
[    83.711] (II) modeset(G0): Printing probed modes for output HDMI-1-1
[    83.711] (II) modeset(G0): Modeline "1920x1080"x60.0  148.50  1920 2008 2052 2200  1080 1084 1089 1125 +hsync +vsync (67.5 kHz eP)
[    83.711] (II) modeset(G0): Modeline "1920x1080"x50.0  148.50  1920 2448 2492 2640  1080 1084 1089 1125 +hsync +vsync (56.2 kHz e)
[    83.711] (II) modeset(G0): Modeline "1920x1080"x59.9  148.35  1920 2008 2052 2200  1080 1084 1089 1125 +hsync +vsync (67.4 kHz e)
[    83.711] (II) modeset(G0): Modeline "1920x1080i"x60.0   74.25  1920 2008 2052 2200  1080 1084 1094 1125 interlace +hsync +vsync (33.8 kHz e)
[    83.711] (II) modeset(G0): Modeline "1920x1080i"x50.0   74.25  1920 2448 2492 2640  1080 1084 1094 1125 interlace +hsync +vsync (28.1 kHz e)
[    83.712] (II) modeset(G0): Modeline "1920x1080i"x59.9   74.18  1920 2008 2052 2200  1080 1084 1094 1125 interlace +hsync +vsync (33.7 kHz e)
[    83.712] (II) modeset(G0): Modeline "1600x900"x60.0  108.00  1600 1624 1704 1800  900 901 904 1000 +hsync +vsync (60.0 kHz e)
[    83.712] (II) modeset(G0): Modeline "1280x1024"x75.0  135.00  1280 1296 1440 1688  1024 1025 1028 1066 +hsync +vsync (80.0 kHz e)
[    83.712] (II) modeset(G0): Modeline "1280x1024"x60.0  108.00  1280 1328 1440 1688  1024 1025 1028 1066 +hsync +vsync (64.0 kHz e)
[    83.712] (II) modeset(G0): Modeline "1152x864"x75.0  108.00  1152 1216 1344 1600  864 865 868 900 +hsync +vsync (67.5 kHz e)
[    83.712] (II) modeset(G0): Modeline "1280x720"x60.0   74.25  1280 1390 1430 1650  720 725 730 750 +hsync +vsync (45.0 kHz e)
[    83.712] (II) modeset(G0): Modeline "1280x720"x50.0   74.25  1280 1720 1760 1980  720 725 730 750 +hsync +vsync (37.5 kHz e)
[    83.712] (II) modeset(G0): Modeline "1280x720"x59.9   74.18  1280 1390 1430 1650  720 725 730 750 +hsync +vsync (45.0 kHz e)
[    83.712] (II) modeset(G0): Modeline "1024x768"x75.0   78.75  1024 1040 1136 1312  768 769 772 800 +hsync +vsync (60.0 kHz e)
[    83.712] (II) modeset(G0): Modeline "1024x768"x60.0   65.00  1024 1048 1184 1344  768 771 777 806 -hsync -vsync (48.4 kHz e)
[    83.712] (II) modeset(G0): Modeline "800x600"x75.0   49.50  800 816 896 1056  600 601 604 625 +hsync +vsync (46.9 kHz e)
[    83.712] (II) modeset(G0): Modeline "800x600"x60.3   40.00  800 840 968 1056  600 601 605 628 +hsync +vsync (37.9 kHz e)
[    83.712] (II) modeset(G0): Modeline "720x576"x50.0   27.00  720 732 796 864  576 581 586 625 -hsync -vsync (31.2 kHz e)
[    83.712] (II) modeset(G0): Modeline "720x576i"x50.0   13.50  720 732 795 864  576 580 586 625 interlace -hsync -vsync (15.6 kHz e)
[    83.712] (II) modeset(G0): Modeline "720x480"x60.0   27.03  720 736 798 858  480 489 495 525 -hsync -vsync (31.5 kHz e)
[    83.712] (II) modeset(G0): Modeline "720x480"x59.9   27.00  720 736 798 858  480 489 495 525 -hsync -vsync (31.5 kHz e)
[    83.712] (II) modeset(G0): Modeline "720x480i"x60.0   13.51  720 739 801 858  480 488 494 525 interlace -hsync -vsync (15.8 kHz e)
[    83.712] (II) modeset(G0): Modeline "720x480i"x59.9   13.50  720 739 801 858  480 488 494 525 interlace -hsync -vsync (15.7 kHz e)
[    83.712] (II) modeset(G0): Modeline "640x480"x75.0   31.50  640 656 720 840  480 481 484 500 -hsync -vsync (37.5 kHz e)
[    83.712] (II) modeset(G0): Modeline "640x480"x60.0   25.20  640 656 752 800  480 490 492 525 -hsync -vsync (31.5 kHz e)
[    83.712] (II) modeset(G0): Modeline "640x480"x59.9   25.18  640 656 752 800  480 490 492 525 -hsync -vsync (31.5 kHz e)
[    83.712] (II) modeset(G0): Modeline "720x400"x70.1   28.32  720 738 846 900  400 412 414 449 -hsync +vsync (31.5 kHz e)
[    83.712] (II) modeset(G0): EDID for output DP-1-1
[    83.893] (II) modeset(G0): EDID for output HDMI-1-2
[    83.893] (==) modeset(G0): Using gamma correction (1.0, 1.0, 1.0)
[    83.893] (==) modeset(G0): DPI set to (96, 96)
[    83.893] (II) Loading sub module "fb"
[    83.893] (II) LoadModule: "fb"
[    83.893] (II) Loading /usr/lib/xorg/modules/libfb.so
[    83.893] (II) Module fb: vendor="X.Org Foundation"
[    83.893] 	compiled for 1.20.8, module version = 1.0.0
[    83.893] 	ABI class: X.Org ANSI C Emulation, version 0.4
[    83.893] (II) UnloadModule: "vesa"
[    83.893] (II) Unloading vesa
[    83.894] (II) NVIDIA: Using 6144.00 MB of virtual memory for indirect memory
[    83.894] (II) NVIDIA:     access.
[    83.899] (II) NVIDIA(0): ACPI: failed to connect to the ACPI event daemon; the daemon
[    83.899] (II) NVIDIA(0):     may not be running or the "AcpidSocketPath" X
[    83.899] (II) NVIDIA(0):     configuration option may not be set correctly.  When the
[    83.899] (II) NVIDIA(0):     ACPI event daemon is available, the NVIDIA X driver will
[    83.899] (II) NVIDIA(0):     try to use it to receive ACPI event notifications.  For
[    83.899] (II) NVIDIA(0):     details, please see the "ConnectToAcpid" and
[    83.899] (II) NVIDIA(0):     "AcpidSocketPath" X configuration options in Appendix B: X
[    83.899] (II) NVIDIA(0):     Config Options in the README.
[    83.920] (II) NVIDIA(0): Setting mode "NULL"
[    83.925] (==) NVIDIA(0): Disabling shared memory pixmaps
[    83.925] (==) NVIDIA(0): Backing store enabled
[    83.925] (==) NVIDIA(0): Silken mouse disabled
[    83.925] (==) NVIDIA(0): DPMS enabled
[    83.926] (WW) NVIDIA(0): Option "PrimaryGPU" is not used
[    83.926] (II) Loading sub module "dri2"
[    83.926] (II) LoadModule: "dri2"
[    83.926] (II) Module "dri2" already built-in
[    83.926] (II) NVIDIA(0): [DRI2] Setup complete
[    83.926] (II) NVIDIA(0): [DRI2]   VDPAU driver: nvidia
[    83.959] (==) modeset(G0): Backing store enabled
[    83.959] (==) modeset(G0): Silken mouse disabled
[    84.175] (II) modeset(G0): Initializing kms color map for depth 24, 8 bpc.
[    84.175] (==) modeset(G0): DPMS enabled
[    84.175] (II) modeset(G0): [DRI2] Setup complete
[    84.175] (II) modeset(G0): [DRI2]   DRI driver: iris
[    84.175] (II) modeset(G0): [DRI2]   VDPAU driver: va_gl
[    84.175] (II) Initializing extension Generic Event Extension
[    84.175] (II) Initializing extension SHAPE
[    84.175] (II) Initializing extension MIT-SHM
[    84.175] (II) Initializing extension XInputExtension
[    84.175] (II) Initializing extension XTEST
[    84.176] (II) Initializing extension BIG-REQUESTS
[    84.176] (II) Initializing extension SYNC
[    84.176] (II) Initializing extension XKEYBOARD
[    84.176] (II) Initializing extension XC-MISC
[    84.176] (II) Initializing extension SECURITY
[    84.176] (II) Initializing extension XFIXES
[    84.176] (II) Initializing extension RENDER
[    84.176] (II) Initializing extension RANDR
[    84.176] (II) Initializing extension COMPOSITE
[    84.176] (II) Initializing extension DAMAGE
[    84.176] (II) Initializing extension MIT-SCREEN-SAVER
[    84.176] (II) Initializing extension DOUBLE-BUFFER
[    84.176] (II) Initializing extension RECORD
[    84.176] (II) Initializing extension DPMS
[    84.176] (II) Initializing extension Present
[    84.176] (II) Initializing extension DRI3
[    84.176] (II) Initializing extension X-Resource
[    84.176] (II) Initializing extension XVideo
[    84.176] (II) Initializing extension XVideo-MotionCompensation
[    84.176] (II) Initializing extension GLX
[    84.176] (II) Initializing extension GLX
[    84.176] (II) Indirect GLX disabled.
[    84.176] (II) GLX: Another vendor is already registered for screen 0
[    84.176] (II) Initializing extension XFree86-VidModeExtension
[    84.176] (II) Initializing extension XFree86-DGA
[    84.176] (II) Initializing extension XFree86-DRI
[    84.176] (II) Initializing extension DRI2
[    84.176] (II) Initializing extension NV-GLX
[    84.176] (II) Initializing extension NV-CONTROL
[    84.481] (II) modeset(G0): Damage tracking initialized
[    84.596] (II) config/udev: Adding input device Power Button (/dev/input/event2)
[    84.596] (**) Power Button: Applying InputClass "libinput keyboard catchall"
[    84.596] (II) LoadModule: "libinput"
[    84.596] (II) Loading /usr/lib/xorg/modules/input/libinput_drv.so
[    84.600] (II) Module libinput: vendor="X.Org Foundation"
[    84.600] 	compiled for 1.20.7, module version = 0.29.0
[    84.600] 	Module class: X.Org XInput Driver
[    84.600] 	ABI class: X.Org XInput driver, version 24.1
[    84.600] (II) Using input driver 'libinput' for 'Power Button'
[    84.600] (II) systemd-logind: got fd for /dev/input/event2 13:66 fd 37 paused 0
[    84.600] (**) Power Button: always reports core events
[    84.600] (**) Option "Device" "/dev/input/event2"
[    84.600] (**) Option "_source" "server/udev"
[    84.606] (II) event2  - Power Button: is tagged by udev as: Keyboard
[    84.607] (II) event2  - Power Button: device is a keyboard
[    84.607] (II) event2  - Power Button: device removed
[    84.607] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/LNXPWRBN:00/input/input2/event2"
[    84.607] (II) XINPUT: Adding extended input device "Power Button" (type: KEYBOARD, id 6)
[    84.607] (II) event2  - Power Button: is tagged by udev as: Keyboard
[    84.607] (II) event2  - Power Button: device is a keyboard
[    84.608] (II) config/udev: Adding input device Video Bus (/dev/input/event5)
[    84.608] (**) Video Bus: Applying InputClass "libinput keyboard catchall"
[    84.608] (II) Using input driver 'libinput' for 'Video Bus'
[    84.608] (II) systemd-logind: got fd for /dev/input/event5 13:69 fd 40 paused 0
[    84.608] (**) Video Bus: always reports core events
[    84.608] (**) Option "Device" "/dev/input/event5"
[    84.608] (**) Option "_source" "server/udev"
[    84.609] (II) event5  - Video Bus: is tagged by udev as: Keyboard
[    84.609] (II) event5  - Video Bus: device is a keyboard
[    84.609] (II) event5  - Video Bus: device removed
[    84.609] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/LNXVIDEO:00/input/input13/event5"
[    84.609] (II) XINPUT: Adding extended input device "Video Bus" (type: KEYBOARD, id 7)
[    84.609] (II) event5  - Video Bus: is tagged by udev as: Keyboard
[    84.609] (II) event5  - Video Bus: device is a keyboard
[    84.610] (II) config/udev: Adding input device Video Bus (/dev/input/event9)
[    84.610] (**) Video Bus: Applying InputClass "libinput keyboard catchall"
[    84.610] (II) Using input driver 'libinput' for 'Video Bus'
[    84.610] (II) systemd-logind: got fd for /dev/input/event9 13:73 fd 41 paused 0
[    84.610] (**) Video Bus: always reports core events
[    84.610] (**) Option "Device" "/dev/input/event9"
[    84.610] (**) Option "_source" "server/udev"
[    84.611] (II) event9  - Video Bus: is tagged by udev as: Keyboard
[    84.611] (II) event9  - Video Bus: device is a keyboard
[    84.611] (II) event9  - Video Bus: device removed
[    84.611] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:19/LNXVIDEO:01/input/input14/event9"
[    84.611] (II) XINPUT: Adding extended input device "Video Bus" (type: KEYBOARD, id 8)
[    84.612] (II) event9  - Video Bus: is tagged by udev as: Keyboard
[    84.612] (II) event9  - Video Bus: device is a keyboard
[    84.612] (II) config/udev: Adding input device Lid Switch (/dev/input/event0)
[    84.612] (II) No input driver specified, ignoring this device.
[    84.612] (II) This device may have been added with another device file.
[    84.612] (II) config/udev: Adding input device Sleep Button (/dev/input/event1)
[    84.612] (**) Sleep Button: Applying InputClass "libinput keyboard catchall"
[    84.612] (II) Using input driver 'libinput' for 'Sleep Button'
[    84.613] (II) systemd-logind: got fd for /dev/input/event1 13:65 fd 42 paused 0
[    84.613] (**) Sleep Button: always reports core events
[    84.613] (**) Option "Device" "/dev/input/event1"
[    84.613] (**) Option "_source" "server/udev"
[    84.613] (II) event1  - Sleep Button: is tagged by udev as: Keyboard
[    84.614] (II) event1  - Sleep Button: device is a keyboard
[    84.614] (II) event1  - Sleep Button: device removed
[    84.614] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0E:00/input/input1/event1"
[    84.614] (II) XINPUT: Adding extended input device "Sleep Button" (type: KEYBOARD, id 9)
[    84.614] (II) event1  - Sleep Button: is tagged by udev as: Keyboard
[    84.614] (II) event1  - Sleep Button: device is a keyboard
[    84.615] (II) config/udev: Adding input device Logitech Wireless Mouse PID:4022 (/dev/input/event17)
[    84.615] (**) Logitech Wireless Mouse PID:4022: Applying InputClass "libinput pointer catchall"
[    84.615] (II) Using input driver 'libinput' for 'Logitech Wireless Mouse PID:4022'
[    84.615] (II) systemd-logind: got fd for /dev/input/event17 13:81 fd 43 paused 0
[    84.615] (**) Logitech Wireless Mouse PID:4022: always reports core events
[    84.615] (**) Option "Device" "/dev/input/event17"
[    84.615] (**) Option "_source" "server/udev"
[    84.616] (II) event17 - Logitech Wireless Mouse PID:4022: is tagged by udev as: Mouse
[    84.616] (II) event17 - Logitech Wireless Mouse PID:4022: device is a pointer
[    84.617] (II) event17 - Logitech Wireless Mouse PID:4022: device removed
[    84.617] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:14.0/usb1/1-3/1-3:1.1/0003:046D:C534.0002/0003:046D:4022.0004/input/input36/event17"
[    84.617] (II) XINPUT: Adding extended input device "Logitech Wireless Mouse PID:4022" (type: MOUSE, id 10)
[    84.617] (**) Option "AccelerationScheme" "none"
[    84.617] (**) Logitech Wireless Mouse PID:4022: (accel) selected scheme none/0
[    84.617] (**) Logitech Wireless Mouse PID:4022: (accel) acceleration factor: 2.000
[    84.617] (**) Logitech Wireless Mouse PID:4022: (accel) acceleration threshold: 4
[    84.618] (II) event17 - Logitech Wireless Mouse PID:4022: is tagged by udev as: Mouse
[    84.618] (II) event17 - Logitech Wireless Mouse PID:4022: device is a pointer
[    84.618] (II) config/udev: Adding input device Logitech Wireless Mouse PID:4022 (/dev/input/mouse0)
[    84.618] (II) No input driver specified, ignoring this device.
[    84.618] (II) This device may have been added with another device file.
[    84.619] (II) config/udev: Adding input device Logitech Wireless Keyboard PID:4023 (/dev/input/event16)
[    84.619] (**) Logitech Wireless Keyboard PID:4023: Applying InputClass "libinput keyboard catchall"
[    84.619] (II) Using input driver 'libinput' for 'Logitech Wireless Keyboard PID:4023'
[    84.619] (II) systemd-logind: got fd for /dev/input/event16 13:80 fd 44 paused 0
[    84.619] (**) Logitech Wireless Keyboard PID:4023: always reports core events
[    84.619] (**) Option "Device" "/dev/input/event16"
[    84.619] (**) Option "_source" "server/udev"
[    84.620] (II) event16 - Logitech Wireless Keyboard PID:4023: is tagged by udev as: Keyboard
[    84.620] (II) event16 - Logitech Wireless Keyboard PID:4023: device is a keyboard
[    84.620] (II) event16 - Logitech Wireless Keyboard PID:4023: device removed
[    84.620] (II) libinput: Logitech Wireless Keyboard PID:4023: needs a virtual subdevice
[    84.620] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:14.0/usb1/1-3/1-3:1.1/0003:046D:C534.0002/0003:046D:4023.0003/input/input34/event16"
[    84.620] (II) XINPUT: Adding extended input device "Logitech Wireless Keyboard PID:4023" (type: MOUSE, id 11)
[    84.620] (**) Option "AccelerationScheme" "none"
[    84.620] (**) Logitech Wireless Keyboard PID:4023: (accel) selected scheme none/0
[    84.620] (**) Logitech Wireless Keyboard PID:4023: (accel) acceleration factor: 2.000
[    84.620] (**) Logitech Wireless Keyboard PID:4023: (accel) acceleration threshold: 4
[    84.621] (II) event16 - Logitech Wireless Keyboard PID:4023: is tagged by udev as: Keyboard
[    84.621] (II) event16 - Logitech Wireless Keyboard PID:4023: device is a keyboard
[    84.622] (II) config/udev: Adding input device Integrated Camera: Integrated C (/dev/input/event6)
[    84.622] (**) Integrated Camera: Integrated C: Applying InputClass "libinput keyboard catchall"
[    84.622] (II) Using input driver 'libinput' for 'Integrated Camera: Integrated C'
[    84.622] (II) systemd-logind: got fd for /dev/input/event6 13:70 fd 45 paused 0
[    84.622] (**) Integrated Camera: Integrated C: always reports core events
[    84.622] (**) Option "Device" "/dev/input/event6"
[    84.622] (**) Option "_source" "server/udev"
[    84.623] (II) event6  - Integrated Camera: Integrated C: is tagged by udev as: Keyboard
[    84.623] (II) event6  - Integrated Camera: Integrated C: device is a keyboard
[    84.623] (II) event6  - Integrated Camera: Integrated C: device removed
[    84.623] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:14.0/usb1/1-7/1-7:1.0/input/input15/event6"
[    84.623] (II) XINPUT: Adding extended input device "Integrated Camera: Integrated C" (type: KEYBOARD, id 12)
[    84.624] (II) event6  - Integrated Camera: Integrated C: is tagged by udev as: Keyboard
[    84.624] (II) event6  - Integrated Camera: Integrated C: device is a keyboard
[    84.624] (II) config/udev: Adding input device HDA Intel PCH Mic (/dev/input/event7)
[    84.624] (II) No input driver specified, ignoring this device.
[    84.624] (II) This device may have been added with another device file.
[    84.624] (II) config/udev: Adding input device HDA Intel PCH Headphone (/dev/input/event8)
[    84.624] (II) No input driver specified, ignoring this device.
[    84.624] (II) This device may have been added with another device file.
[    84.625] (II) config/udev: Adding input device HDA Intel PCH HDMI/DP,pcm=3 (/dev/input/event10)
[    84.625] (II) No input driver specified, ignoring this device.
[    84.625] (II) This device may have been added with another device file.
[    84.625] (II) config/udev: Adding input device HDA Intel PCH HDMI/DP,pcm=7 (/dev/input/event11)
[    84.625] (II) No input driver specified, ignoring this device.
[    84.625] (II) This device may have been added with another device file.
[    84.625] (II) config/udev: Adding input device HDA Intel PCH HDMI/DP,pcm=8 (/dev/input/event12)
[    84.625] (II) No input driver specified, ignoring this device.
[    84.625] (II) This device may have been added with another device file.
[    84.625] (II) config/udev: Adding input device HDA Intel PCH HDMI/DP,pcm=9 (/dev/input/event13)
[    84.625] (II) No input driver specified, ignoring this device.
[    84.625] (II) This device may have been added with another device file.
[    84.625] (II) config/udev: Adding input device HDA Intel PCH HDMI/DP,pcm=10 (/dev/input/event14)
[    84.625] (II) No input driver specified, ignoring this device.
[    84.625] (II) This device may have been added with another device file.
[    84.626] (II) config/udev: Adding input device AT Translated Set 2 keyboard (/dev/input/event3)
[    84.626] (**) AT Translated Set 2 keyboard: Applying InputClass "libinput keyboard catchall"
[    84.626] (II) Using input driver 'libinput' for 'AT Translated Set 2 keyboard'
[    84.626] (II) systemd-logind: got fd for /dev/input/event3 13:67 fd 46 paused 0
[    84.626] (**) AT Translated Set 2 keyboard: always reports core events
[    84.626] (**) Option "Device" "/dev/input/event3"
[    84.626] (**) Option "_source" "server/udev"
[    84.627] (II) event3  - AT Translated Set 2 keyboard: is tagged by udev as: Keyboard
[    84.627] (II) event3  - AT Translated Set 2 keyboard: device is a keyboard
[    84.627] (II) event3  - AT Translated Set 2 keyboard: device removed
[    84.627] (**) Option "config_info" "udev:/sys/devices/platform/i8042/serio0/input/input3/event3"
[    84.627] (II) XINPUT: Adding extended input device "AT Translated Set 2 keyboard" (type: KEYBOARD, id 13)
[    84.628] (II) event3  - AT Translated Set 2 keyboard: is tagged by udev as: Keyboard
[    84.628] (II) event3  - AT Translated Set 2 keyboard: device is a keyboard
[    84.628] (II) config/udev: Adding input device SynPS/2 Synaptics TouchPad (/dev/input/event15)
[    84.628] (**) SynPS/2 Synaptics TouchPad: Applying InputClass "libinput touchpad catchall"
[    84.628] (**) SynPS/2 Synaptics TouchPad: Applying InputClass "touchpad"
[    84.628] (II) Using input driver 'libinput' for 'SynPS/2 Synaptics TouchPad'
[    84.629] (II) systemd-logind: got fd for /dev/input/event15 13:79 fd 47 paused 0
[    84.629] (**) SynPS/2 Synaptics TouchPad: always reports core events
[    84.629] (**) Option "Device" "/dev/input/event15"
[    84.629] (**) Option "_source" "server/udev"
[    84.630] (II) event15 - SynPS/2 Synaptics TouchPad: is tagged by udev as: Touchpad
[    84.630] (II) event15 - SynPS/2 Synaptics TouchPad: device is a touchpad
[    84.630] (II) event15 - SynPS/2 Synaptics TouchPad: device removed
[    84.630] (**) Option "NaturalScrolling" "true"
[    84.630] (**) Option "config_info" "udev:/sys/devices/platform/i8042/serio1/input/input6/event15"
[    84.630] (II) XINPUT: Adding extended input device "SynPS/2 Synaptics TouchPad" (type: TOUCHPAD, id 14)
[    84.631] (**) Option "AccelerationScheme" "none"
[    84.631] (**) SynPS/2 Synaptics TouchPad: (accel) selected scheme none/0
[    84.631] (**) SynPS/2 Synaptics TouchPad: (accel) acceleration factor: 2.000
[    84.631] (**) SynPS/2 Synaptics TouchPad: (accel) acceleration threshold: 4
[    84.632] (II) event15 - SynPS/2 Synaptics TouchPad: is tagged by udev as: Touchpad
[    84.632] (II) event15 - SynPS/2 Synaptics TouchPad: device is a touchpad
[    84.633] (II) config/udev: Adding input device SynPS/2 Synaptics TouchPad (/dev/input/mouse1)
[    84.633] (II) No input driver specified, ignoring this device.
[    84.633] (II) This device may have been added with another device file.
[    84.633] (II) config/udev: Adding input device TPPS/2 IBM TrackPoint (/dev/input/event18)
[    84.633] (**) TPPS/2 IBM TrackPoint: Applying InputClass "libinput pointer catchall"
[    84.633] (II) Using input driver 'libinput' for 'TPPS/2 IBM TrackPoint'
[    84.633] (II) systemd-logind: got fd for /dev/input/event18 13:82 fd 48 paused 0
[    84.633] (**) TPPS/2 IBM TrackPoint: always reports core events
[    84.633] (**) Option "Device" "/dev/input/event18"
[    84.633] (**) Option "_source" "server/udev"
[    84.634] (II) event18 - TPPS/2 IBM TrackPoint: is tagged by udev as: Mouse Pointingstick
[    84.634] (II) event18 - TPPS/2 IBM TrackPoint: device is a pointer
[    84.635] (II) event18 - TPPS/2 IBM TrackPoint: device removed
[    84.635] (**) Option "config_info" "udev:/sys/devices/platform/i8042/serio1/serio2/input/input35/event18"
[    84.635] (II) XINPUT: Adding extended input device "TPPS/2 IBM TrackPoint" (type: MOUSE, id 15)
[    84.635] (**) Option "AccelerationScheme" "none"
[    84.635] (**) TPPS/2 IBM TrackPoint: (accel) selected scheme none/0
[    84.635] (**) TPPS/2 IBM TrackPoint: (accel) acceleration factor: 2.000
[    84.635] (**) TPPS/2 IBM TrackPoint: (accel) acceleration threshold: 4
[    84.636] (II) event18 - TPPS/2 IBM TrackPoint: is tagged by udev as: Mouse Pointingstick
[    84.636] (II) event18 - TPPS/2 IBM TrackPoint: device is a pointer
[    84.637] (II) config/udev: Adding input device TPPS/2 IBM TrackPoint (/dev/input/mouse2)
[    84.637] (II) No input driver specified, ignoring this device.
[    84.637] (II) This device may have been added with another device file.
[    84.637] (II) config/udev: Adding input device ThinkPad Extra Buttons (/dev/input/event4)
[    84.637] (**) ThinkPad Extra Buttons: Applying InputClass "libinput keyboard catchall"
[    84.637] (II) Using input driver 'libinput' for 'ThinkPad Extra Buttons'
[    84.638] (II) systemd-logind: got fd for /dev/input/event4 13:68 fd 49 paused 0
[    84.638] (**) ThinkPad Extra Buttons: always reports core events
[    84.638] (**) Option "Device" "/dev/input/event4"
[    84.638] (**) Option "_source" "server/udev"
[    84.638] (II) event4  - ThinkPad Extra Buttons: is tagged by udev as: Keyboard Switch
[    84.638] (II) event4  - ThinkPad Extra Buttons: device is a keyboard
[    84.638] (II) event4  - ThinkPad Extra Buttons: device removed
[    84.638] (**) Option "config_info" "udev:/sys/devices/platform/thinkpad_acpi/input/input5/event4"
[    84.638] (II) XINPUT: Adding extended input device "ThinkPad Extra Buttons" (type: KEYBOARD, id 16)
[    84.639] (II) event4  - ThinkPad Extra Buttons: is tagged by udev as: Keyboard Switch
[    84.639] (II) event4  - ThinkPad Extra Buttons: device is a keyboard
[    84.641] (**) Logitech Wireless Keyboard PID:4023: Applying InputClass "libinput keyboard catchall"
[    84.641] (II) Using input driver 'libinput' for 'Logitech Wireless Keyboard PID:4023'
[    84.641] (II) systemd-logind: returning pre-existing fd for /dev/input/event16 13:80
[    84.641] (**) Logitech Wireless Keyboard PID:4023: always reports core events
[    84.641] (**) Option "Device" "/dev/input/event16"
[    84.641] (**) Option "_source" "_driver/libinput"
[    84.641] (II) libinput: Logitech Wireless Keyboard PID:4023: is a virtual subdevice
[    84.641] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:14.0/usb1/1-3/1-3:1.1/0003:046D:C534.0002/0003:046D:4023.0003/input/input34/event16"
[    84.641] (II) XINPUT: Adding extended input device "Logitech Wireless Keyboard PID:4023" (type: KEYBOARD, id 17)
[    84.656] randr: falling back to unsynchronized pixmap sharing
[    85.520] randr: falling back to unsynchronized pixmap sharing

Nope. No mention of `nvidia-settings`. Not much about how Intel and Nvidia interact when it comes to monitors. I had no idea that "your screen and it's dimensions are controlled by the intel card, you just delegate the rendering to the nvidia output", especially because I followed the section that is literally titled Use NVIDIA graphics only.

The real reason is this: I did a silly and didn't realise that this guide is about screen tearing, not screen detection in general.

Last edited by jlindsay (2020-05-14 06:16:00)

Offline

#6 2020-05-14 10:25:05

seth
Member
Registered: 2012-09-03
Posts: 51,731

Re: Using Nvidia causes xrandr settings to fail

This has nothing to do with nvidia-settings.

According to the log, both GPUs are detected and used, the server runs on the nvidia chip.
eDP-1-1 and HDMI-1-1 both hang on the intel chip.
All is fine.

So the problem seems to be that "xrandr --auto" got you an undersired output configuration (mirror) and "#xrandr --output eDP-1-1 --pos 288x1620 --scale 1.2x1.2 --output HDMI-1-1 --pos 0x0 --scale 1.5x1.5" a black screen?
Try

…
xrandr --setprovideroutputsource modesetting NVIDIA-0
xrandr --auto
xrandr --output HDMI-1-1 --scale 1.5x1.5
xrandr --output eDP-1-1 --scale 1.2x1.2 --right-of HDMI-1-1
…

(your other attempt didn't activate any mode for any output)

Offline

#7 2020-05-14 13:03:34

jlindsay
Member
From: Sydney, Australia
Registered: 2020-05-07
Posts: 16
Website

Re: Using Nvidia causes xrandr settings to fail

@seth, yep that worked for me (doing `xrandr --auto` first). With a bit of modification, I have

xrandr --setprovideroutputsource modesetting NVIDIA-0
xrandr --auto

xrandr --newmode "2304x1296_60.00"  251.25  2304 2464 2712 3120  1296 1299 1304 1344 -hsync +vsync
xrandr --addmode eDP-1-1 2304x1296_60.00
xrandr --output eDP-1-1 --mode 2304x1296_60.00

xrandr --output HDMI-1-1 --above eDP-1-1

However, scaling isn't working now. This is a different issue which you have already covered. I have the same issue where using the `--scale` option doesn't actually scale — it just expands the output past the monitor, or contracts it, leaving black bars. I don't want to use Bumblebee because apparently it's an old project that does not play well with Vulkan, but I suppose it's my only other option right now.

This is disappointing because I have been spending a lot of time setting up Arch for programming with Vulkan...

Last edited by jlindsay (2020-05-14 13:12:21)

Offline

#8 2020-05-15 07:18:11

V1del
Forum Moderator
Registered: 2012-10-16
Posts: 21,805

Re: Using Nvidia causes xrandr settings to fail

Well that does change perspectives a bit. If that is your end goal that can be in a *Bumblebee* manner accomplished with https://www.archlinux.org/packages/?q=primus_vk or even better, just directly use nvidia's prime render offload support: https://wiki.archlinux.org/index.php/PR … er_offload that way you can still have "general" rendering done by the intel gpu and make use of the nvidia gpu on an as needed basis.

Last edited by V1del (2020-05-15 07:18:29)

Offline

Board footer

Powered by FluxBB