Stuck on clean with free drivers using a Virtual Machine

Between the 2 of us we speak
:de: :uk: :netherlands:
:fr: :south_africa: :ru:

So just say it in your native language… :joy: Better not: not allowed in the :uk: section

Just to keep things clean, could you do a:

mhwd --remove pci video-linux

please?

@megavolt Both cards still have the nvidia driver loaded, but I’m not very familiar with XFCE’s WM… :upside_down_face: Does it use the xorg config files too?

okay haha

that just worked on 5.14, never worked before i think…

testing on 5.10 now…
didnt work but tested with quiet

okay so i dont think that with quiet it was responsive

without quiet and with the other parameter it was responsive again, same line of text appeared.

sudo nano /etc/default/grub

take quiet out and it’ll default to text for all kernels

sudo update-grub

I’m going to wait for Megavolt to chime is, but it’s 22:50 everywhere now, so I’m pretty tired and not thinking straight any more…

Well I was thinking a bit after my stomach was filled with I big cheesebruger :yum:

Maybe you need this for GTX 1050?

Section "OutputClass"
    Identifier "Device0"
    MatchDriver "nvidia"
    Driver "nvidia"
    BusID "PCI:25:00.0"
    Option "AllowEmptyInitialConfiguration"
    Option "PrimaryGPU" "yes"
    ModulePath "/usr/lib/nvidia/xorg"
    ModulePath "/usr/lib/xorg/modules"
EndSection

This should set the GPU as primary and will not follow UEFI order. But I didn’t test it.

:crossed_fingers:

oh okay so youre both from eu, i thought youre writing from the us :sweat_smile:

isnt the adress in decimal in that case?
so it would be 37:00.0

also does it make a difference if the section is named outputclass and not device?

and should i replace the device section with the outputclass one or can they coexist

Well, I got it from here:

NO, I live in Atlantis and have an internet connection via the intergalactic gate bridge from the Pegasus Galaxy. So time has absolutely no meaning for me. :lying_face:

1 Like

i just thought that its like early-late afternoon for you guys, my bad…
i dont want to keep you up so late, sorry…

ill try replacing the device section with the outputclass section rn and thats the last thing ill do today

thanks for helping me until now

1 Like

i tested it with busid 25 and 37, both didnt even get me to boot up with kernel 5.14
idk what outputclass is but the boardnames seem to be enough in device sections, so maybe the approach with addresses is more prone to errors?

Last message for today (it’s 24:00 :rofl: )…

Have a look here:

https://www.mankier.com/5/xorg.conf#Outputclass_Section

Since your setup is very special, study how to configure xorg correctly (I do nothing else and never done a passthrough, I am just better in using a search engine than you :stuck_out_tongue: )

Good night!

2 Likes

okay ive found something i think
forums.developer.nvidia.com/t/nvidia-driver-440-36-does-not-support-multiple-screens/109907
they mention xorg.0.log

in there we can find this:

[     4.303] 
X.Org X Server 1.20.13
X Protocol Version 11, Revision 0
[     4.303] Build Operating System: Linux Manjaro Linux
[     4.303] Current Operating System: Linux jonas-ms7b86 5.14.0-0-MANJARO #1 SMP PREEMPT Mon Aug 30 10:49:07 UTC 2021 x86_64
[     4.303] Kernel command line: BOOT_IMAGE=/boot/vmlinuz-5.14-x86_64 root=UUID=a27f0baf-14fa-41db-844a-9ff44f8c8f6f rw quiet apparmor=1 security=apparmor resume=UUID=d0dac5d0-5548-41e7-8572-14de99a109cc udev.log_priority=3 iommu=pt vfio-pci.ids=10de:13c2,10de:0fbb
[     4.304] Build Date: 24 August 2021  10:21:29AM
[     4.304]  
[     4.304] Current version of pixman: 0.40.0
[     4.304] 	Before reporting problems, check http://wiki.x.org
	to make sure that you have the latest version.
[     4.304] Markers: (--) probed, (**) from config file, (==) default setting,
	(++) from command line, (!!) notice, (II) informational,
	(WW) warning, (EE) error, (NI) not implemented, (??) unknown.
[     4.304] (==) Log file: "/var/log/Xorg.0.log", Time: Thu Sep  9 07:10:58 2021
[     4.318] (==) Using config file: "/etc/X11/xorg.conf"
[     4.318] (==) Using config directory: "/etc/X11/xorg.conf.d"
[     4.318] (==) Using system config directory "/usr/share/X11/xorg.conf.d"
[     4.330] (==) ServerLayout "layout"
[     4.330] (**) |-->Screen "Screen0" (0)
[     4.330] (**) |   |-->Monitor "Monitor0"
[     4.330] (**) |   |-->Device "Device0"
[     4.330] (**) |   |-->GPUDevice "Device0"

here we see that /etc/X11/xorg.conf gets used first, which we have not touched yet.
but most importantly, nvidia.conf gets never looked at by that one
at least i cant find it with ctrl+f anyway
that doesnt match our observations of the nvidia.config actually doing something though. That could mean that theres something being done which doesnt get logged. at this point it becomes quite difficult to understand anything, really. With this, anything could be possible.

edit:
90-mhwd is just a link to nvidia.conf

if i look up those files, i can see interesting things:
in the first file there is this section:

Section "Device"
    Identifier     "Device0"
    Driver         "nvidia"
    VendorName     "NVIDIA Corporation"
    BoardName      "NVIDIA GeForce GTX 970"
    BusID          "PCI:38:0:0"
EndSection

which addresses the 970 specifically

the second one is a folder, so i dont know if the files in that folder do anything, but in there we see a keyboard config and the file 90-mhwd.conf which contains this lovely section:

Section "Device"
    Identifier     "Device0"
    Driver         "nvidia"
    VendorName     "NVIDIA Corporation"
    BoardName      "NVIDIA GeForce GTX 1050"
EndSection

so same as “stock” nvidia.conf

the third one is also a folder and contains this twice (in two seperate files):

Section "OutputClass"
    Identifier "nvidia"
    MatchDriver "nvidia-drm"
    Driver "nvidia"
    Option "AllowEmptyInitialConfiguration"
    ModulePath "/usr/lib/nvidia/xorg"
    ModulePath "/usr/lib/xorg/modules"
EndSection

According to the doc:

this can configure some gpus a certain way. i dont know how MatchDriver and Driver work together as to identify the devices which must be configured - whether thats an AND or an OR (seems more like an AND tho)
if its an AND, that would mean to me, that that gets ignored right now, since im not running nvidia-drm drivers (???)
nevermind, that totally applies to my gpus. i thought i removed nvidia drivers with that one:

so just ignore this haha :sweat_smile: :

if we dont want to configure the 970 then, well have to change those two as well, according to my theory.
although that outputclass doesnt have anything to do with the displays - it just gives them the identifier nvidia. displays use the device0/1 identifiers.

i wont do anything rn tho, im waiting for you guys to give me feedback
just did some research because i woke up and couldnt go to sleep anymore

Please run these 2 commands:

export txt=("/var/log/Xorg*" "/etc/X11/xorg.conf.d/*" "/etc/X11/xorg.conf" "/etc/modprobe.d/*" "/etc/modules-load.d/*")
for x in ${txt[@]}; do echo -e "\n---$x---\n$(cat $x)"; done

And post the result here so that we have a better overview of your configs.

can i even write that much?
the message would be 130.000 characters too long, sorry. max is 150000

i think the last 275000 characters are just input devices turning off and on again.

or wait - are there actually logs included here?

  • yeah, right at the start…
    ill just put that in order then so i can cut 90% off the message
export txt=("/etc/X11/xorg.conf.d/*" "/etc/X11/xorg.conf" "/etc/modprobe.d/*" "/etc/modules-load.d/*" "/var/log/Xorg*")
for x in ${txt[@]}; do echo -e "\n---$x---\n$(cat $x)"; done

---/etc/X11/xorg.conf.d/00-keyboard.conf---
# Read and parsed by systemd-localed. It's probably wise not to edit this file
# manually too freely.
Section "InputClass"
        Identifier "system-keyboard"
        MatchIsKeyboard "on"
        Option "XkbLayout" "de"
EndSection

---/etc/X11/xorg.conf.d/90-mhwd.conf---
# nvidia-settings: X configuration file generated by nvidia-settings
# nvidia-settings:  version 470.63.01

Section "ServerLayout"
    Identifier     "Layout0"
    Screen      0  "Screen0" 0 0
    InputDevice    "Keyboard0" "CoreKeyboard"
    InputDevice    "Mouse0" "CorePointer"
    Option         "Xinerama" "0"
EndSection

Section "Files"
EndSection

Section "Module"
    Load           "dbe"
    Load           "extmod"
    Load           "type1"
    Load           "freetype"
    Load           "glx"
EndSection

Section "InputDevice"
    # generated from default
    Identifier     "Mouse0"
    Driver         "mouse"
    Option         "Protocol" "auto"
    Option         "Device" "/dev/psaux"
    Option         "Emulate3Buttons" "no"
    Option         "ZAxisMapping" "4 5"
EndSection

Section "InputDevice"
    # generated from default
    Identifier     "Keyboard0"
    Driver         "kbd"
EndSection

Section "Monitor"
    # HorizSync source: edid, VertRefresh source: edid
    Identifier     "Monitor0"
    VendorName     "Unknown"
    ModelName      "Acer G246HL"
    HorizSync       30.0 - 80.0
    VertRefresh     55.0 - 76.0
    Option         "DPMS"
EndSection

Section "Device"
    Identifier     "Device0"
    Driver         "nvidia"
    VendorName     "NVIDIA Corporation"
    BoardName      "NVIDIA GeForce GTX 1050"
EndSection

Section "Screen"
    Identifier     "Screen0"
    Device         "Device0"
    Monitor        "Monitor0"
    DefaultDepth    24
    Option         "Stereo" "0"
    Option         "nvidiaXineramaInfoOrder" "DFP-3"
    Option         "metamodes" "DP-1: nvidia-auto-select +1920+191, HDMI-0: nvidia-auto-select +0+0"
    Option         "SLI" "Off"
    Option         "MultiGPU" "Off"
    Option         "BaseMosaic" "off"
    SubSection     "Display"
        Depth       24
    EndSubSection
EndSection

---/etc/X11/xorg.conf---
# nvidia-settings: X configuration file generated by nvidia-settings
# nvidia-settings:  version 470.63.01

Section "ServerLayout"
    Identifier     "Layout0"
    Screen      0  "Screen0" 0 0
    InputDevice    "Keyboard0" "CoreKeyboard"
    InputDevice    "Mouse0" "CorePointer"
    Option         "Xinerama" "0"
EndSection

Section "Files"
EndSection

Section "InputDevice"
    # generated from default
    Identifier     "Mouse0"
    Driver         "mouse"
    Option         "Protocol" "auto"
    Option         "Device" "/dev/psaux"
    Option         "Emulate3Buttons" "no"
    Option         "ZAxisMapping" "4 5"
EndSection

Section "InputDevice"
    # generated from default
    Identifier     "Keyboard0"
    Driver         "kbd"
EndSection

Section "Monitor"
    # HorizSync source: edid, VertRefresh source: edid
    Identifier     "Monitor0"
    VendorName     "Unknown"
    ModelName      "BenQ BL2405"
    HorizSync       30.0 - 83.0
    VertRefresh     50.0 - 76.0
    Option         "DPMS"
EndSection

Section "Device"
    Identifier     "Device0"
    Driver         "nvidia"
    VendorName     "NVIDIA Corporation"
    BoardName      "NVIDIA GeForce GTX 970"
    BusID          "PCI:38:0:0"
EndSection

Section "Screen"
    Identifier     "Screen0"
    Device         "Device0"
    Monitor        "Monitor0"
    DefaultDepth    24
    Option         "Stereo" "0"
    Option         "metamodes" "nvidia-auto-select +0+0"
    Option         "SLI" "Off"
    Option         "MultiGPU" "Off"
    Option         "BaseMosaic" "off"
    SubSection     "Display"
        Depth       24
    EndSubSection
EndSection

---/etc/modprobe.d/mhwd-gpu.conf---
##
## Generated by mhwd - Manjaro Hardware Detection
##
 
blacklist nouveau
blacklist ttm
blacklist drm_kms_helper
blacklist drm

---/etc/modprobe.d/vfio.conf---
options vfio-pci ids=10de:13c2,10de:0fbb

---/etc/modules-load.d/linux510-virtualbox-host-modules.conf---
vboxdrv
vboxnetadp
vboxnetflt

---/etc/modules-load.d/linux512-virtualbox-host-modules.conf---
vboxdrv
vboxnetadp
vboxnetflt

---/etc/modules-load.d/linux514-virtualbox-host-modules.conf---
vboxdrv
vboxnetadp
vboxnetflt

---/etc/modules-load.d/mhwd-gpu.conf---
##
## Generated by mhwd - Manjaro Hardware Detection
##
 
nvidia
nvidia-drm

---/etc/modules-load.d/modules.conf---
# List of modules to load at boot

---/var/log/Xorg.0.log---
[     4.263] 
X.Org X Server 1.20.13
X Protocol Version 11, Revision 0
[     4.263] Build Operating System: Linux Manjaro Linux
[     4.263] Current Operating System: Linux jonas-ms7b86 5.14.0-0-MANJARO #1 SMP PREEMPT Mon Aug 30 10:49:07 UTC 2021 x86_64
[     4.263] Kernel command line: BOOT_IMAGE=/boot/vmlinuz-5.14-x86_64 root=UUID=a27f0baf-14fa-41db-844a-9ff44f8c8f6f rw quiet apparmor=1 security=apparmor resume=UUID=d0dac5d0-5548-41e7-8572-14de99a109cc udev.log_priority=3 iommu=pt vfio-pci.ids=10de:13c2,10de:0fbb
[     4.263] Build Date: 24 August 2021  10:21:29AM
[     4.263]  
[     4.263] Current version of pixman: 0.40.0
[     4.263] 	Before reporting problems, check http://wiki.x.org
	to make sure that you have the latest version.
[     4.263] Markers: (--) probed, (**) from config file, (==) default setting,
	(++) from command line, (!!) notice, (II) informational,
	(WW) warning, (EE) error, (NI) not implemented, (??) unknown.
[     4.263] (==) Log file: "/var/log/Xorg.0.log", Time: Thu Sep  9 06:33:04 2021
[     4.274] (==) Using config file: "/etc/X11/xorg.conf"
[     4.274] (==) Using config directory: "/etc/X11/xorg.conf.d"
[     4.274] (==) Using system config directory "/usr/share/X11/xorg.conf.d"
[     4.286] (==) ServerLayout "layout"
[     4.286] (**) |-->Screen "Screen0" (0)
[     4.286] (**) |   |-->Monitor "Monitor0"
[     4.286] (**) |   |-->Device "Device0"
[     4.286] (**) |   |-->GPUDevice "Device1"
[     4.286] (**) |   |-->GPUDevice "Device2"
[     4.286] (==) Automatically adding devices
[     4.286] (==) Automatically enabling devices
[     4.286] (==) Automatically adding GPU devices
[     4.286] (==) Automatically binding GPU devices
[     4.286] (==) Max clients allowed: 256, resource mask: 0x1fffff
[     4.297] (WW) The directory "/usr/share/fonts/OTF" does not exist.
[     4.297] 	Entry deleted from font path.
[     4.297] (WW) The directory "/usr/share/fonts/Type1" does not exist.
[     4.297] 	Entry deleted from font path.
[     4.297] (WW) The directory "/usr/share/fonts/100dpi" does not exist.
[     4.297] 	Entry deleted from font path.
[     4.297] (WW) The directory "/usr/share/fonts/75dpi" does not exist.
[     4.297] 	Entry deleted from font path.
[     4.297] (==) FontPath set to:
	/usr/share/fonts/misc,
	/usr/share/fonts/TTF
[     4.297] (==) ModulePath set to "/usr/lib/xorg/modules"
[     4.297] (II) The server relies on udev to provide the list of input devices.
	If no devices become available, reconfigure udev or disable AutoAddDevices.
[     4.297] (II) Module ABI versions:
[     4.297] 	X.Org ANSI C Emulation: 0.4
[     4.297] 	X.Org Video Driver: 24.1
[     4.297] 	X.Org XInput driver : 24.1
[     4.297] 	X.Org Server Extension : 10.0
[     4.298] (++) using VT number 7

[     4.298] (II) systemd-logind: logind integration requires -keeptty and -keeptty was not provided, disabling logind integration
[     4.298] (II) xfree86: Adding drm device (/dev/dri/card0)
[     4.298] (II) xfree86: Adding drm device (/dev/dri/card1)
[     4.299] (**) OutputClass "nvidia" ModulePath extended to "/usr/lib/nvidia/xorg,/usr/lib/xorg/modules,/usr/lib/xorg/modules"
[     4.299] (**) 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"
[     4.299] (**) OutputClass "nvidia" ModulePath extended to "/usr/lib/nvidia/xorg,/usr/lib/xorg/modules,/usr/lib/nvidia/xorg,/usr/lib/xorg/modules,/usr/lib/nvidia/xorg,/usr/lib/xorg/modules,/usr/lib/xorg/modules"
[     4.299] (**) OutputClass "nvidia" ModulePath extended to "/usr/lib/nvidia/xorg,/usr/lib/xorg/modules,/usr/lib/nvidia/xorg,/usr/lib/xorg/modules,/usr/lib/nvidia/xorg,/usr/lib/xorg/modules,/usr/lib/nvidia/xorg,/usr/lib/xorg/modules,/usr/lib/xorg/modules"
[     4.300] (--) PCI: (37@0:0:0) 10de:1c81:174b:5454 rev 161, Mem @ 0xf9000000/16777216, 0xd0000000/268435456, 0xe0000000/33554432, I/O @ 0x0000d000/128, BIOS @ 0x????????/524288
[     4.300] (--) PCI:*(38@0:0:0) 10de:13c2:1458:367a rev 161, Mem @ 0xfb000000/16777216, 0xb0000000/268435456, 0xc0000000/33554432, I/O @ 0x0000f000/128, BIOS @ 0x????????/131072
[     4.300] (WW) Open ACPI failed (/var/run/acpid.socket) (No such file or directory)
[     4.300] (II) LoadModule: "glx"
[     4.306] (II) Loading /usr/lib/xorg/modules/extensions/libglx.so
[     4.328] (II) Module glx: vendor="X.Org Foundation"
[     4.328] 	compiled for 1.20.13, module version = 1.0.0
[     4.328] 	ABI class: X.Org Server Extension, version 10.0
[     4.328] (II) LoadModule: "nvidia"
[     4.329] (II) Loading /usr/lib/xorg/modules/drivers/nvidia_drv.so
[     4.340] (II) Module nvidia: vendor="NVIDIA Corporation"
[     4.340] 	compiled for 1.6.99.901, module version = 1.0.0
[     4.340] 	Module class: X.Org Video Driver
[     4.343] (II) NVIDIA dlloader X Driver  470.63.01  Tue Aug  3 20:37:27 UTC 2021
[     4.343] (II) NVIDIA Unified Driver for all Supported NVIDIA GPUs
[     4.369] (II) Loading sub module "fb"
[     4.369] (II) LoadModule: "fb"
[     4.370] (II) Loading /usr/lib/xorg/modules/libfb.so
[     4.373] (II) Module fb: vendor="X.Org Foundation"
[     4.373] 	compiled for 1.20.13, module version = 1.0.0
[     4.373] 	ABI class: X.Org ANSI C Emulation, version 0.4
[     4.373] (II) Loading sub module "wfb"
[     4.373] (II) LoadModule: "wfb"
[     4.373] (II) Loading /usr/lib/xorg/modules/libwfb.so
[     4.375] (II) Module wfb: vendor="X.Org Foundation"
[     4.375] 	compiled for 1.20.13, module version = 1.0.0
[     4.375] 	ABI class: X.Org ANSI C Emulation, version 0.4
[     4.375] (II) Loading sub module "ramdac"
[     4.375] (II) LoadModule: "ramdac"
[     4.375] (II) Module "ramdac" already built-in
[     4.422] (**) NVIDIA(0): Depth 24, (--) framebuffer bpp 32
[     4.422] (==) NVIDIA(0): RGB weight 888
[     4.422] (==) NVIDIA(0): Default visual is TrueColor
[     4.422] (==) NVIDIA(0): Using gamma correction (1.0, 1.0, 1.0)
[     4.422] (**) Option "AllowNVIDIAGpuScreens"
[     4.423] (II) Applying OutputClass "nvidia" options to /dev/dri/card1
[     4.423] (II) Applying OutputClass "nvidia" options to /dev/dri/card1
[     4.423] (**) NVIDIA(0): Option "Stereo" "0"
[     4.423] (**) NVIDIA(0): Option "SLI" "Off"
[     4.423] (**) NVIDIA(0): Option "MultiGPU" "Off"
[     4.423] (**) NVIDIA(0): Option "BaseMosaic" "off"
[     4.423] (**) NVIDIA(0): Option "AllowEmptyInitialConfiguration"
[     4.423] (**) NVIDIA(0): Stereo disabled by request
[     4.423] (**) NVIDIA(0): NVIDIA SLI disabled.
[     4.423] (**) NVIDIA(0): NVIDIA Multi-GPU disabled.
[     4.423] (**) NVIDIA(0): Option "MetaModes" "nvidia-auto-select +0+0"
[     4.423] (**) NVIDIA(0): Enabling 2D acceleration
[     4.423] (II) Loading sub module "glxserver_nvidia"
[     4.423] (II) LoadModule: "glxserver_nvidia"
[     4.423] (II) Loading /usr/lib/nvidia/xorg/libglxserver_nvidia.so
[     4.514] (II) Module glxserver_nvidia: vendor="NVIDIA Corporation"
[     4.514] 	compiled for 1.6.99.901, module version = 1.0.0
[     4.514] 	Module class: X.Org Server Extension
[     4.514] (II) NVIDIA GLX Module  470.63.01  Tue Aug  3 20:35:52 UTC 2021
[     4.518] (II) NVIDIA: The X server supports PRIME Render Offload.
[     5.215] (--) NVIDIA(0): Valid display device(s) on GPU-0 at PCI:38:0:0
[     5.215] (--) NVIDIA(0):     CRT-0
[     5.215] (--) NVIDIA(0):     DFP-0 (boot)
[     5.215] (--) NVIDIA(0):     DFP-1
[     5.215] (--) NVIDIA(0):     DFP-2
[     5.215] (--) NVIDIA(0):     DFP-3
[     5.215] (--) NVIDIA(0):     DFP-4
[     5.215] (--) NVIDIA(0):     DFP-5
[     5.215] (--) NVIDIA(0):     DFP-6
[     5.215] (--) NVIDIA(0):     DFP-7
[     5.215] (II) NVIDIA(0): NVIDIA GPU NVIDIA GeForce GTX 970 (GM204-A) at PCI:38:0:0
[     5.215] (II) NVIDIA(0):     (GPU-0)
[     5.215] (--) NVIDIA(0): Memory: 4194304 kBytes
[     5.215] (--) NVIDIA(0): VideoBIOS: 84.04.36.00.2f
[     5.215] (II) NVIDIA(0): Detected PCI Express Link width: 16X
[     5.231] (--) NVIDIA(GPU-0): CRT-0: disconnected
[     5.231] (--) NVIDIA(GPU-0): CRT-0: 400.0 MHz maximum pixel clock
[     5.231] (--) NVIDIA(GPU-0): 
[     5.263] (--) NVIDIA(GPU-0): BenQ BL2405 (DFP-0): connected
[     5.263] (--) NVIDIA(GPU-0): BenQ BL2405 (DFP-0): Internal TMDS
[     5.263] (--) NVIDIA(GPU-0): BenQ BL2405 (DFP-0): 330.0 MHz maximum pixel clock
[     5.263] (--) NVIDIA(GPU-0): 
[     5.263] (--) NVIDIA(GPU-0): DFP-1: disconnected
[     5.263] (--) NVIDIA(GPU-0): DFP-1: Internal TMDS
[     5.263] (--) NVIDIA(GPU-0): DFP-1: 165.0 MHz maximum pixel clock
[     5.263] (--) NVIDIA(GPU-0): 
[     5.263] (--) NVIDIA(GPU-0): DFP-2: disconnected
[     5.263] (--) NVIDIA(GPU-0): DFP-2: Internal DisplayPort
[     5.263] (--) NVIDIA(GPU-0): DFP-2: 960.0 MHz maximum pixel clock
[     5.263] (--) NVIDIA(GPU-0): 
[     5.263] (--) NVIDIA(GPU-0): DFP-3: disconnected
[     5.263] (--) NVIDIA(GPU-0): DFP-3: Internal TMDS
[     5.263] (--) NVIDIA(GPU-0): DFP-3: 165.0 MHz maximum pixel clock
[     5.263] (--) NVIDIA(GPU-0): 
[     5.263] (--) NVIDIA(GPU-0): DFP-4: disconnected
[     5.263] (--) NVIDIA(GPU-0): DFP-4: Internal DisplayPort
[     5.263] (--) NVIDIA(GPU-0): DFP-4: 960.0 MHz maximum pixel clock
[     5.263] (--) NVIDIA(GPU-0): 
[     5.263] (--) NVIDIA(GPU-0): DFP-5: disconnected
[     5.263] (--) NVIDIA(GPU-0): DFP-5: Internal TMDS
[     5.263] (--) NVIDIA(GPU-0): DFP-5: 165.0 MHz maximum pixel clock
[     5.263] (--) NVIDIA(GPU-0): 
[     5.263] (--) NVIDIA(GPU-0): DFP-6: disconnected
[     5.263] (--) NVIDIA(GPU-0): DFP-6: Internal DisplayPort
[     5.263] (--) NVIDIA(GPU-0): DFP-6: 960.0 MHz maximum pixel clock
[     5.263] (--) NVIDIA(GPU-0): 
[     5.263] (--) NVIDIA(GPU-0): DFP-7: disconnected
[     5.263] (--) NVIDIA(GPU-0): DFP-7: Internal TMDS
[     5.263] (--) NVIDIA(GPU-0): DFP-7: 165.0 MHz maximum pixel clock
[     5.263] (--) NVIDIA(GPU-0): 
[     5.265] (II) NVIDIA(0): Validated MetaModes:
[     5.265] (II) NVIDIA(0):     "nvidia-auto-select+0+0"
[     5.265] (II) NVIDIA(0): Virtual screen size determined to be 1920 x 1080
[     5.267] (--) NVIDIA(0): DPI set to (92, 91); computed from "UseEdidDpi" X config
[     5.267] (--) NVIDIA(0):     option
[     5.267] (**) NVIDIA(G0): Depth 24, (--) framebuffer bpp 32
[     5.267] (==) NVIDIA(G0): RGB weight 888
[     5.267] (==) NVIDIA(G0): Default visual is TrueColor
[     5.267] (==) NVIDIA(G0): Using gamma correction (1.0, 1.0, 1.0)
[     5.267] (II) Applying OutputClass "nvidia" options to /dev/dri/card0
[     5.267] (II) Applying OutputClass "nvidia" options to /dev/dri/card0
[     5.267] (**) NVIDIA(G0): Option "Stereo" "0"
[     5.267] (**) NVIDIA(G0): Option "SLI" "Off"
[     5.267] (**) NVIDIA(G0): Option "MultiGPU" "Off"
[     5.267] (**) NVIDIA(G0): Option "BaseMosaic" "off"
[     5.267] (**) NVIDIA(G0): Option "AllowEmptyInitialConfiguration"
[     5.267] (**) NVIDIA(G0): Stereo disabled by request
[     5.267] (**) NVIDIA(G0): NVIDIA SLI disabled.
[     5.267] (**) NVIDIA(G0): NVIDIA Multi-GPU disabled.
[     5.267] (**) NVIDIA(G0): Enabling 2D acceleration
[     5.267] (II) NVIDIA: The X server supports PRIME Render Offload.
[     6.512] (--) NVIDIA(0): Valid display device(s) on GPU-1 at PCI:37:0:0
[     6.513] (--) NVIDIA(0):     DFP-0
[     6.513] (--) NVIDIA(0):     DFP-1
[     6.513] (--) NVIDIA(0):     DFP-2
[     6.513] (--) NVIDIA(0):     DFP-3 (boot)
[     6.513] (II) NVIDIA(G0): NVIDIA GPU NVIDIA GeForce GTX 1050 (GP107-A) at PCI:37:0:0
[     6.513] (II) NVIDIA(G0):     (GPU-1)
[     6.513] (--) NVIDIA(G0): Memory: 2097152 kBytes
[     6.513] (--) NVIDIA(G0): VideoBIOS: 86.07.39.00.18
[     6.513] (II) NVIDIA(G0): Detected PCI Express Link width: 16X
[     6.513] (--) NVIDIA(GPU-1): DFP-0: disconnected
[     6.513] (--) NVIDIA(GPU-1): DFP-0: Internal TMDS
[     6.513] (--) NVIDIA(GPU-1): DFP-0: 330.0 MHz maximum pixel clock
[     6.513] (--) NVIDIA(GPU-1): 
[     6.557] (--) NVIDIA(GPU-1): BenQ BL2405 (DFP-1): connected
[     6.557] (--) NVIDIA(GPU-1): BenQ BL2405 (DFP-1): Internal TMDS
[     6.557] (--) NVIDIA(GPU-1): BenQ BL2405 (DFP-1): 600.0 MHz maximum pixel clock
[     6.557] (--) NVIDIA(GPU-1): 
[     6.557] (--) NVIDIA(GPU-1): DFP-2: disconnected
[     6.557] (--) NVIDIA(GPU-1): DFP-2: Internal DisplayPort
[     6.557] (--) NVIDIA(GPU-1): DFP-2: 1440.0 MHz maximum pixel clock
[     6.557] (--) NVIDIA(GPU-1): 
[     6.650] (--) NVIDIA(GPU-1): Acer G246HL (DFP-3): connected
[     6.650] (--) NVIDIA(GPU-1): Acer G246HL (DFP-3): Internal TMDS
[     6.650] (--) NVIDIA(GPU-1): Acer G246HL (DFP-3): 300.0 MHz maximum pixel clock
[     6.650] (--) NVIDIA(GPU-1): 
[     6.663] (II) NVIDIA(G0): Validated MetaModes:
[     6.663] (II) NVIDIA(G0):     "NULL"
[     6.663] (II) NVIDIA(G0): Virtual screen size determined to be 640 x 480
[     6.670] (WW) NVIDIA(G0): Cannot find size of first mode for Acer G246HL (DFP-3); cannot
[     6.670] (WW) NVIDIA(G0):     compute DPI from Acer G246HL (DFP-3)'s EDID.
[     6.670] (==) NVIDIA(G0): DPI set to (75, 75); computed from built-in default
[     6.670] (II) NVIDIA(G1): NVIDIA GeForce GTX 1050 (GPU-1) already has an X screen
[     6.670] (II) NVIDIA(G1):     assigned; skipping this GPU screen
[     6.670] (EE) NVIDIA(G1): Failing initialization of X screen
[     6.670] (II) UnloadModule: "nvidia"
[     6.670] (II) UnloadSubModule: "wfb"
[     6.670] (II) UnloadSubModule: "fb"
[     6.671] (II) NVIDIA: Reserving 24576.00 MB of virtual memory for indirect memory
[     6.671] (II) NVIDIA:     access.
[     6.673] (II) NVIDIA(0): ACPI: failed to connect to the ACPI event daemon; the daemon
[     6.673] (II) NVIDIA(0):     may not be running or the "AcpidSocketPath" X
[     6.673] (II) NVIDIA(0):     configuration option may not be set correctly.  When the
[     6.673] (II) NVIDIA(0):     ACPI event daemon is available, the NVIDIA X driver will
[     6.673] (II) NVIDIA(0):     try to use it to receive ACPI event notifications.  For
[     6.673] (II) NVIDIA(0):     details, please see the "ConnectToAcpid" and
[     6.673] (II) NVIDIA(0):     "AcpidSocketPath" X configuration options in Appendix B: X
[     6.673] (II) NVIDIA(0):     Config Options in the README.
[     6.689] (II) NVIDIA(0): Setting mode "nvidia-auto-select+0+0"
[     6.745] (==) NVIDIA(0): Disabling shared memory pixmaps
[     6.745] (==) NVIDIA(0): Backing store enabled
[     6.745] (==) NVIDIA(0): Silken mouse disabled
[     6.746] (**) NVIDIA(0): DPMS enabled
[     6.746] (II) Loading sub module "dri2"
[     6.746] (II) LoadModule: "dri2"
[     6.746] (II) Module "dri2" already built-in
[     6.746] (II) NVIDIA(0): [DRI2] Setup complete
[     6.746] (II) NVIDIA(0): [DRI2]   VDPAU driver: nvidia
[     6.749] (II) NVIDIA(G0): ACPI: failed to connect to the ACPI event daemon; the daemon
[     6.749] (II) NVIDIA(G0):     may not be running or the "AcpidSocketPath" X
[     6.749] (II) NVIDIA(G0):     configuration option may not be set correctly.  When the
[     6.749] (II) NVIDIA(G0):     ACPI event daemon is available, the NVIDIA X driver will
[     6.749] (II) NVIDIA(G0):     try to use it to receive ACPI event notifications.  For
[     6.749] (II) NVIDIA(G0):     details, please see the "ConnectToAcpid" and
[     6.749] (II) NVIDIA(G0):     "AcpidSocketPath" X configuration options in Appendix B: X
[     6.749] (II) NVIDIA(G0):     Config Options in the README.
[     6.762] (II) NVIDIA(G0): Setting mode "NULL"
[     6.767] (==) NVIDIA(G0): Disabling shared memory pixmaps
[     6.767] (==) NVIDIA(G0): Backing store enabled
[     6.767] (==) NVIDIA(G0): Silken mouse disabled
[     6.767] (**) NVIDIA(G0): DPMS enabled
[     6.767] (WW) NVIDIA(G0): Option "metamodes" is not used
[     6.767] (II) Loading sub module "dri2"
[     6.767] (II) LoadModule: "dri2"
[     6.767] (II) Module "dri2" already built-in
[     6.767] (II) NVIDIA(G0): [DRI2] Setup complete
[     6.767] (II) NVIDIA(G0): [DRI2]   VDPAU driver: nvidia
[     6.767] (II) Initializing extension Generic Event Extension
[     6.767] (II) Initializing extension SHAPE
[     6.767] (II) Initializing extension MIT-SHM
[     6.767] (II) Initializing extension XInputExtension
[     6.767] (II) Initializing extension XTEST
[     6.767] (II) Initializing extension BIG-REQUESTS
[     6.768] (II) Initializing extension SYNC
[     6.768] (II) Initializing extension XKEYBOARD
[     6.768] (II) Initializing extension XC-MISC
[     6.768] (II) Initializing extension SECURITY
[     6.768] (II) Initializing extension XFIXES
[     6.768] (II) Initializing extension RENDER
[     6.768] (II) Initializing extension RANDR
[     6.768] (II) Initializing extension COMPOSITE
[     6.768] (II) Initializing extension DAMAGE
[     6.768] (II) Initializing extension MIT-SCREEN-SAVER
[     6.768] (II) Initializing extension DOUBLE-BUFFER
[     6.768] (II) Initializing extension RECORD
[     6.768] (II) Initializing extension DPMS
[     6.768] (II) Initializing extension Present
[     6.768] (II) Initializing extension DRI3
[     6.768] (II) Initializing extension X-Resource
[     6.768] (II) Initializing extension XVideo
[     6.768] (II) Initializing extension XVideo-MotionCompensation
[     6.768] (II) Initializing extension GLX
[     6.768] (II) Initializing extension GLX
[     6.769] (II) Indirect GLX disabled.
[     6.769] (II) GLX: Another vendor is already registered for screen 0
[     6.769] (II) Initializing extension XFree86-VidModeExtension
[     6.769] (II) Initializing extension XFree86-DGA
[     6.769] (II) Initializing extension XFree86-DRI
[     6.769] (II) Initializing extension DRI2
[     6.769] (II) Initializing extension NV-GLX
[     6.769] (II) Initializing extension NV-CONTROL
[     6.769] (II) Initializing extension XINERAMA
[     6.831] (II) config/udev: Adding input device Power Button (/dev/input/event1)
[     6.831] (**) Power Button: Applying InputClass "evdev keyboard catchall"
[     6.831] (**) Power Button: Applying InputClass "libinput keyboard catchall"
[     6.831] (**) Power Button: Applying InputClass "system-keyboard"
[     6.831] (II) LoadModule: "libinput"
[     6.831] (II) Loading /usr/lib/xorg/modules/input/libinput_drv.so
[     6.835] (II) Module libinput: vendor="X.Org Foundation"
[     6.835] 	compiled for 1.20.11, module version = 1.1.0
[     6.835] 	Module class: X.Org XInput Driver
[     6.835] 	ABI class: X.Org XInput driver, version 24.1
[     6.835] (II) Using input driver 'libinput' for 'Power Button'
[     6.835] (**) Power Button: always reports core events
[     6.835] (**) Option "Device" "/dev/input/event1"
[     6.836] (**) Option "_source" "server/udev"
[     6.848] (II) event1  - Power Button: is tagged by udev as: Keyboard
[     6.848] (II) event1  - Power Button: device is a keyboard
[     6.848] (II) event1  - Power Button: device removed
[     6.871] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/LNXPWRBN:00/input/input1/event1"
[     6.871] (II) XINPUT: Adding extended input device "Power Button" (type: KEYBOARD, id 6)
[     6.871] (**) Option "xkb_layout" "de"
[     6.885] (II) event1  - Power Button: is tagged by udev as: Keyboard
[     6.885] (II) event1  - Power Button: device is a keyboard
[     6.885] (II) config/udev: Adding input device Power Button (/dev/input/event0)
[     6.885] (**) Power Button: Applying InputClass "evdev keyboard catchall"
[     6.885] (**) Power Button: Applying InputClass "libinput keyboard catchall"
[     6.886] (**) Power Button: Applying InputClass "system-keyboard"
[     6.886] (II) Using input driver 'libinput' for 'Power Button'
[     6.886] (**) Power Button: always reports core events
[     6.886] (**) Option "Device" "/dev/input/event0"
[     6.886] (**) Option "_source" "server/udev"
[     6.886] (II) event0  - Power Button: is tagged by udev as: Keyboard
[     6.886] (II) event0  - Power Button: device is a keyboard
[     6.886] (II) event0  - Power Button: device removed
[     6.925] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0C:00/input/input0/event0"
[     6.925] (II) XINPUT: Adding extended input device "Power Button" (type: KEYBOARD, id 7)
[     6.925] (**) Option "xkb_layout" "de"
[     6.925] (II) event0  - Power Button: is tagged by udev as: Keyboard
[     6.925] (II) event0  - Power Button: device is a keyboard
[     6.926] (II) config/udev: Adding input device Logitech MX Master 2S (/dev/input/event26)
[     6.926] (**) Logitech MX Master 2S: Applying InputClass "evdev pointer catchall"
[     6.926] (**) Logitech MX Master 2S: Applying InputClass "evdev keyboard catchall"
[     6.926] (**) Logitech MX Master 2S: Applying InputClass "libinput pointer catchall"
[     6.926] (**) Logitech MX Master 2S: Applying InputClass "libinput keyboard catchall"
[     6.926] (**) Logitech MX Master 2S: Applying InputClass "system-keyboard"
[     6.926] (II) Using input driver 'libinput' for 'Logitech MX Master 2S'
[     6.926] (**) Logitech MX Master 2S: always reports core events
[     6.926] (**) Option "Device" "/dev/input/event26"
[     6.926] (**) Option "_source" "server/udev"
[     6.927] (II) event26 - Logitech MX Master 2S: is tagged by udev as: Keyboard Mouse
[     6.927] (II) event26 - Logitech MX Master 2S: device is a pointer
[     6.927] (II) event26 - Logitech MX Master 2S: device is a keyboard
[     6.927] (II) event26 - Logitech MX Master 2S: device removed
[     6.965] (II) libinput: Logitech MX Master 2S: needs a virtual subdevice
[     6.965] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:01.3/0000:03:00.0/usb1/1-1/1-1:1.2/0003:046D:C52B.0003/0003:046D:4069.0006/input/input41/event26"
[     6.965] (II) XINPUT: Adding extended input device "Logitech MX Master 2S" (type: MOUSE, id 8)
[     6.965] (**) Option "AccelerationScheme" "none"
[     6.965] (**) Logitech MX Master 2S: (accel) selected scheme none/0
[     6.965] (**) Logitech MX Master 2S: (accel) acceleration factor: 2.000
[     6.965] (**) Logitech MX Master 2S: (accel) acceleration threshold: 4
[     6.966] (II) event26 - Logitech MX Master 2S: is tagged by udev as: Keyboard Mouse
[     6.966] (II) event26 - Logitech MX Master 2S: device is a pointer
[     6.966] (II) event26 - Logitech MX Master 2S: device is a keyboard
[     6.966] (II) config/udev: Adding input device Logitech MX Master 2S (/dev/input/mouse1)
[     6.966] (**) Logitech MX Master 2S: Applying InputClass "system-keyboard"
[     6.966] (II) No input driver specified, ignoring this device.
[     6.966] (II) This device may have been added with another device file.
[     6.967] (II) config/udev: Adding input device Logitech MX Master 3 (/dev/input/event27)
[     6.967] (**) Logitech MX Master 3: Applying InputClass "evdev pointer catchall"
[     6.967] (**) Logitech MX Master 3: Applying InputClass "evdev keyboard catchall"
[     6.967] (**) Logitech MX Master 3: Applying InputClass "libinput pointer catchall"
[     6.967] (**) Logitech MX Master 3: Applying InputClass "libinput keyboard catchall"
[     6.967] (**) Logitech MX Master 3: Applying InputClass "system-keyboard"
[     6.967] (II) Using input driver 'libinput' for 'Logitech MX Master 3'
[     6.967] (**) Logitech MX Master 3: always reports core events
[     6.967] (**) Option "Device" "/dev/input/event27"
[     6.967] (**) Option "_source" "server/udev"
[     6.967] (II) event27 - Logitech MX Master 3: is tagged by udev as: Keyboard Mouse
[     6.967] (II) event27 - Logitech MX Master 3: device is a pointer
[     6.967] (II) event27 - Logitech MX Master 3: device is a keyboard
[     6.968] (II) event27 - Logitech MX Master 3: device removed
[     6.991] (II) libinput: Logitech MX Master 3: needs a virtual subdevice
[     6.991] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:01.3/0000:03:00.0/usb1/1-1/1-1:1.2/0003:046D:C52B.0003/0003:046D:4082.0007/input/input42/event27"
[     6.991] (II) XINPUT: Adding extended input device "Logitech MX Master 3" (type: MOUSE, id 9)
[     6.992] (**) Option "AccelerationScheme" "none"
[     6.992] (**) Logitech MX Master 3: (accel) selected scheme none/0
[     6.992] (**) Logitech MX Master 3: (accel) acceleration factor: 2.000
[     6.992] (**) Logitech MX Master 3: (accel) acceleration threshold: 4
[     6.992] (II) event27 - Logitech MX Master 3: is tagged by udev as: Keyboard Mouse
[     6.992] (II) event27 - Logitech MX Master 3: device is a pointer
[     6.992] (II) event27 - Logitech MX Master 3: device is a keyboard
[     6.993] (II) config/udev: Adding input device Logitech MX Master 3 (/dev/input/mouse2)
[     6.993] (**) Logitech MX Master 3: Applying InputClass "system-keyboard"
[     6.993] (II) No input driver specified, ignoring this device.
[     6.993] (II) This device may have been added with another device file.
[     6.993] (II) config/udev: Adding input device ROCCAT ROCCAT Ryos MK Glow (/dev/input/event24)
[     6.993] (**) ROCCAT ROCCAT Ryos MK Glow: Applying InputClass "evdev keyboard catchall"
[     6.993] (**) ROCCAT ROCCAT Ryos MK Glow: Applying InputClass "libinput keyboard catchall"
[     6.993] (**) ROCCAT ROCCAT Ryos MK Glow: Applying InputClass "system-keyboard"
[     6.993] (II) Using input driver 'libinput' for 'ROCCAT ROCCAT Ryos MK Glow'
[     6.993] (**) ROCCAT ROCCAT Ryos MK Glow: always reports core events
[     6.993] (**) Option "Device" "/dev/input/event24"
[     6.993] (**) Option "_source" "server/udev"
[     6.994] (II) event24 - ROCCAT ROCCAT Ryos MK Glow: is tagged by udev as: Keyboard
[     6.994] (II) event24 - ROCCAT ROCCAT Ryos MK Glow: device is a keyboard
[     6.994] (II) event24 - ROCCAT ROCCAT Ryos MK Glow: device removed
[     7.018] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:01.3/0000:03:00.0/usb1/1-2/1-2:1.0/0003:1E7D:31CE.0004/input/input29/event24"
[     7.018] (II) XINPUT: Adding extended input device "ROCCAT ROCCAT Ryos MK Glow" (type: KEYBOARD, id 10)
[     7.018] (**) Option "xkb_layout" "de"
[     7.019] (II) event24 - ROCCAT ROCCAT Ryos MK Glow: is tagged by udev as: Keyboard
[     7.019] (II) event24 - ROCCAT ROCCAT Ryos MK Glow: device is a keyboard
[     7.019] (II) config/udev: Adding input device ROCCAT ROCCAT Ryos MK Glow (/dev/input/event25)
[     7.019] (**) ROCCAT ROCCAT Ryos MK Glow: Applying InputClass "evdev pointer catchall"
[     7.019] (**) ROCCAT ROCCAT Ryos MK Glow: Applying InputClass "evdev keyboard catchall"
[     7.019] (**) ROCCAT ROCCAT Ryos MK Glow: Applying InputClass "libinput pointer catchall"
[     7.019] (**) ROCCAT ROCCAT Ryos MK Glow: Applying InputClass "libinput keyboard catchall"
[     7.019] (**) ROCCAT ROCCAT Ryos MK Glow: Applying InputClass "system-keyboard"
[     7.019] (II) Using input driver 'libinput' for 'ROCCAT ROCCAT Ryos MK Glow'
[     7.019] (**) ROCCAT ROCCAT Ryos MK Glow: always reports core events
[     7.019] (**) Option "Device" "/dev/input/event25"
[     7.019] (**) Option "_source" "server/udev"
[     7.020] (II) event25 - ROCCAT ROCCAT Ryos MK Glow: is tagged by udev as: Keyboard Mouse
[     7.020] (II) event25 - ROCCAT ROCCAT Ryos MK Glow: device is a pointer
[     7.020] (II) event25 - ROCCAT ROCCAT Ryos MK Glow: device is a keyboard
[     7.020] (II) event25 - ROCCAT ROCCAT Ryos MK Glow: device removed
[     7.045] (II) libinput: ROCCAT ROCCAT Ryos MK Glow: needs a virtual subdevice
[     7.045] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:01.3/0000:03:00.0/usb1/1-2/1-2:1.1/0003:1E7D:31CE.0005/input/input30/event25"
[     7.045] (II) XINPUT: Adding extended input device "ROCCAT ROCCAT Ryos MK Glow" (type: MOUSE, id 11)
[     7.045] (**) Option "AccelerationScheme" "none"
[     7.045] (**) ROCCAT ROCCAT Ryos MK Glow: (accel) selected scheme none/0
[     7.045] (**) ROCCAT ROCCAT Ryos MK Glow: (accel) acceleration factor: 2.000
[     7.045] (**) ROCCAT ROCCAT Ryos MK Glow: (accel) acceleration threshold: 4
[     7.046] (II) event25 - ROCCAT ROCCAT Ryos MK Glow: is tagged by udev as: Keyboard Mouse
[     7.046] (II) event25 - ROCCAT ROCCAT Ryos MK Glow: device is a pointer
[     7.046] (II) event25 - ROCCAT ROCCAT Ryos MK Glow: device is a keyboard
[     7.046] (II) config/udev: Adding input device ROCCAT ROCCAT Ryos MK Glow (/dev/input/mouse0)
[     7.046] (**) ROCCAT ROCCAT Ryos MK Glow: Applying InputClass "system-keyboard"
[     7.046] (II) No input driver specified, ignoring this device.
[     7.046] (II) This device may have been added with another device file.
[     7.046] (II) config/udev: Adding input device HDA NVidia HDMI/DP,pcm=3 (/dev/input/event3)
[     7.046] (II) No input driver specified, ignoring this device.
[     7.046] (II) This device may have been added with another device file.
[     7.047] (II) config/udev: Adding input device HDA NVidia HDMI/DP,pcm=7 (/dev/input/event4)
[     7.047] (II) No input driver specified, ignoring this device.
[     7.047] (II) This device may have been added with another device file.
[     7.047] (II) config/udev: Adding input device HDA NVidia HDMI/DP,pcm=8 (/dev/input/event5)
[     7.047] (II) No input driver specified, ignoring this device.
[     7.047] (II) This device may have been added with another device file.
[     7.047] (II) config/udev: Adding input device HDA NVidia HDMI/DP,pcm=9 (/dev/input/event6)
[     7.047] (II) No input driver specified, ignoring this device.
[     7.047] (II) This device may have been added with another device file.
[     7.047] (II) config/udev: Adding input device HDA NVidia HDMI/DP,pcm=10 (/dev/input/event7)
[     7.047] (II) No input driver specified, ignoring this device.
[     7.047] (II) This device may have been added with another device file.
[     7.047] (II) config/udev: Adding input device HDA NVidia HDMI/DP,pcm=11 (/dev/input/event8)
[     7.047] (II) No input driver specified, ignoring this device.
[     7.047] (II) This device may have been added with another device file.
[     7.048] (II) config/udev: Adding input device HDA NVidia HDMI/DP,pcm=3 (/dev/input/event9)
[     7.048] (II) No input driver specified, ignoring this device.
[     7.048] (II) This device may have been added with another device file.
[     7.048] (II) config/udev: Adding input device HDA NVidia HDMI/DP,pcm=7 (/dev/input/event10)
[     7.048] (II) No input driver specified, ignoring this device.
[     7.048] (II) This device may have been added with another device file.
[     7.048] (II) config/udev: Adding input device HDA NVidia HDMI/DP,pcm=8 (/dev/input/event11)
[     7.048] (II) No input driver specified, ignoring this device.
[     7.048] (II) This device may have been added with another device file.
[     7.048] (II) config/udev: Adding input device HDA NVidia HDMI/DP,pcm=9 (/dev/input/event12)
[     7.048] (II) No input driver specified, ignoring this device.
[     7.048] (II) This device may have been added with another device file.
[     7.048] (II) config/udev: Adding input device HDA NVidia HDMI/DP,pcm=10 (/dev/input/event13)
[     7.048] (II) No input driver specified, ignoring this device.
[     7.048] (II) This device may have been added with another device file.
[     7.048] (II) config/udev: Adding input device HDA NVidia HDMI/DP,pcm=11 (/dev/input/event14)
[     7.048] (II) No input driver specified, ignoring this device.
[     7.048] (II) This device may have been added with another device file.
[     7.049] (II) config/udev: Adding input device HDA NVidia HDMI/DP,pcm=12 (/dev/input/event15)
[     7.049] (II) No input driver specified, ignoring this device.
[     7.049] (II) This device may have been added with another device file.
[     7.049] (II) config/udev: Adding input device HD-Audio Generic Front Mic (/dev/input/event16)
[     7.049] (II) No input driver specified, ignoring this device.
[     7.049] (II) This device may have been added with another device file.
[     7.049] (II) config/udev: Adding input device HD-Audio Generic Rear Mic (/dev/input/event17)
[     7.049] (II) No input driver specified, ignoring this device.
[     7.049] (II) This device may have been added with another device file.
[     7.049] (II) config/udev: Adding input device HD-Audio Generic Line (/dev/input/event18)
[     7.049] (II) No input driver specified, ignoring this device.
[     7.049] (II) This device may have been added with another device file.
[     7.049] (II) config/udev: Adding input device HD-Audio Generic Line Out Front (/dev/input/event19)
[     7.049] (II) No input driver specified, ignoring this device.
[     7.049] (II) This device may have been added with another device file.
[     7.049] (II) config/udev: Adding input device HD-Audio Generic Line Out Surround (/dev/input/event20)
[     7.049] (II) No input driver specified, ignoring this device.
[     7.049] (II) This device may have been added with another device file.
[     7.050] (II) config/udev: Adding input device HD-Audio Generic Line Out CLFE (/dev/input/event21)
[     7.050] (II) No input driver specified, ignoring this device.
[     7.050] (II) This device may have been added with another device file.
[     7.050] (II) config/udev: Adding input device HD-Audio Generic Line Out Side (/dev/input/event22)
[     7.050] (II) No input driver specified, ignoring this device.
[     7.050] (II) This device may have been added with another device file.
[     7.050] (II) config/udev: Adding input device HD-Audio Generic Front Headphone (/dev/input/event23)
[     7.050] (II) No input driver specified, ignoring this device.
[     7.050] (II) This device may have been added with another device file.
[     7.050] (II) config/udev: Adding input device PC Speaker (/dev/input/event2)
[     7.050] (II) No input driver specified, ignoring this device.
[     7.050] (II) This device may have been added with another device file.
[     7.054] (**) Logitech MX Master 2S: Applying InputClass "evdev pointer catchall"
[     7.054] (**) Logitech MX Master 2S: Applying InputClass "evdev keyboard catchall"
[     7.054] (**) Logitech MX Master 2S: Applying InputClass "libinput pointer catchall"
[     7.054] (**) Logitech MX Master 2S: Applying InputClass "libinput keyboard catchall"
[     7.054] (**) Logitech MX Master 2S: Applying InputClass "system-keyboard"
[     7.054] (II) Using input driver 'libinput' for 'Logitech MX Master 2S'
[     7.054] (**) Logitech MX Master 2S: always reports core events
[     7.054] (**) Option "Device" "/dev/input/event26"
[     7.054] (**) Option "_source" "_driver/libinput"
[     7.054] (II) libinput: Logitech MX Master 2S: is a virtual subdevice
[     7.054] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:01.3/0000:03:00.0/usb1/1-1/1-1:1.2/0003:046D:C52B.0003/0003:046D:4069.0006/input/input41/event26"
[     7.054] (II) XINPUT: Adding extended input device "Logitech MX Master 2S" (type: KEYBOARD, id 12)
[     7.054] (**) Option "xkb_layout" "de"
[     7.054] (**) Logitech MX Master 3: Applying InputClass "evdev pointer catchall"
[     7.054] (**) Logitech MX Master 3: Applying InputClass "evdev keyboard catchall"
[     7.054] (**) Logitech MX Master 3: Applying InputClass "libinput pointer catchall"
[     7.054] (**) Logitech MX Master 3: Applying InputClass "libinput keyboard catchall"
[     7.054] (**) Logitech MX Master 3: Applying InputClass "system-keyboard"
[     7.054] (II) Using input driver 'libinput' for 'Logitech MX Master 3'
[     7.054] (**) Logitech MX Master 3: always reports core events
[     7.054] (**) Option "Device" "/dev/input/event27"
[     7.054] (**) Option "_source" "_driver/libinput"
[     7.054] (II) libinput: Logitech MX Master 3: is a virtual subdevice
[     7.054] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:01.3/0000:03:00.0/usb1/1-1/1-1:1.2/0003:046D:C52B.0003/0003:046D:4082.0007/input/input42/event27"
[     7.054] (II) XINPUT: Adding extended input device "Logitech MX Master 3" (type: KEYBOARD, id 13)
[     7.054] (**) Option "xkb_layout" "de"
[     7.054] (**) ROCCAT ROCCAT Ryos MK Glow: Applying InputClass "evdev pointer catchall"
[     7.054] (**) ROCCAT ROCCAT Ryos MK Glow: Applying InputClass "evdev keyboard catchall"
[     7.054] (**) ROCCAT ROCCAT Ryos MK Glow: Applying InputClass "libinput pointer catchall"
[     7.054] (**) ROCCAT ROCCAT Ryos MK Glow: Applying InputClass "libinput keyboard catchall"
[     7.054] (**) ROCCAT ROCCAT Ryos MK Glow: Applying InputClass "system-keyboard"
[     7.054] (II) Using input driver 'libinput' for 'ROCCAT ROCCAT Ryos MK Glow'
[     7.054] (**) ROCCAT ROCCAT Ryos MK Glow: always reports core events
[     7.054] (**) Option "Device" "/dev/input/event25"
[     7.054] (**) Option "_source" "_driver/libinput"
[     7.054] (II) libinput: ROCCAT ROCCAT Ryos MK Glow: is a virtual subdevice
[     7.054] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:01.3/0000:03:00.0/usb1/1-2/1-2:1.1/0003:1E7D:31CE.0005/input/input30/event25"
[     7.054] (II) XINPUT: Adding extended input device "ROCCAT ROCCAT Ryos MK Glow" (type: KEYBOARD, id 14)
[     7.054] (**) Option "xkb_layout" "de"
[     7.055] (II) config/udev: removing device ROCCAT ROCCAT Ryos MK Glow
[     7.055] (II) UnloadModule: "libinput"
[     7.055] (II) config/udev: removing device ROCCAT ROCCAT Ryos MK Glow
[     7.055] (II) event25 - ROCCAT ROCCAT Ryos MK Glow: device removed
[     7.088] (II) UnloadModule: "libinput"
[     7.089] (II) config/udev: Adding input device ROCCAT ROCCAT Ryos MK Glow (/dev/input/event25)
[     7.089] (**) ROCCAT ROCCAT Ryos MK Glow: Applying InputClass "evdev pointer catchall"
[     7.089] (**) ROCCAT ROCCAT Ryos MK Glow: Applying InputClass "evdev keyboard catchall"
[     7.089] (**) ROCCAT ROCCAT Ryos MK Glow: Applying InputClass "libinput pointer catchall"
[     7.089] (**) ROCCAT ROCCAT Ryos MK Glow: Applying InputClass "libinput keyboard catchall"
[     7.089] (**) ROCCAT ROCCAT Ryos MK Glow: Applying InputClass "system-keyboard"
[     7.089] (II) Using input driver 'libinput' for 'ROCCAT ROCCAT Ryos MK Glow'
[     7.089] (**) ROCCAT ROCCAT Ryos MK Glow: always reports core events
[     7.089] (**) Option "Device" "/dev/input/event25"
[     7.089] (**) Option "_source" "server/udev"
[     7.091] (II) event25 - ROCCAT ROCCAT Ryos MK Glow: is tagged by udev as: Keyboard Mouse
[     7.091] (II) event25 - ROCCAT ROCCAT Ryos MK Glow: device is a pointer
[     7.091] (II) event25 - ROCCAT ROCCAT Ryos MK Glow: device is a keyboard
[     7.092] (II) event25 - ROCCAT ROCCAT Ryos MK Glow: device removed
[     7.125] (II) libinput: ROCCAT ROCCAT Ryos MK Glow: needs a virtual subdevice
[     7.125] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:01.3/0000:03:00.0/usb1/1-2/1-2:1.1/0003:1E7D:31CE.0005/input/input30/event25"
[     7.125] (II) XINPUT: Adding extended input device "ROCCAT ROCCAT Ryos MK Glow" (type: MOUSE, id 11)
[     7.125] (**) Option "AccelerationScheme" "none"
[     7.125] (**) ROCCAT ROCCAT Ryos MK Glow: (accel) selected scheme none/0
[     7.125] (**) ROCCAT ROCCAT Ryos MK Glow: (accel) acceleration factor: 2.000
[     7.125] (**) ROCCAT ROCCAT Ryos MK Glow: (accel) acceleration threshold: 4
[     7.126] (II) event25 - ROCCAT ROCCAT Ryos MK Glow: is tagged by udev as: Keyboard Mouse
[     7.126] (II) event25 - ROCCAT ROCCAT Ryos MK Glow: device is a pointer
[     7.126] (II) event25 - ROCCAT ROCCAT Ryos MK Glow: device is a keyboard
[     7.126] (**) ROCCAT ROCCAT Ryos MK Glow: Applying InputClass "evdev pointer catchall"
[     7.126] (**) ROCCAT ROCCAT Ryos MK Glow: Applying InputClass "evdev keyboard catchall"
[     7.126] (**) ROCCAT ROCCAT Ryos MK Glow: Applying InputClass "libinput pointer catchall"
[     7.126] (**) ROCCAT ROCCAT Ryos MK Glow: Applying InputClass "libinput keyboard catchall"
[     7.126] (**) ROCCAT ROCCAT Ryos MK Glow: Applying InputClass "system-keyboard"
[     7.126] (II) Using input driver 'libinput' for 'ROCCAT ROCCAT Ryos MK Glow'
[     7.126] (**) ROCCAT ROCCAT Ryos MK Glow: always reports core events
[     7.126] (**) Option "Device" "/dev/input/event25"
[     7.126] (**) Option "_source" "_driver/libinput"
[     7.126] (II) libinput: ROCCAT ROCCAT Ryos MK Glow: is a virtual subdevice
[     7.126] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:01.3/0000:03:00.0/usb1/1-2/1-2:1.1/0003:1E7D:31CE.0005/input/input30/event25"
[     7.126] (II) XINPUT: Adding extended input device "ROCCAT ROCCAT Ryos MK Glow" (type: KEYBOARD, id 14)
[     7.126] (**) Option "xkb_layout" "de"
[     7.126] (II) config/udev: removing device ROCCAT ROCCAT Ryos MK Glow
[     7.126] (II) event24 - ROCCAT ROCCAT Ryos MK Glow: device removed
[     7.151] (II) UnloadModule: "libinput"
[     7.152] (II) config/udev: Adding input device ROCCAT ROCCAT Ryos MK Glow (/dev/input/event24)
[     7.152] (**) ROCCAT ROCCAT Ryos MK Glow: Applying InputClass "evdev keyboard catchall"
[     7.152] (**) ROCCAT ROCCAT Ryos MK Glow: Applying InputClass "libinput keyboard catchall"
[     7.152] (**) ROCCAT ROCCAT Ryos MK Glow: Applying InputClass "system-keyboard"
[     7.152] (II) Using input driver 'libinput' for 'ROCCAT ROCCAT Ryos MK Glow'
[     7.152] (**) ROCCAT ROCCAT Ryos MK Glow: always reports core events
[     7.152] (**) Option "Device" "/dev/input/event24"
[     7.152] (**) Option "_source" "server/udev"
[     7.153] (II) event24 - ROCCAT ROCCAT Ryos MK Glow: is tagged by udev as: Keyboard
[     7.154] (II) event24 - ROCCAT ROCCAT Ryos MK Glow: device is a keyboard
[     7.154] (II) event24 - ROCCAT ROCCAT Ryos MK Glow: device removed
[     7.191] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:01.3/0000:03:00.0/usb1/1-2/1-2:1.0/0003:1E7D:31CE.0004/input/input29/event24"
[     7.191] (II) XINPUT: Adding extended input device "ROCCAT ROCCAT Ryos MK Glow" (type: KEYBOARD, id 10)
[     7.191] (**) Option "xkb_layout" "de"
[     7.192] (II) event24 - ROCCAT ROCCAT Ryos MK Glow: is tagged by udev as: Keyboard
[     7.193] (II) event24 - ROCCAT ROCCAT Ryos MK Glow: device is a keyboard
[     7.193] (II) config/udev: Adding input device ROCCAT ROCCAT Ryos MK Glow (/dev/input/mouse0)
[     7.193] (**) ROCCAT ROCCAT Ryos MK Glow: Applying InputClass "system-keyboard"
[     7.193] (II) No input driver specified, ignoring this device.
[     7.193] (II) This device may have been added with another device file.
[     7.194] (II) config/udev: Adding input device Logitech MX Master 3 (/dev/input/mouse2)
[     7.194] (**) Logitech MX Master 3: Applying InputClass "system-keyboard"
[     7.194] (II) No input driver specified, ignoring this device.
[     7.194] (II) This device may have been added with another device file.
[     7.195] (II) config/udev: Adding input device Logitech MX Master 2S (/dev/input/mouse1)
[     7.195] (**) Logitech MX Master 2S: Applying InputClass "system-keyboard"
[     7.195] (II) No input driver specified, ignoring this device.
[     7.195] (II) This device may have been added with another device file.
[     7.195] (II) config/udev: removing device Logitech MX Master 3
[     7.195] (II) UnloadModule: "libinput"
[     7.195] (II) config/udev: removing device Logitech MX Master 3
[     7.195] (II) event27 - Logitech MX Master 3: device removed
[     7.232] (II) UnloadModule: "libinput"
[     7.232] (II) config/udev: Adding input device Logitech MX Master 3 (/dev/input/event27)
[     7.232] (**) Logitech MX Master 3: Applying InputClass "evdev pointer catchall"
[     7.232] (**) Logitech MX Master 3: Applying InputClass "evdev keyboard catchall"
[     7.232] (**) Logitech MX Master 3: Applying InputClass "libinput pointer catchall"
[     7.232] (**) Logitech MX Master 3: Applying InputClass "libinput keyboard catchall"
[     7.232] (**) Logitech MX Master 3: Applying InputClass "system-keyboard"
[     7.232] (II) Using input driver 'libinput' for 'Logitech MX Master 3'
[     7.232] (**) Logitech MX Master 3: always reports core events
[     7.232] (**) Option "Device" "/dev/input/event27"
[     7.232] (**) Option "_source" "server/udev"
[     7.233] (II) event27 - Logitech MX Master 3: is tagged by udev as: Keyboard Mouse
[     7.233] (II) event27 - Logitech MX Master 3: device is a pointer
[     7.233] (II) event27 - Logitech MX Master 3: device is a keyboard
[     7.233] (II) event27 - Logitech MX Master 3: device removed
[     7.298] (II) libinput: Logitech MX Master 3: needs a virtual subdevice
[     7.298] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:01.3/0000:03:00.0/usb1/1-1/1-1:1.2/0003:046D:C52B.0003/0003:046D:4082.0007/input/input42/event27"
[     7.298] (II) XINPUT: Adding extended input device "Logitech MX Master 3" (type: MOUSE, id 9)
[     7.298] (**) Option "AccelerationScheme" "none"
[     7.298] (**) Logitech MX Master 3: (accel) selected scheme none/0
[     7.298] (**) Logitech MX Master 3: (accel) acceleration factor: 2.000
[     7.298] (**) Logitech MX Master 3: (accel) acceleration threshold: 4
[     7.299] (II) event27 - Logitech MX Master 3: is tagged by udev as: Keyboard Mouse
[     7.299] (II) event27 - Logitech MX Master 3: device is a pointer
[     7.299] (II) event27 - Logitech MX Master 3: device is a keyboard
[     7.299] (**) Logitech MX Master 3: Applying InputClass "evdev pointer catchall"
[     7.299] (**) Logitech MX Master 3: Applying InputClass "evdev keyboard catchall"
[     7.299] (**) Logitech MX Master 3: Applying InputClass "libinput pointer catchall"
[     7.299] (**) Logitech MX Master 3: Applying InputClass "libinput keyboard catchall"
[     7.299] (**) Logitech MX Master 3: Applying InputClass "system-keyboard"
[     7.299] (II) Using input driver 'libinput' for 'Logitech MX Master 3'
[     7.299] (**) Logitech MX Master 3: always reports core events
[     7.299] (**) Option "Device" "/dev/input/event27"
[     7.299] (**) Option "_source" "_driver/libinput"
[     7.299] (II) libinput: Logitech MX Master 3: is a virtual subdevice
[     7.299] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:01.3/0000:03:00.0/usb1/1-1/1-1:1.2/0003:046D:C52B.0003/0003:046D:4082.0007/input/input42/event27"
[     7.299] (II) XINPUT: Adding extended input device "Logitech MX Master 3" (type: KEYBOARD, id 13)
[     7.299] (**) Option "xkb_layout" "de"
[     7.300] (II) config/udev: removing device Logitech MX Master 2S
[     7.300] (II) UnloadModule: "libinput"
[     7.300] (II) config/udev: removing device Logitech MX Master 2S
[     7.300] (II) event26 - Logitech MX Master 2S: device removed
[     7.338] (II) UnloadModule: "libinput"
[     7.339] (II) config/udev: Adding input device Logitech MX Master 2S (/dev/input/event26)
[     7.339] (**) Logitech MX Master 2S: Applying InputClass "evdev pointer catchall"
[     7.339] (**) Logitech MX Master 2S: Applying InputClass "evdev keyboard catchall"
[     7.339] (**) Logitech MX Master 2S: Applying InputClass "libinput pointer catchall"
[     7.339] (**) Logitech MX Master 2S: Applying InputClass "libinput keyboard catchall"
[     7.339] (**) Logitech MX Master 2S: Applying InputClass "system-keyboard"
[     7.339] (II) Using input driver 'libinput' for 'Logitech MX Master 2S'
[     7.339] (**) Logitech MX Master 2S: always reports core events
[     7.339] (**) Option "Device" "/dev/input/event26"
[     7.339] (**) Option "_source" "server/udev"
[     7.340] (II) event26 - Logitech MX Master 2S: is tagged by udev as: Keyboard Mouse
[     7.340] (II) event26 - Logitech MX Master 2S: device is a pointer
[     7.340] (II) event26 - Logitech MX Master 2S: device is a keyboard
[     7.340] (II) event26 - Logitech MX Master 2S: device removed
[     7.365] (II) libinput: Logitech MX Master 2S: needs a virtual subdevice
[     7.365] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:01.3/0000:03:00.0/usb1/1-1/1-1:1.2/0003:046D:C52B.0003/0003:046D:4069.0006/input/input41/event26"
[     7.365] (II) XINPUT: Adding extended input device "Logitech MX Master 2S" (type: MOUSE, id 8)
[     7.365] (**) Option "AccelerationScheme" "none"
[     7.365] (**) Logitech MX Master 2S: (accel) selected scheme none/0
[     7.365] (**) Logitech MX Master 2S: (accel) acceleration factor: 2.000
[     7.365] (**) Logitech MX Master 2S: (accel) acceleration threshold: 4
[     7.366] (II) event26 - Logitech MX Master 2S: is tagged by udev as: Keyboard Mouse
[     7.366] (II) event26 - Logitech MX Master 2S: device is a pointer
[     7.366] (II) event26 - Logitech MX Master 2S: device is a keyboard
[     7.366] (**) Logitech MX Master 2S: Applying InputClass "evdev pointer catchall"
[     7.366] (**) Logitech MX Master 2S: Applying InputClass "evdev keyboard catchall"
[     7.366] (**) Logitech MX Master 2S: Applying InputClass "libinput pointer catchall"
[     7.366] (**) Logitech MX Master 2S: Applying InputClass "libinput keyboard catchall"
[     7.366] (**) Logitech MX Master 2S: Applying InputClass "system-keyboard"
[     7.366] (II) Using input driver 'libinput' for 'Logitech MX Master 2S'
[     7.366] (**) Logitech MX Master 2S: always reports core events
[     7.366] (**) Option "Device" "/dev/input/event26"
[     7.366] (**) Option "_source" "_driver/libinput"
[     7.366] (II) libinput: Logitech MX Master 2S: is a virtual subdevice
[     7.366] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:01.3/0000:03:00.0/usb1/1-1/1-1:1.2/0003:046D:C52B.0003/0003:046D:4069.0006/input/input41/event26"
[     7.366] (II) XINPUT: Adding extended input device "Logitech MX Master 2S" (type: KEYBOARD, id 12)
[     7.366] (**) Option "xkb_layout" "de"
[    14.597] (--) NVIDIA(GPU-0): CRT-0: disconnected
[    14.597] (--) NVIDIA(GPU-0): CRT-0: 400.0 MHz maximum pixel clock
[    14.597] (--) NVIDIA(GPU-0): 
[    14.628] (--) NVIDIA(GPU-0): BenQ BL2405 (DFP-0): connected
[    14.628] (--) NVIDIA(GPU-0): BenQ BL2405 (DFP-0): Internal TMDS
[    14.628] (--) NVIDIA(GPU-0): BenQ BL2405 (DFP-0): 330.0 MHz maximum pixel clock
[    14.628] (--) NVIDIA(GPU-0): 
[    14.628] (--) NVIDIA(GPU-0): DFP-1: disconnected
[    14.628] (--) NVIDIA(GPU-0): DFP-1: Internal TMDS
[    14.628] (--) NVIDIA(GPU-0): DFP-1: 165.0 MHz maximum pixel clock
[    14.628] (--) NVIDIA(GPU-0): 
[    14.628] (--) NVIDIA(GPU-0): DFP-2: disconnected
[    14.628] (--) NVIDIA(GPU-0): DFP-2: Internal DisplayPort
[    14.628] (--) NVIDIA(GPU-0): DFP-2: 960.0 MHz maximum pixel clock
[    14.628] (--) NVIDIA(GPU-0): 
[    14.628] (--) NVIDIA(GPU-0): DFP-3: disconnected
[    14.628] (--) NVIDIA(GPU-0): DFP-3: Internal TMDS
[    14.628] (--) NVIDIA(GPU-0): DFP-3: 165.0 MHz maximum pixel clock
[    14.628] (--) NVIDIA(GPU-0): 
[    14.628] (--) NVIDIA(GPU-0): DFP-4: disconnected
[    14.628] (--) NVIDIA(GPU-0): DFP-4: Internal DisplayPort
[    14.628] (--) NVIDIA(GPU-0): DFP-4: 960.0 MHz maximum pixel clock
[    14.628] (--) NVIDIA(GPU-0): 
[    14.628] (--) NVIDIA(GPU-0): DFP-5: disconnected
[    14.628] (--) NVIDIA(GPU-0): DFP-5: Internal TMDS
[    14.628] (--) NVIDIA(GPU-0): DFP-5: 165.0 MHz maximum pixel clock
[    14.628] (--) NVIDIA(GPU-0): 
[    14.628] (--) NVIDIA(GPU-0): DFP-6: disconnected
[    14.628] (--) NVIDIA(GPU-0): DFP-6: Internal DisplayPort
[    14.628] (--) NVIDIA(GPU-0): DFP-6: 960.0 MHz maximum pixel clock
[    14.628] (--) NVIDIA(GPU-0): 
[    14.629] (--) NVIDIA(GPU-0): DFP-7: disconnected
[    14.629] (--) NVIDIA(GPU-0): DFP-7: Internal TMDS
[    14.629] (--) NVIDIA(GPU-0): DFP-7: 165.0 MHz maximum pixel clock
[    14.629] (--) NVIDIA(GPU-0): 
[    14.645] (--) NVIDIA(GPU-0): CRT-0: disconnected
[    14.645] (--) NVIDIA(GPU-0): CRT-0: 400.0 MHz maximum pixel clock
[    14.645] (--) NVIDIA(GPU-0): 
[    14.677] (--) NVIDIA(GPU-0): BenQ BL2405 (DFP-0): connected
[    14.677] (--) NVIDIA(GPU-0): BenQ BL2405 (DFP-0): Internal TMDS
[    14.677] (--) NVIDIA(GPU-0): BenQ BL2405 (DFP-0): 330.0 MHz maximum pixel clock
[    14.677] (--) NVIDIA(GPU-0): 
[    14.677] (--) NVIDIA(GPU-0): DFP-1: disconnected
[    14.677] (--) NVIDIA(GPU-0): DFP-1: Internal TMDS
[    14.677] (--) NVIDIA(GPU-0): DFP-1: 165.0 MHz maximum pixel clock
[    14.677] (--) NVIDIA(GPU-0): 
[    14.677] (--) NVIDIA(GPU-0): DFP-2: disconnected
[    14.677] (--) NVIDIA(GPU-0): DFP-2: Internal DisplayPort
[    14.677] (--) NVIDIA(GPU-0): DFP-2: 960.0 MHz maximum pixel clock
[    14.677] (--) NVIDIA(GPU-0): 
[    14.677] (--) NVIDIA(GPU-0): DFP-3: disconnected
[    14.677] (--) NVIDIA(GPU-0): DFP-3: Internal TMDS
[    14.677] (--) NVIDIA(GPU-0): DFP-3: 165.0 MHz maximum pixel clock
[    14.677] (--) NVIDIA(GPU-0): 
[    14.677] (--) NVIDIA(GPU-0): DFP-4: disconnected
[    14.677] (--) NVIDIA(GPU-0): DFP-4: Internal DisplayPort
[    14.677] (--) NVIDIA(GPU-0): DFP-4: 960.0 MHz maximum pixel clock
[    14.677] (--) NVIDIA(GPU-0): 
[    14.677] (--) NVIDIA(GPU-0): DFP-5: disconnected
[    14.677] (--) NVIDIA(GPU-0): DFP-5: Internal TMDS
[    14.677] (--) NVIDIA(GPU-0): DFP-5: 165.0 MHz maximum pixel clock
[    14.677] (--) NVIDIA(GPU-0): 
[    14.677] (--) NVIDIA(GPU-0): DFP-6: disconnected
[    14.677] (--) NVIDIA(GPU-0): DFP-6: Internal DisplayPort
[    14.677] (--) NVIDIA(GPU-0): DFP-6: 960.0 MHz maximum pixel clock
[    14.677] (--) NVIDIA(GPU-0): 
[    14.677] (--) NVIDIA(GPU-0): DFP-7: disconnected
[    14.677] (--) NVIDIA(GPU-0): DFP-7: Internal TMDS
[    14.677] (--) NVIDIA(GPU-0): DFP-7: 165.0 MHz maximum pixel clock
[    14.677] (--) NVIDIA(GPU-0): 
[    14.677] (--) NVIDIA(GPU-1): DFP-0: disconnected
[    14.677] (--) NVIDIA(GPU-1): DFP-0: Internal TMDS
[    14.677] (--) NVIDIA(GPU-1): DFP-0: 330.0 MHz maximum pixel clock
[    14.677] (--) NVIDIA(GPU-1): 
[    14.721] (--) NVIDIA(GPU-1): BenQ BL2405 (DFP-1): connected
[    14.721] (--) NVIDIA(GPU-1): BenQ BL2405 (DFP-1): Internal TMDS
[    14.721] (--) NVIDIA(GPU-1): BenQ BL2405 (DFP-1): 600.0 MHz maximum pixel clock
[    14.721] (--) NVIDIA(GPU-1): 
[    14.721] (--) NVIDIA(GPU-1): DFP-2: disconnected
[    14.721] (--) NVIDIA(GPU-1): DFP-2: Internal DisplayPort
[    14.721] (--) NVIDIA(GPU-1): DFP-2: 1440.0 MHz maximum pixel clock
[    14.721] (--) NVIDIA(GPU-1): 
[    14.814] (--) NVIDIA(GPU-1): Acer G246HL (DFP-3): connected
[    14.814] (--) NVIDIA(GPU-1): Acer G246HL (DFP-3): Internal TMDS
[    14.814] (--) NVIDIA(GPU-1): Acer G246HL (DFP-3): 300.0 MHz maximum pixel clock
[    14.814] (--) NVIDIA(GPU-1): 
[    15.796] (--) NVIDIA(GPU-0): CRT-0: disconnected
[    15.796] (--) NVIDIA(GPU-0): CRT-0: 400.0 MHz maximum pixel clock
[    15.796] (--) NVIDIA(GPU-0): 
[    15.827] (--) NVIDIA(GPU-0): BenQ BL2405 (DFP-0): connected
[    15.828] (--) NVIDIA(GPU-0): BenQ BL2405 (DFP-0): Internal TMDS
[    15.828] (--) NVIDIA(GPU-0): BenQ BL2405 (DFP-0): 330.0 MHz maximum pixel clock
[    15.828] (--) NVIDIA(GPU-0): 
[    15.828] (--) NVIDIA(GPU-0): DFP-1: disconnected
[    15.828] (--) NVIDIA(GPU-0): DFP-1: Internal TMDS
[    15.828] (--) NVIDIA(GPU-0): DFP-1: 165.0 MHz maximum pixel clock
[    15.828] (--) NVIDIA(GPU-0): 
[    15.828] (--) NVIDIA(GPU-0): DFP-2: disconnected
[    15.828] (--) NVIDIA(GPU-0): DFP-2: Internal DisplayPort
[    15.828] (--) NVIDIA(GPU-0): DFP-2: 960.0 MHz maximum pixel clock
[    15.828] (--) NVIDIA(GPU-0): 
[    15.828] (--) NVIDIA(GPU-0): DFP-3: disconnected
[    15.828] (--) NVIDIA(GPU-0): DFP-3: Internal TMDS
[    15.828] (--) NVIDIA(GPU-0): DFP-3: 165.0 MHz maximum pixel clock
[    15.828] (--) NVIDIA(GPU-0): 
[    15.828] (--) NVIDIA(GPU-0): DFP-4: disconnected
[    15.828] (--) NVIDIA(GPU-0): DFP-4: Internal DisplayPort
[    15.828] (--) NVIDIA(GPU-0): DFP-4: 960.0 MHz maximum pixel clock
[    15.828] (--) NVIDIA(GPU-0): 
[    15.828] (--) NVIDIA(GPU-0): DFP-5: disconnected
[    15.828] (--) NVIDIA(GPU-0): DFP-5: Internal TMDS
[    15.828] (--) NVIDIA(GPU-0): DFP-5: 165.0 MHz maximum pixel clock
[    15.828] (--) NVIDIA(GPU-0): 
[    15.828] (--) NVIDIA(GPU-0): DFP-6: disconnected
[    15.828] (--) NVIDIA(GPU-0): DFP-6: Internal DisplayPort
[    15.828] (--) NVIDIA(GPU-0): DFP-6: 960.0 MHz maximum pixel clock
[    15.828] (--) NVIDIA(GPU-0): 
[    15.828] (--) NVIDIA(GPU-0): DFP-7: disconnected
[    15.828] (--) NVIDIA(GPU-0): DFP-7: Internal TMDS
[    15.828] (--) NVIDIA(GPU-0): DFP-7: 165.0 MHz maximum pixel clock
[    15.828] (--) NVIDIA(GPU-0): 
[    15.844] (--) NVIDIA(GPU-0): CRT-0: disconnected
[    15.844] (--) NVIDIA(GPU-0): CRT-0: 400.0 MHz maximum pixel clock
[    15.844] (--) NVIDIA(GPU-0): 
[    15.876] (--) NVIDIA(GPU-0): BenQ BL2405 (DFP-0): connected
[    15.876] (--) NVIDIA(GPU-0): BenQ BL2405 (DFP-0): Internal TMDS
[    15.876] (--) NVIDIA(GPU-0): BenQ BL2405 (DFP-0): 330.0 MHz maximum pixel clock
[    15.876] (--) NVIDIA(GPU-0): 
[    15.876] (--) NVIDIA(GPU-0): DFP-1: disconnected
[    15.876] (--) NVIDIA(GPU-0): DFP-1: Internal TMDS
[    15.876] (--) NVIDIA(GPU-0): DFP-1: 165.0 MHz maximum pixel clock
[    15.876] (--) NVIDIA(GPU-0): 
[    15.876] (--) NVIDIA(GPU-0): DFP-2: disconnected
[    15.876] (--) NVIDIA(GPU-0): DFP-2: Internal DisplayPort
[    15.876] (--) NVIDIA(GPU-0): DFP-2: 960.0 MHz maximum pixel clock
[    15.876] (--) NVIDIA(GPU-0): 
[    15.876] (--) NVIDIA(GPU-0): DFP-3: disconnected
[    15.876] (--) NVIDIA(GPU-0): DFP-3: Internal TMDS
[    15.876] (--) NVIDIA(GPU-0): DFP-3: 165.0 MHz maximum pixel clock
[    15.876] (--) NVIDIA(GPU-0): 
[    15.876] (--) NVIDIA(GPU-0): DFP-4: disconnected
[    15.876] (--) NVIDIA(GPU-0): DFP-4: Internal DisplayPort
[    15.876] (--) NVIDIA(GPU-0): DFP-4: 960.0 MHz maximum pixel clock
[    15.876] (--) NVIDIA(GPU-0): 
[    15.876] (--) NVIDIA(GPU-0): DFP-5: disconnected
[    15.876] (--) NVIDIA(GPU-0): DFP-5: Internal TMDS
[    15.876] (--) NVIDIA(GPU-0): DFP-5: 165.0 MHz maximum pixel clock
[    15.876] (--) NVIDIA(GPU-0): 
[    15.876] (--) NVIDIA(GPU-0): DFP-6: disconnected
[    15.876] (--) NVIDIA(GPU-0): DFP-6: Internal DisplayPort
[    15.876] (--) NVIDIA(GPU-0): DFP-6: 960.0 MHz maximum pixel clock
[    15.876] (--) NVIDIA(GPU-0): 
[    15.877] (--) NVIDIA(GPU-0): DFP-7: disconnected
[    15.877] (--) NVIDIA(GPU-0): DFP-7: Internal TMDS
[    15.877] (--) NVIDIA(GPU-0): DFP-7: 165.0 MHz maximum pixel clock
[    15.877] (--) NVIDIA(GPU-0): 
[    15.877] (--) NVIDIA(GPU-1): DFP-0: disconnected
[    15.877] (--) NVIDIA(GPU-1): DFP-0: Internal TMDS
[    15.877] (--) NVIDIA(GPU-1): DFP-0: 330.0 MHz maximum pixel clock
[    15.877] (--) NVIDIA(GPU-1): 
[    15.921] (--) NVIDIA(GPU-1): BenQ BL2405 (DFP-1): connected
[    15.921] (--) NVIDIA(GPU-1): BenQ BL2405 (DFP-1): Internal TMDS
[    15.921] (--) NVIDIA(GPU-1): BenQ BL2405 (DFP-1): 600.0 MHz maximum pixel clock
[    15.921] (--) NVIDIA(GPU-1): 
[    15.921] (--) NVIDIA(GPU-1): DFP-2: disconnected
[    15.921] (--) NVIDIA(GPU-1): DFP-2: Internal DisplayPort
[    15.921] (--) NVIDIA(GPU-1): DFP-2: 1440.0 MHz maximum pixel clock
[    15.921] (--) NVIDIA(GPU-1): 
[    16.013] (--) NVIDIA(GPU-1): Acer G246HL (DFP-3): connected
[    16.013] (--) NVIDIA(GPU-1): Acer G246HL (DFP-3): Internal TMDS
[    16.013] (--) NVIDIA(GPU-1): Acer G246HL (DFP-3): 300.0 MHz maximum pixel clock
[    16.013] (--) NVIDIA(GPU-1): 
[    20.923] (--) NVIDIA(GPU-0): CRT-0: disconnected
[    20.923] (--) NVIDIA(GPU-0): CRT-0: 400.0 MHz maximum pixel clock
[    20.923] (--) NVIDIA(GPU-0): 
[    20.955] (--) NVIDIA(GPU-0): BenQ BL2405 (DFP-0): connected
[    20.955] (--) NVIDIA(GPU-0): BenQ BL2405 (DFP-0): Internal TMDS
[    20.955] (--) NVIDIA(GPU-0): BenQ BL2405 (DFP-0): 330.0 MHz maximum pixel clock
[    20.955] (--) NVIDIA(GPU-0): 
[    20.956] (--) NVIDIA(GPU-0): DFP-1: disconnected
[    20.956] (--) NVIDIA(GPU-0): DFP-1: Internal TMDS
[    20.956] (--) NVIDIA(GPU-0): DFP-1: 165.0 MHz maximum pixel clock
[    20.956] (--) NVIDIA(GPU-0): 
[    20.956] (--) NVIDIA(GPU-0): DFP-2: disconnected
[    20.956] (--) NVIDIA(GPU-0): DFP-2: Internal DisplayPort
[    20.956] (--) NVIDIA(GPU-0): DFP-2: 960.0 MHz maximum pixel clock
[    20.956] (--) NVIDIA(GPU-0): 
[    20.956] (--) NVIDIA(GPU-0): DFP-3: disconnected
[    20.956] (--) NVIDIA(GPU-0): DFP-3: Internal TMDS
[    20.956] (--) NVIDIA(GPU-0): DFP-3: 165.0 MHz maximum pixel clock
[    20.956] (--) NVIDIA(GPU-0): 
[    20.956] (--) NVIDIA(GPU-0): DFP-4: disconnected
[    20.956] (--) NVIDIA(GPU-0): DFP-4: Internal DisplayPort
[    20.956] (--) NVIDIA(GPU-0): DFP-4: 960.0 MHz maximum pixel clock
[    20.956] (--) NVIDIA(GPU-0): 
[    20.956] (--) NVIDIA(GPU-0): DFP-5: disconnected
[    20.956] (--) NVIDIA(GPU-0): DFP-5: Internal TMDS
[    20.956] (--) NVIDIA(GPU-0): DFP-5: 165.0 MHz maximum pixel clock
[    20.956] (--) NVIDIA(GPU-0): 
[    20.956] (--) NVIDIA(GPU-0): DFP-6: disconnected
[    20.956] (--) NVIDIA(GPU-0): DFP-6: Internal DisplayPort
[    20.956] (--) NVIDIA(GPU-0): DFP-6: 960.0 MHz maximum pixel clock
[    20.956] (--) NVIDIA(GPU-0): 
[    20.956] (--) NVIDIA(GPU-0): DFP-7: disconnected
[    20.956] (--) NVIDIA(GPU-0): DFP-7: Internal TMDS
[    20.956] (--) NVIDIA(GPU-0): DFP-7: 165.0 MHz maximum pixel clock
[    20.956] (--) NVIDIA(GPU-0): 
[    20.972] (--) NVIDIA(GPU-0): CRT-0: disconnected
[    20.972] (--) NVIDIA(GPU-0): CRT-0: 400.0 MHz maximum pixel clock
[    20.972] (--) NVIDIA(GPU-0): 
[    21.003] (--) NVIDIA(GPU-0): BenQ BL2405 (DFP-0): connected
[    21.003] (--) NVIDIA(GPU-0): BenQ BL2405 (DFP-0): Internal TMDS
[    21.003] (--) NVIDIA(GPU-0): BenQ BL2405 (DFP-0): 330.0 MHz maximum pixel clock
[    21.003] (--) NVIDIA(GPU-0): 
[    21.003] (--) NVIDIA(GPU-0): DFP-1: disconnected
[    21.003] (--) NVIDIA(GPU-0): DFP-1: Internal TMDS
[    21.003] (--) NVIDIA(GPU-0): DFP-1: 165.0 MHz maximum pixel clock
[    21.003] (--) NVIDIA(GPU-0): 
[    21.003] (--) NVIDIA(GPU-0): DFP-2: disconnected
[    21.003] (--) NVIDIA(GPU-0): DFP-2: Internal DisplayPort
[    21.003] (--) NVIDIA(GPU-0): DFP-2: 960.0 MHz maximum pixel clock
[    21.003] (--) NVIDIA(GPU-0): 
[    21.003] (--) NVIDIA(GPU-0): DFP-3: disconnected
[    21.003] (--) NVIDIA(GPU-0): DFP-3: Internal TMDS
[    21.003] (--) NVIDIA(GPU-0): DFP-3: 165.0 MHz maximum pixel clock
[    21.003] (--) NVIDIA(GPU-0): 
[    21.003] (--) NVIDIA(GPU-0): DFP-4: disconnected
[    21.003] (--) NVIDIA(GPU-0): DFP-4: Internal DisplayPort
[    21.003] (--) NVIDIA(GPU-0): DFP-4: 960.0 MHz maximum pixel clock
[    21.003] (--) NVIDIA(GPU-0): 
[    21.003] (--) NVIDIA(GPU-0): DFP-5: disconnected
[    21.003] (--) NVIDIA(GPU-0): DFP-5: Internal TMDS
[    21.003] (--) NVIDIA(GPU-0): DFP-5: 165.0 MHz maximum pixel clock
[    21.003] (--) NVIDIA(GPU-0): 
[    21.003] (--) NVIDIA(GPU-0): DFP-6: disconnected
[    21.003] (--) NVIDIA(GPU-0): DFP-6: Internal DisplayPort
[    21.003] (--) NVIDIA(GPU-0): DFP-6: 960.0 MHz maximum pixel clock
[    21.003] (--) NVIDIA(GPU-0): 
[    21.004] (--) NVIDIA(GPU-0): DFP-7: disconnected
[    21.004] (--) NVIDIA(GPU-0): DFP-7: Internal TMDS
[    21.004] (--) NVIDIA(GPU-0): DFP-7: 165.0 MHz maximum pixel clock
[    21.004] (--) NVIDIA(GPU-0): 
[    21.004] (--) NVIDIA(GPU-1): DFP-0: disconnected
[    21.004] (--) NVIDIA(GPU-1): DFP-0: Internal TMDS
[    21.004] (--) NVIDIA(GPU-1): DFP-0: 330.0 MHz maximum pixel clock
[    21.004] (--) NVIDIA(GPU-1): 
[    21.048] (--) NVIDIA(GPU-1): BenQ BL2405 (DFP-1): connected
[    21.048] (--) NVIDIA(GPU-1): BenQ BL2405 (DFP-1): Internal TMDS
[    21.048] (--) NVIDIA(GPU-1): BenQ BL2405 (DFP-1): 600.0 MHz maximum pixel clock
[    21.048] (--) NVIDIA(GPU-1): 
[    21.048] (--) NVIDIA(GPU-1): DFP-2: disconnected
[    21.048] (--) NVIDIA(GPU-1): DFP-2: Internal DisplayPort
[    21.048] (--) NVIDIA(GPU-1): DFP-2: 1440.0 MHz maximum pixel clock
[    21.048] (--) NVIDIA(GPU-1): 
[    21.141] (--) NVIDIA(GPU-1): Acer G246HL (DFP-3): connected
[    21.141] (--) NVIDIA(GPU-1): Acer G246HL (DFP-3): Internal TMDS
[    21.141] (--) NVIDIA(GPU-1): Acer G246HL (DFP-3): 300.0 MHz maximum pixel clock
[    21.141] (--) NVIDIA(GPU-1): 
[    35.938] (--) NVIDIA(GPU-0): CRT-0: disconnected
[    35.938] (--) NVIDIA(GPU-0): CRT-0: 400.0 MHz maximum pixel clock
[    35.938] (--) NVIDIA(GPU-0): 
[    35.975] (--) NVIDIA(GPU-0): BenQ BL2405 (DFP-0): connected
[    35.975] (--) NVIDIA(GPU-0): BenQ BL2405 (DFP-0): Internal TMDS
[    35.975] (--) NVIDIA(GPU-0): BenQ BL2405 (DFP-0): 330.0 MHz maximum pixel clock
[    35.975] (--) NVIDIA(GPU-0): 
[    35.975] (--) NVIDIA(GPU-0): DFP-1: disconnected
[    35.975] (--) NVIDIA(GPU-0): DFP-1: Internal TMDS
[    35.975] (--) NVIDIA(GPU-0): DFP-1: 165.0 MHz maximum pixel clock
[    35.975] (--) NVIDIA(GPU-0): 
[    35.975] (--) NVIDIA(GPU-0): DFP-2: disconnected
[    35.975] (--) NVIDIA(GPU-0): DFP-2: Internal DisplayPort
[    35.975] (--) NVIDIA(GPU-0): DFP-2: 960.0 MHz maximum pixel clock
[    35.975] (--) NVIDIA(GPU-0): 
[    35.975] (--) NVIDIA(GPU-0): DFP-3: disconnected
[    35.975] (--) NVIDIA(GPU-0): DFP-3: Internal TMDS
[    35.975] (--) NVIDIA(GPU-0): DFP-3: 165.0 MHz maximum pixel clock
[    35.975] (--) NVIDIA(GPU-0): 
[    35.975] (--) NVIDIA(GPU-0): DFP-4: disconnected
[    35.975] (--) NVIDIA(GPU-0): DFP-4: Internal DisplayPort
[    35.975] (--) NVIDIA(GPU-0): DFP-4: 960.0 MHz maximum pixel clock
[    35.975] (--) NVIDIA(GPU-0): 
[    35.976] (--) NVIDIA(GPU-0): DFP-5: disconnected
[    35.976] (--) NVIDIA(GPU-0): DFP-5: Internal TMDS
[    35.976] (--) NVIDIA(GPU-0): DFP-5: 165.0 MHz maximum pixel clock
[    35.976] (--) NVIDIA(GPU-0): 
[    35.976] (--) NVIDIA(GPU-0): DFP-6: disconnected
[    35.976] (--) NVIDIA(GPU-0): DFP-6: Internal DisplayPort
[    35.976] (--) NVIDIA(GPU-0): DFP-6: 960.0 MHz maximum pixel clock
[    35.976] (--) NVIDIA(GPU-0): 
[    35.976] (--) NVIDIA(GPU-0): DFP-7: disconnected
[    35.976] (--) NVIDIA(GPU-0): DFP-7: Internal TMDS
[    35.976] (--) NVIDIA(GPU-0): DFP-7: 165.0 MHz maximum pixel clock
[    35.976] (--) NVIDIA(GPU-0): 
[    35.994] (--) NVIDIA(GPU-0): CRT-0: disconnected
[    35.994] (--) NVIDIA(GPU-0): CRT-0: 400.0 MHz maximum pixel clock
[    35.994] (--) NVIDIA(GPU-0): 
[    36.033] (--) NVIDIA(GPU-0): BenQ BL2405 (DFP-0): connected
[    36.033] (--) NVIDIA(GPU-0): BenQ BL2405 (DFP-0): Internal TMDS
[    36.033] (--) NVIDIA(GPU-0): BenQ BL2405 (DFP-0): 330.0 MHz maximum pixel clock
[    36.034] (--) NVIDIA(GPU-0): 
[    36.034] (--) NVIDIA(GPU-0): DFP-1: disconnected
[    36.034] (--) NVIDIA(GPU-0): DFP-1: Internal TMDS
[    36.034] (--) NVIDIA(GPU-0): DFP-1: 165.0 MHz maximum pixel clock
[    36.034] (--) NVIDIA(GPU-0): 
[    36.034] (--) NVIDIA(GPU-0): DFP-2: disconnected
[    36.034] (--) NVIDIA(GPU-0): DFP-2: Internal DisplayPort
[    36.034] (--) NVIDIA(GPU-0): DFP-2: 960.0 MHz maximum pixel clock
[    36.034] (--) NVIDIA(GPU-0): 
[    36.034] (--) NVIDIA(GPU-0): DFP-3: disconnected
[    36.034] (--) NVIDIA(GPU-0): DFP-3: Internal TMDS
[    36.034] (--) NVIDIA(GPU-0): DFP-3: 165.0 MHz maximum pixel clock
[    36.034] (--) NVIDIA(GPU-0): 
[    36.034] (--) NVIDIA(GPU-0): DFP-4: disconnected
[    36.034] (--) NVIDIA(GPU-0): DFP-4: Internal DisplayPort
[    36.034] (--) NVIDIA(GPU-0): DFP-4: 960.0 MHz maximum pixel clock
[    36.034] (--) NVIDIA(GPU-0): 
[    36.034] (--) NVIDIA(GPU-0): DFP-5: disconnected
[    36.034] (--) NVIDIA(GPU-0): DFP-5: Internal TMDS
[    36.034] (--) NVIDIA(GPU-0): DFP-5: 165.0 MHz maximum pixel clock
[    36.034] (--) NVIDIA(GPU-0): 
[    36.034] (--) NVIDIA(GPU-0): DFP-6: disconnected
[    36.034] (--) NVIDIA(GPU-0): DFP-6: Internal DisplayPort
[    36.034] (--) NVIDIA(GPU-0): DFP-6: 960.0 MHz maximum pixel clock
[    36.034] (--) NVIDIA(GPU-0): 
[    36.034] (--) NVIDIA(GPU-0): DFP-7: disconnected
[    36.034] (--) NVIDIA(GPU-0): DFP-7: Internal TMDS
[    36.034] (--) NVIDIA(GPU-0): DFP-7: 165.0 MHz maximum pixel clock
[    36.034] (--) NVIDIA(GPU-0): 
[    36.034] (--) NVIDIA(GPU-1): DFP-0: disconnected
[    36.034] (--) NVIDIA(GPU-1): DFP-0: Internal TMDS
[    36.034] (--) NVIDIA(GPU-1): DFP-0: 330.0 MHz maximum pixel clock
[    36.034] (--) NVIDIA(GPU-1): 
[    36.079] (--) NVIDIA(GPU-1): BenQ BL2405 (DFP-1): connected
[    36.079] (--) NVIDIA(GPU-1): BenQ BL2405 (DFP-1): Internal TMDS
[    36.079] (--) NVIDIA(GPU-1): BenQ BL2405 (DFP-1): 600.0 MHz maximum pixel clock
[    36.079] (--) NVIDIA(GPU-1): 
[    36.079] (--) NVIDIA(GPU-1): DFP-2: disconnected
[    36.079] (--) NVIDIA(GPU-1): DFP-2: Internal DisplayPort
[    36.079] (--) NVIDIA(GPU-1): DFP-2: 1440.0 MHz maximum pixel clock
[    36.079] (--) NVIDIA(GPU-1): 
[    36.173] (--) NVIDIA(GPU-1): Acer G246HL (DFP-3): connected
[    36.173] (--) NVIDIA(GPU-1): Acer G246HL (DFP-3): Internal TMDS
[    36.173] (--) NVIDIA(GPU-1): Acer G246HL (DFP-3): 300.0 MHz maximum pixel clock
[    36.173] (--) NVIDIA(GPU-1): 
[    60.935] (--) NVIDIA(GPU-0): CRT-0: disconnected
[    60.935] (--) NVIDIA(GPU-0): CRT-0: 400.0 MHz maximum pixel clock
[    60.935] (--) NVIDIA(GPU-0): 
[    60.989] (--) NVIDIA(GPU-0): BenQ BL2405 (DFP-0): connected
[    60.990] (--) NVIDIA(GPU-0): BenQ BL2405 (DFP-0): Internal TMDS
[    60.990] (--) NVIDIA(GPU-0): BenQ BL2405 (DFP-0): 330.0 MHz maximum pixel clock
[    60.990] (--) NVIDIA(GPU-0): 
[    60.992] (--) NVIDIA(GPU-0): DFP-1: disconnected
[    60.992] (--) NVIDIA(GPU-0): DFP-1: Internal TMDS
[    60.992] (--) NVIDIA(GPU-0): DFP-1: 165.0 MHz maximum pixel clock
[    60.992] (--) NVIDIA(GPU-0): 
[    60.992] (--) NVIDIA(GPU-0): DFP-2: disconnected
[    60.992] (--) NVIDIA(GPU-0): DFP-2: Internal DisplayPort
[    60.992] (--) NVIDIA(GPU-0): DFP-2: 960.0 MHz maximum pixel clock
[    60.992] (--) NVIDIA(GPU-0): 
[    60.992] (--) NVIDIA(GPU-0): DFP-3: disconnected
[    60.992] (--) NVIDIA(GPU-0): DFP-3: Internal TMDS
[    60.992] (--) NVIDIA(GPU-0): DFP-3: 165.0 MHz maximum pixel clock
[    60.992] (--) NVIDIA(GPU-0): 
[    60.992] (--) NVIDIA(GPU-0): DFP-4: disconnected
[    60.992] (--) NVIDIA(GPU-0): DFP-4: Internal DisplayPort
[    60.992] (--) NVIDIA(GPU-0): DFP-4: 960.0 MHz maximum pixel clock
[    60.992] (--) NVIDIA(GPU-0): 
[    60.992] (--) NVIDIA(GPU-0): DFP-5: disconnected
[    60.992] (--) NVIDIA(GPU-0): DFP-5: Internal TMDS
[    60.992] (--) NVIDIA(GPU-0): DFP-5: 165.0 MHz maximum pixel clock
[    60.992] (--) NVIDIA(GPU-0): 
[    60.992] (--) NVIDIA(GPU-0): DFP-6: disconnected
[    60.992] (--) NVIDIA(GPU-0): DFP-6: Internal DisplayPort
[    60.992] (--) NVIDIA(GPU-0): DFP-6: 960.0 MHz maximum pixel clock
[    60.992] (--) NVIDIA(GPU-0): 
[    60.992] (--) NVIDIA(GPU-0): DFP-7: disconnected
[    60.992] (--) NVIDIA(GPU-0): DFP-7: Internal TMDS
[    60.992] (--) NVIDIA(GPU-0): DFP-7: 165.0 MHz maximum pixel clock
[    60.992] (--) NVIDIA(GPU-0): 
[    61.008] (--) NVIDIA(GPU-0): CRT-0: disconnected
[    61.008] (--) NVIDIA(GPU-0): CRT-0: 400.0 MHz maximum pixel clock
[    61.008] (--) NVIDIA(GPU-0): 
[    61.046] (--) NVIDIA(GPU-0): BenQ BL2405 (DFP-0): connected
[    61.046] (--) NVIDIA(GPU-0): BenQ BL2405 (DFP-0): Internal TMDS
[    61.046] (--) NVIDIA(GPU-0): BenQ BL2405 (DFP-0): 330.0 MHz maximum pixel clock
[    61.046] (--) NVIDIA(GPU-0): 
[    61.046] (--) NVIDIA(GPU-0): DFP-1: disconnected
[    61.046] (--) NVIDIA(GPU-0): DFP-1: Internal TMDS
[    61.046] (--) NVIDIA(GPU-0): DFP-1: 165.0 MHz maximum pixel clock
[    61.046] (--) NVIDIA(GPU-0): 
[    61.046] (--) NVIDIA(GPU-0): DFP-2: disconnected
[    61.046] (--) NVIDIA(GPU-0): DFP-2: Internal DisplayPort
[    61.046] (--) NVIDIA(GPU-0): DFP-2: 960.0 MHz maximum pixel clock
[    61.046] (--) NVIDIA(GPU-0): 
[    61.046] (--) NVIDIA(GPU-0): DFP-3: disconnected
[    61.046] (--) NVIDIA(GPU-0): DFP-3: Internal TMDS
[    61.046] (--) NVIDIA(GPU-0): DFP-3: 165.0 MHz maximum pixel clock
[    61.046] (--) NVIDIA(GPU-0): 
[    61.046] (--) NVIDIA(GPU-0): DFP-4: disconnected
[    61.046] (--) NVIDIA(GPU-0): DFP-4: Internal DisplayPort
[    61.046] (--) NVIDIA(GPU-0): DFP-4: 960.0 MHz maximum pixel clock
[    61.046] (--) NVIDIA(GPU-0): 
[    61.047] (--) NVIDIA(GPU-0): DFP-5: disconnected
[    61.047] (--) NVIDIA(GPU-0): DFP-5: Internal TMDS
[    61.047] (--) NVIDIA(GPU-0): DFP-5: 165.0 MHz maximum pixel clock
[    61.047] (--) NVIDIA(GPU-0): 
[    61.047] (--) NVIDIA(GPU-0): DFP-6: disconnected
[    61.047] (--) NVIDIA(GPU-0): DFP-6: Internal DisplayPort
[    61.047] (--) NVIDIA(GPU-0): DFP-6: 960.0 MHz maximum pixel clock
[    61.047] (--) NVIDIA(GPU-0): 
[    61.047] (--) NVIDIA(GPU-0): DFP-7: disconnected
[    61.047] (--) NVIDIA(GPU-0): DFP-7: Internal TMDS
[    61.047] (--) NVIDIA(GPU-0): DFP-7: 165.0 MHz maximum pixel clock
[    61.047] (--) NVIDIA(GPU-0): 
[    61.047] (--) NVIDIA(GPU-1): DFP-0: disconnected
[    61.047] (--) NVIDIA(GPU-1): DFP-0: Internal TMDS
[    61.047] (--) NVIDIA(GPU-1): DFP-0: 330.0 MHz maximum pixel clock
[    61.047] (--) NVIDIA(GPU-1): 
[    61.091] (--) NVIDIA(GPU-1): BenQ BL2405 (DFP-1): connected
[    61.091] (--) NVIDIA(GPU-1): BenQ BL2405 (DFP-1): Internal TMDS
[    61.091] (--) NVIDIA(GPU-1): BenQ BL2405 (DFP-1): 600.0 MHz maximum pixel clock
[    61.091] (--) NVIDIA(GPU-1): 
[    61.091] (--) NVIDIA(GPU-1): DFP-2: disconnected
[    61.091] (--) NVIDIA(GPU-1): DFP-2: Internal DisplayPort
[    61.091] (--) NVIDIA(GPU-1): DFP-2: 1440.0 MHz maximum pixel clock
[    61.091] (--) NVIDIA(GPU-1): 
[    61.185] (--) NVIDIA(GPU-1): Acer G246HL (DFP-3): connected
[    61.185] (--) NVIDIA(GPU-1): Acer G246HL (DFP-3): Internal TMDS
[    61.185] (--) NVIDIA(GPU-1): Acer G246HL (DFP-3): 300.0 MHz maximum pixel clock
[    61.185] (--) NVIDIA(GPU-1): 
[    67.542] (EE) event26 - Logitech MX Master 2S: client bug: event processing lagging behind by 14ms, your system is too slow
[    68.187] (EE) client bug: timer event26 debounce: scheduled expiry is in the past (-0ms), your system is too slow
[    68.187] (EE) client bug: timer event26 debounce short: scheduled expiry is in the past (-13ms), your system is too slow
[    68.836] (EE) event26 - Logitech MX Master 2S: client bug: event processing lagging behind by 13ms, your system is too slow
[    81.610] (EE) client bug: timer event26 debounce: scheduled expiry is in the past (-0ms), your system is too slow
[    81.610] (EE) client bug: timer event26 debounce short: scheduled expiry is in the past (-13ms), your system is too slow
[    85.452] (EE) event26 - Logitech MX Master 2S: client bug: event processing lagging behind by 13ms, your system is too slow
[   413.043] (EE) client bug: timer event26 debounce: scheduled expiry is in the past (-6ms), your system is too slow
[   413.043] (EE) client bug: timer event26 debounce short: scheduled expiry is in the past (-19ms), your system is too slow
[   459.122] (EE) client bug: timer event26 debounce: scheduled expiry is in the past (-5ms), your system is too slow
[   459.122] (EE) client bug: timer event26 debounce short: scheduled expiry is in the past (-19ms), your system is too slow
[   484.877] (EE) event26 - Logitech MX Master 2S: client bug: event processing lagging behind by 29ms, your system is too slow
[   488.084] (EE) client bug: timer event26 debounce: scheduled expiry is in the past (-7ms), your system is too slow
[   488.084] (EE) client bug: timer event26 debounce short: scheduled expiry is in the past (-20ms), your system is too slow
[   504.565] (EE) event26 - Logitech MX Master 2S: client bug: event processing lagging behind by 17ms, your system is too slow
[   504.565] (EE) event26 - Logitech MX Master 2S: WARNING: log rate limit exceeded (5 msgs per 60min). Discarding future messages.
[   619.143] (EE) client bug: timer event26 debounce short: scheduled expiry is in the past (-2ms), your system is too slow
[   715.807] (EE) client bug: timer event26 debounce: scheduled expiry is in the past (-11ms), your system is too slow
[   715.808] (EE) client bug: timer event26 debounce short: scheduled expiry is in the past (-24ms), your system is too slow
[   741.404] (EE) client bug: timer event26 debounce short: scheduled expiry is in the past (-11ms), your system is too slow
[  2292.221] (EE) client bug: timer event26 debounce: scheduled expiry is in the past (-4ms), your system is too slow
[  2292.221] (EE) client bug: timer event26 debounce short: scheduled expiry is in the past (-17ms), your system is too slow
[  2944.367] (--) NVIDIA(GPU-0): Acer G246HL (DFP-5): connected
[  2944.367] (--) NVIDIA(GPU-0): Acer G246HL (DFP-5): Internal TMDS
[  2944.367] (--) NVIDIA(GPU-0): Acer G246HL (DFP-5): 165.0 MHz maximum pixel clock
[  2944.367] (--) NVIDIA(GPU-0): 
[  2944.385] (--) NVIDIA(GPU-0): CRT-0: disconnected
[  2944.385] (--) NVIDIA(GPU-0): CRT-0: 400.0 MHz maximum pixel clock
[  2944.385] (--) NVIDIA(GPU-0): 
[  2944.417] (--) NVIDIA(GPU-0): BenQ BL2405 (DFP-0): connected
[  2944.417] (--) NVIDIA(GPU-0): BenQ BL2405 (DFP-0): Internal TMDS
[  2944.417] (--) NVIDIA(GPU-0): BenQ BL2405 (DFP-0): 330.0 MHz maximum pixel clock
[  2944.417] (--) NVIDIA(GPU-0): 
[  2944.440] (--) NVIDIA(GPU-0): DFP-1: disconnected
[  2944.440] (--) NVIDIA(GPU-0): DFP-1: Internal TMDS
[  2944.440] (--) NVIDIA(GPU-0): DFP-1: 165.0 MHz maximum pixel clock
[  2944.440] (--) NVIDIA(GPU-0): 
[  2944.482] (--) NVIDIA(GPU-0): DFP-2: disconnected
[  2944.482] (--) NVIDIA(GPU-0): DFP-2: Internal DisplayPort
[  2944.482] (--) NVIDIA(GPU-0): DFP-2: 960.0 MHz maximum pixel clock
[  2944.482] (--) NVIDIA(GPU-0): 
[  2944.482] (--) NVIDIA(GPU-0): DFP-3: disconnected
[  2944.482] (--) NVIDIA(GPU-0): DFP-3: Internal TMDS
[  2944.482] (--) NVIDIA(GPU-0): DFP-3: 165.0 MHz maximum pixel clock
[  2944.482] (--) NVIDIA(GPU-0): 
[  2944.482] (--) NVIDIA(GPU-0): DFP-4: disconnected
[  2944.482] (--) NVIDIA(GPU-0): DFP-4: Internal DisplayPort
[  2944.482] (--) NVIDIA(GPU-0): DFP-4: 960.0 MHz maximum pixel clock
[  2944.482] (--) NVIDIA(GPU-0): 
[  2944.515] (--) NVIDIA(GPU-0): Acer G246HL (DFP-5): connected
[  2944.515] (--) NVIDIA(GPU-0): Acer G246HL (DFP-5): Internal TMDS
[  2944.515] (--) NVIDIA(GPU-0): Acer G246HL (DFP-5): 165.0 MHz maximum pixel clock
[  2944.515] (--) NVIDIA(GPU-0): 
[  2944.515] (--) NVIDIA(GPU-0): DFP-6: disconnected
[  2944.515] (--) NVIDIA(GPU-0): DFP-6: Internal DisplayPort
[  2944.515] (--) NVIDIA(GPU-0): DFP-6: 960.0 MHz maximum pixel clock
[  2944.515] (--) NVIDIA(GPU-0): 
[  2944.537] (--) NVIDIA(GPU-0): DFP-7: disconnected
[  2944.537] (--) NVIDIA(GPU-0): DFP-7: Internal TMDS
[  2944.537] (--) NVIDIA(GPU-0): DFP-7: 165.0 MHz maximum pixel clock
[  2944.537] (--) NVIDIA(GPU-0): 
[  2944.553] (--) NVIDIA(GPU-0): CRT-0: disconnected
[  2944.553] (--) NVIDIA(GPU-0): CRT-0: 400.0 MHz maximum pixel clock
[  2944.553] (--) NVIDIA(GPU-0): 
[  2944.585] (--) NVIDIA(GPU-0): BenQ BL2405 (DFP-0): connected
[  2944.585] (--) NVIDIA(GPU-0): BenQ BL2405 (DFP-0): Internal TMDS
[  2944.585] (--) NVIDIA(GPU-0): BenQ BL2405 (DFP-0): 330.0 MHz maximum pixel clock
[  2944.585] (--) NVIDIA(GPU-0): 
[  2944.585] (--) NVIDIA(GPU-0): DFP-1: disconnected
[  2944.585] (--) NVIDIA(GPU-0): DFP-1: Internal TMDS
[  2944.585] (--) NVIDIA(GPU-0): DFP-1: 165.0 MHz maximum pixel clock
[  2944.585] (--) NVIDIA(GPU-0): 
[  2944.585] (--) NVIDIA(GPU-0): DFP-2: disconnected
[  2944.585] (--) NVIDIA(GPU-0): DFP-2: Internal DisplayPort
[  2944.585] (--) NVIDIA(GPU-0): DFP-2: 960.0 MHz maximum pixel clock
[  2944.585] (--) NVIDIA(GPU-0): 
[  2944.585] (--) NVIDIA(GPU-0): DFP-3: disconnected
[  2944.585] (--) NVIDIA(GPU-0): DFP-3: Internal TMDS
[  2944.585] (--) NVIDIA(GPU-0): DFP-3: 165.0 MHz maximum pixel clock
[  2944.585] (--) NVIDIA(GPU-0): 
[  2944.585] (--) NVIDIA(GPU-0): DFP-4: disconnected
[  2944.585] (--) NVIDIA(GPU-0): DFP-4: Internal DisplayPort
[  2944.585] (--) NVIDIA(GPU-0): DFP-4: 960.0 MHz maximum pixel clock
[  2944.585] (--) NVIDIA(GPU-0): 
[  2944.618] (--) NVIDIA(GPU-0): Acer G246HL (DFP-5): connected
[  2944.618] (--) NVIDIA(GPU-0): Acer G246HL (DFP-5): Internal TMDS
[  2944.618] (--) NVIDIA(GPU-0): Acer G246HL (DFP-5): 165.0 MHz maximum pixel clock
[  2944.618] (--) NVIDIA(GPU-0): 
[  2944.618] (--) NVIDIA(GPU-0): DFP-6: disconnected
[  2944.618] (--) NVIDIA(GPU-0): DFP-6: Internal DisplayPort
[  2944.618] (--) NVIDIA(GPU-0): DFP-6: 960.0 MHz maximum pixel clock
[  2944.618] (--) NVIDIA(GPU-0): 
[  2944.640] (--) NVIDIA(GPU-0): DFP-7: disconnected
[  2944.640] (--) NVIDIA(GPU-0): DFP-7: Internal TMDS
[  2944.640] (--) NVIDIA(GPU-0): DFP-7: 165.0 MHz maximum pixel clock
[  2944.640] (--) NVIDIA(GPU-0): 
[  2944.640] (--) NVIDIA(GPU-1): DFP-0: disconnected
[  2944.640] (--) NVIDIA(GPU-1): DFP-0: Internal TMDS
[  2944.640] (--) NVIDIA(GPU-1): DFP-0: 330.0 MHz maximum pixel clock
[  2944.640] (--) NVIDIA(GPU-1): 
[  2944.685] (--) NVIDIA(GPU-1): BenQ BL2405 (DFP-1): connected
[  2944.685] (--) NVIDIA(GPU-1): BenQ BL2405 (DFP-1): Internal TMDS
[  2944.685] (--) NVIDIA(GPU-1): BenQ BL2405 (DFP-1): 600.0 MHz maximum pixel clock
[  2944.685] (--) NVIDIA(GPU-1): 
[  2944.685] (--) NVIDIA(GPU-1): DFP-2: disconnected
[  2944.685] (--) NVIDIA(GPU-1): DFP-2: Internal DisplayPort
[  2944.685] (--) NVIDIA(GPU-1): DFP-2: 1440.0 MHz maximum pixel clock
[  2944.685] (--) NVIDIA(GPU-1): 
[  2944.779] (--) NVIDIA(GPU-1): Acer G246HL (DFP-3): connected
[  2944.780] (--) NVIDIA(GPU-1): Acer G246HL (DFP-3): Internal TMDS
[  2944.780] (--) NVIDIA(GPU-1): Acer G246HL (DFP-3): 300.0 MHz maximum pixel clock
[  2944.780] (--) NVIDIA(GPU-1): 
[  2944.808] (II) NVIDIA(0): Setting mode "DVI-I-1: nvidia-auto-select @1920x1080 +0+0 {ViewPortIn=1920x1080, ViewPortOut=1920x1080+0+0}, DP-3: nvidia-auto-select @1920x1080 +0+0 {ViewPortIn=1920x1080, ViewPortOut=1920x1080+0+0}"
[  2945.216] (--) NVIDIA(GPU-0): CRT-0: disconnected
[  2945.216] (--) NVIDIA(GPU-0): CRT-0: 400.0 MHz maximum pixel clock
[  2945.216] (--) NVIDIA(GPU-0): 
[  2945.248] (--) NVIDIA(GPU-0): BenQ BL2405 (DFP-0): connected
[  2945.248] (--) NVIDIA(GPU-0): BenQ BL2405 (DFP-0): Internal TMDS
[  2945.248] (--) NVIDIA(GPU-0): BenQ BL2405 (DFP-0): 330.0 MHz maximum pixel clock
[  2945.248] (--) NVIDIA(GPU-0): 
[  2945.248] (--) NVIDIA(GPU-0): DFP-1: disconnected
[  2945.248] (--) NVIDIA(GPU-0): DFP-1: Internal TMDS
[  2945.248] (--) NVIDIA(GPU-0): DFP-1: 165.0 MHz maximum pixel clock
[  2945.248] (--) NVIDIA(GPU-0): 
[  2945.248] (--) NVIDIA(GPU-0): DFP-2: disconnected
[  2945.248] (--) NVIDIA(GPU-0): DFP-2: Internal DisplayPort
[  2945.248] (--) NVIDIA(GPU-0): DFP-2: 960.0 MHz maximum pixel clock
[  2945.248] (--) NVIDIA(GPU-0): 
[  2945.248] (--) NVIDIA(GPU-0): DFP-3: disconnected
[  2945.248] (--) NVIDIA(GPU-0): DFP-3: Internal TMDS
[  2945.248] (--) NVIDIA(GPU-0): DFP-3: 165.0 MHz maximum pixel clock
[  2945.248] (--) NVIDIA(GPU-0): 
[  2945.248] (--) NVIDIA(GPU-0): DFP-4: disconnected
[  2945.248] (--) NVIDIA(GPU-0): DFP-4: Internal DisplayPort
[  2945.248] (--) NVIDIA(GPU-0): DFP-4: 960.0 MHz maximum pixel clock
[  2945.248] (--) NVIDIA(GPU-0): 
[  2945.281] (--) NVIDIA(GPU-0): Acer G246HL (DFP-5): connected
[  2945.281] (--) NVIDIA(GPU-0): Acer G246HL (DFP-5): Internal TMDS
[  2945.281] (--) NVIDIA(GPU-0): Acer G246HL (DFP-5): 165.0 MHz maximum pixel clock
[  2945.281] (--) NVIDIA(GPU-0): 
[  2945.281] (--) NVIDIA(GPU-0): DFP-6: disconnected
[  2945.281] (--) NVIDIA(GPU-0): DFP-6: Internal DisplayPort
[  2945.281] (--) NVIDIA(GPU-0): DFP-6: 960.0 MHz maximum pixel clock
[  2945.281] (--) NVIDIA(GPU-0): 
[  2945.303] (--) NVIDIA(GPU-0): DFP-7: disconnected
[  2945.303] (--) NVIDIA(GPU-0): DFP-7: Internal TMDS
[  2945.303] (--) NVIDIA(GPU-0): DFP-7: 165.0 MHz maximum pixel clock
[  2945.303] (--) NVIDIA(GPU-0): 
[  2945.319] (--) NVIDIA(GPU-0): CRT-0: disconnected
[  2945.319] (--) NVIDIA(GPU-0): CRT-0: 400.0 MHz maximum pixel clock
[  2945.319] (--) NVIDIA(GPU-0): 
[  2945.351] (--) NVIDIA(GPU-0): BenQ BL2405 (DFP-0): connected
[  2945.351] (--) NVIDIA(GPU-0): BenQ BL2405 (DFP-0): Internal TMDS
[  2945.351] (--) NVIDIA(GPU-0): BenQ BL2405 (DFP-0): 330.0 MHz maximum pixel clock
[  2945.351] (--) NVIDIA(GPU-0): 
[  2945.351] (--) NVIDIA(GPU-0): DFP-1: disconnected
[  2945.351] (--) NVIDIA(GPU-0): DFP-1: Internal TMDS
[  2945.351] (--) NVIDIA(GPU-0): DFP-1: 165.0 MHz maximum pixel clock
[  2945.351] (--) NVIDIA(GPU-0): 
[  2945.351] (--) NVIDIA(GPU-0): DFP-2: disconnected
[  2945.351] (--) NVIDIA(GPU-0): DFP-2: Internal DisplayPort
[  2945.351] (--) NVIDIA(GPU-0): DFP-2: 960.0 MHz maximum pixel clock
[  2945.351] (--) NVIDIA(GPU-0): 
[  2945.351] (--) NVIDIA(GPU-0): DFP-3: disconnected
[  2945.351] (--) NVIDIA(GPU-0): DFP-3: Internal TMDS
[  2945.351] (--) NVIDIA(GPU-0): DFP-3: 165.0 MHz maximum pixel clock
[  2945.351] (--) NVIDIA(GPU-0): 
[  2945.351] (--) NVIDIA(GPU-0): DFP-4: disconnected
[  2945.351] (--) NVIDIA(GPU-0): DFP-4: Internal DisplayPort
[  2945.351] (--) NVIDIA(GPU-0): DFP-4: 960.0 MHz maximum pixel clock
[  2945.351] (--) NVIDIA(GPU-0): 
[  2945.383] (--) NVIDIA(GPU-0): Acer G246HL (DFP-5): connected
[  2945.383] (--) NVIDIA(GPU-0): Acer G246HL (DFP-5): Internal TMDS
[  2945.383] (--) NVIDIA(GPU-0): Acer G246HL (DFP-5): 165.0 MHz maximum pixel clock
[  2945.383] (--) NVIDIA(GPU-0): 
[  2945.383] (--) NVIDIA(GPU-0): DFP-6: disconnected
[  2945.383] (--) NVIDIA(GPU-0): DFP-6: Internal DisplayPort
[  2945.383] (--) NVIDIA(GPU-0): DFP-6: 960.0 MHz maximum pixel clock
[  2945.383] (--) NVIDIA(GPU-0): 
[  2945.406] (--) NVIDIA(GPU-0): DFP-7: disconnected
[  2945.406] (--) NVIDIA(GPU-0): DFP-7: Internal TMDS
[  2945.406] (--) NVIDIA(GPU-0): DFP-7: 165.0 MHz maximum pixel clock
[  2945.406] (--) NVIDIA(GPU-0): 
[  2945.406] (--) NVIDIA(GPU-1): DFP-0: disconnected
[  2945.406] (--) NVIDIA(GPU-1): DFP-0: Internal TMDS
[  2945.406] (--) NVIDIA(GPU-1): DFP-0: 330.0 MHz maximum pixel clock
[  2945.406] (--) NVIDIA(GPU-1): 
[  2945.451] (--) NVIDIA(GPU-1): BenQ BL2405 (DFP-1): connected
[  2945.451] (--) NVIDIA(GPU-1): BenQ BL2405 (DFP-1): Internal TMDS
[  2945.451] (--) NVIDIA(GPU-1): BenQ BL2405 (DFP-1): 600.0 MHz maximum pixel clock
[  2945.451] (--) NVIDIA(GPU-1): 
[  2945.451] (--) NVIDIA(GPU-1): DFP-2: disconnected
[  2945.451] (--) NVIDIA(GPU-1): DFP-2: Internal DisplayPort
[  2945.451] (--) NVIDIA(GPU-1): DFP-2: 1440.0 MHz maximum pixel clock
[  2945.451] (--) NVIDIA(GPU-1): 
[  2945.545] (--) NVIDIA(GPU-1): Acer G246HL (DFP-3): connected
[  2945.546] (--) NVIDIA(GPU-1): Acer G246HL (DFP-3): Internal TMDS
[  2945.546] (--) NVIDIA(GPU-1): Acer G246HL (DFP-3): 300.0 MHz maximum pixel clock
[  2945.546] (--) NVIDIA(GPU-1): 
[  2945.696] (--) NVIDIA(GPU-0): CRT-0: disconnected
[  2945.696] (--) NVIDIA(GPU-0): CRT-0: 400.0 MHz maximum pixel clock
[  2945.696] (--) NVIDIA(GPU-0): 
[  2945.728] (--) NVIDIA(GPU-0): BenQ BL2405 (DFP-0): connected
[  2945.728] (--) NVIDIA(GPU-0): BenQ BL2405 (DFP-0): Internal TMDS
[  2945.728] (--) NVIDIA(GPU-0): BenQ BL2405 (DFP-0): 330.0 MHz maximum pixel clock
[  2945.728] (--) NVIDIA(GPU-0): 
[  2945.728] (--) NVIDIA(GPU-0): DFP-1: disconnected
[  2945.728] (--) NVIDIA(GPU-0): DFP-1: Internal TMDS
[  2945.728] (--) NVIDIA(GPU-0): DFP-1: 165.0 MHz maximum pixel clock
[  2945.728] (--) NVIDIA(GPU-0): 
[  2945.728] (--) NVIDIA(GPU-0): DFP-2: disconnected
[  2945.728] (--) NVIDIA(GPU-0): DFP-2: Internal DisplayPort
[  2945.729] (--) NVIDIA(GPU-0): DFP-2: 960.0 MHz maximum pixel clock
[  2945.729] (--) NVIDIA(GPU-0): 
[  2945.729] (--) NVIDIA(GPU-0): DFP-3: disconnected
[  2945.729] (--) NVIDIA(GPU-0): DFP-3: Internal TMDS
[  2945.729] (--) NVIDIA(GPU-0): DFP-3: 165.0 MHz maximum pixel clock
[  2945.729] (--) NVIDIA(GPU-0): 
[  2945.729] (--) NVIDIA(GPU-0): DFP-4: disconnected
[  2945.729] (--) NVIDIA(GPU-0): DFP-4: Internal DisplayPort
[  2945.729] (--) NVIDIA(GPU-0): DFP-4: 960.0 MHz maximum pixel clock
[  2945.729] (--) NVIDIA(GPU-0): 
[  2945.761] (--) NVIDIA(GPU-0): Acer G246HL (DFP-5): connected
[  2945.761] (--) NVIDIA(GPU-0): Acer G246HL (DFP-5): Internal TMDS
[  2945.761] (--) NVIDIA(GPU-0): Acer G246HL (DFP-5): 165.0 MHz maximum pixel clock
[  2945.761] (--) NVIDIA(GPU-0): 
[  2945.761] (--) NVIDIA(GPU-0): DFP-6: disconnected
[  2945.761] (--) NVIDIA(GPU-0): DFP-6: Internal DisplayPort
[  2945.761] (--) NVIDIA(GPU-0): DFP-6: 960.0 MHz maximum pixel clock
[  2945.761] (--) NVIDIA(GPU-0): 
[  2945.784] (--) NVIDIA(GPU-0): DFP-7: disconnected
[  2945.784] (--) NVIDIA(GPU-0): DFP-7: Internal TMDS
[  2945.784] (--) NVIDIA(GPU-0): DFP-7: 165.0 MHz maximum pixel clock
[  2945.784] (--) NVIDIA(GPU-0): 
[  2945.800] (--) NVIDIA(GPU-0): CRT-0: disconnected
[  2945.800] (--) NVIDIA(GPU-0): CRT-0: 400.0 MHz maximum pixel clock
[  2945.800] (--) NVIDIA(GPU-0): 
[  2945.833] (--) NVIDIA(GPU-0): BenQ BL2405 (DFP-0): connected
[  2945.833] (--) NVIDIA(GPU-0): BenQ BL2405 (DFP-0): Internal TMDS
[  2945.833] (--) NVIDIA(GPU-0): BenQ BL2405 (DFP-0): 330.0 MHz maximum pixel clock
[  2945.833] (--) NVIDIA(GPU-0): 
[  2945.833] (--) NVIDIA(GPU-0): DFP-1: disconnected
[  2945.833] (--) NVIDIA(GPU-0): DFP-1: Internal TMDS
[  2945.833] (--) NVIDIA(GPU-0): DFP-1: 165.0 MHz maximum pixel clock
[  2945.833] (--) NVIDIA(GPU-0): 
[  2945.833] (--) NVIDIA(GPU-0): DFP-2: disconnected
[  2945.833] (--) NVIDIA(GPU-0): DFP-2: Internal DisplayPort
[  2945.833] (--) NVIDIA(GPU-0): DFP-2: 960.0 MHz maximum pixel clock
[  2945.833] (--) NVIDIA(GPU-0): 
[  2945.833] (--) NVIDIA(GPU-0): DFP-3: disconnected
[  2945.833] (--) NVIDIA(GPU-0): DFP-3: Internal TMDS
[  2945.833] (--) NVIDIA(GPU-0): DFP-3: 165.0 MHz maximum pixel clock
[  2945.833] (--) NVIDIA(GPU-0): 
[  2945.833] (--) NVIDIA(GPU-0): DFP-4: disconnected
[  2945.833] (--) NVIDIA(GPU-0): DFP-4: Internal DisplayPort
[  2945.833] (--) NVIDIA(GPU-0): DFP-4: 960.0 MHz maximum pixel clock
[  2945.833] (--) NVIDIA(GPU-0): 
[  2945.865] (--) NVIDIA(GPU-0): Acer G246HL (DFP-5): connected
[  2945.865] (--) NVIDIA(GPU-0): Acer G246HL (DFP-5): Internal TMDS
[  2945.865] (--) NVIDIA(GPU-0): Acer G246HL (DFP-5): 165.0 MHz maximum pixel clock
[  2945.865] (--) NVIDIA(GPU-0): 
[  2945.866] (--) NVIDIA(GPU-0): DFP-6: disconnected
[  2945.866] (--) NVIDIA(GPU-0): DFP-6: Internal DisplayPort
[  2945.866] (--) NVIDIA(GPU-0): DFP-6: 960.0 MHz maximum pixel clock
[  2945.866] (--) NVIDIA(GPU-0): 
[  2945.888] (--) NVIDIA(GPU-0): DFP-7: disconnected
[  2945.888] (--) NVIDIA(GPU-0): DFP-7: Internal TMDS
[  2945.888] (--) NVIDIA(GPU-0): DFP-7: 165.0 MHz maximum pixel clock
[  2945.888] (--) NVIDIA(GPU-0): 
[  2945.888] (--) NVIDIA(GPU-1): DFP-0: disconnected
[  2945.888] (--) NVIDIA(GPU-1): DFP-0: Internal TMDS
[  2945.888] (--) NVIDIA(GPU-1): DFP-0: 330.0 MHz maximum pixel clock
[  2945.888] (--) NVIDIA(GPU-1): 
[  2945.933] (--) NVIDIA(GPU-1): BenQ BL2405 (DFP-1): connected
[  2945.933] (--) NVIDIA(GPU-1): BenQ BL2405 (DFP-1): Internal TMDS
[  2945.933] (--) NVIDIA(GPU-1): BenQ BL2405 (DFP-1): 600.0 MHz maximum pixel clock
[  2945.933] (--) NVIDIA(GPU-1): 
[  2945.933] (--) NVIDIA(GPU-1): DFP-2: disconnected
[  2945.933] (--) NVIDIA(GPU-1): DFP-2: Internal DisplayPort
[  2945.933] (--) NVIDIA(GPU-1): DFP-2: 1440.0 MHz maximum pixel clock
[  2945.933] (--) NVIDIA(GPU-1): 
[  2946.027] (--) NVIDIA(GPU-1): Acer G246HL (DFP-3): connected
[  2946.027] (--) NVIDIA(GPU-1): Acer G246HL (DFP-3): Internal TMDS
[  2946.027] (--) NVIDIA(GPU-1): Acer G246HL (DFP-3): 300.0 MHz maximum pixel clock
[  2946.027] (--) NVIDIA(GPU-1): 
[  2952.267] (II) NVIDIA(0): Setting mode "DVI-I-1: nvidia-auto-select @1920x1080 +0+0 {ViewPortIn=1920x1080, ViewPortOut=1920x1080+0+0}, DP-3: nvidia-auto-select @1920x1080 +1920+0 {ViewPortIn=1920x1080, ViewPortOut=1920x1080+0+0}"
[  2953.453] (--) NVIDIA(GPU-0): CRT-0: disconnected
[  2953.453] (--) NVIDIA(GPU-0): CRT-0: 400.0 MHz maximum pixel clock
[  2953.453] (--) NVIDIA(GPU-0): 
[  2953.485] (--) NVIDIA(GPU-0): BenQ BL2405 (DFP-0): connected
[  2953.485] (--) NVIDIA(GPU-0): BenQ BL2405 (DFP-0): Internal TMDS
[  2953.485] (--) NVIDIA(GPU-0): BenQ BL2405 (DFP-0): 330.0 MHz maximum pixel clock
[  2953.485] (--) NVIDIA(GPU-0): 
[  2953.485] (--) NVIDIA(GPU-0): DFP-1: disconnected
[  2953.485] (--) NVIDIA(GPU-0): DFP-1: Internal TMDS
[  2953.485] (--) NVIDIA(GPU-0): DFP-1: 165.0 MHz maximum pixel clock
[  2953.485] (--) NVIDIA(GPU-0): 
[  2953.485] (--) NVIDIA(GPU-0): DFP-2: disconnected
[  2953.485] (--) NVIDIA(GPU-0): DFP-2: Internal DisplayPort
[  2953.485] (--) NVIDIA(GPU-0): DFP-2: 960.0 MHz maximum pixel clock
[  2953.485] (--) NVIDIA(GPU-0): 
[  2953.485] (--) NVIDIA(GPU-0): DFP-3: disconnected
[  2953.485] (--) NVIDIA(GPU-0): DFP-3: Internal TMDS
[  2953.485] (--) NVIDIA(GPU-0): DFP-3: 165.0 MHz maximum pixel clock
[  2953.485] (--) NVIDIA(GPU-0): 
[  2953.485] (--) NVIDIA(GPU-0): DFP-4: disconnected
[  2953.485] (--) NVIDIA(GPU-0): DFP-4: Internal DisplayPort
[  2953.485] (--) NVIDIA(GPU-0): DFP-4: 960.0 MHz maximum pixel clock
[  2953.486] (--) NVIDIA(GPU-0): 
[  2953.518] (--) NVIDIA(GPU-0): Acer G246HL (DFP-5): connected
[  2953.518] (--) NVIDIA(GPU-0): Acer G246HL (DFP-5): Internal TMDS
[  2953.518] (--) NVIDIA(GPU-0): Acer G246HL (DFP-5): 165.0 MHz maximum pixel clock
[  2953.518] (--) NVIDIA(GPU-0): 
[  2953.518] (--) NVIDIA(GPU-0): DFP-6: disconnected
[  2953.518] (--) NVIDIA(GPU-0): DFP-6: Internal DisplayPort
[  2953.518] (--) NVIDIA(GPU-0): DFP-6: 960.0 MHz maximum pixel clock
[  2953.518] (--) NVIDIA(GPU-0): 
[  2953.541] (--) NVIDIA(GPU-0): DFP-7: disconnected
[  2953.541] (--) NVIDIA(GPU-0): DFP-7: Internal TMDS
[  2953.541] (--) NVIDIA(GPU-0): DFP-7: 165.0 MHz maximum pixel clock
[  2953.541] (--) NVIDIA(GPU-0): 
[  2953.557] (--) NVIDIA(GPU-0): CRT-0: disconnected
[  2953.557] (--) NVIDIA(GPU-0): CRT-0: 400.0 MHz maximum pixel clock
[  2953.557] (--) NVIDIA(GPU-0): 
[  2953.588] (--) NVIDIA(GPU-0): BenQ BL2405 (DFP-0): connected
[  2953.588] (--) NVIDIA(GPU-0): BenQ BL2405 (DFP-0): Internal TMDS
[  2953.588] (--) NVIDIA(GPU-0): BenQ BL2405 (DFP-0): 330.0 MHz maximum pixel clock
[  2953.588] (--) NVIDIA(GPU-0): 
[  2953.588] (--) NVIDIA(GPU-0): DFP-1: disconnected
[  2953.588] (--) NVIDIA(GPU-0): DFP-1: Internal TMDS
[  2953.588] (--) NVIDIA(GPU-0): DFP-1: 165.0 MHz maximum pixel clock
[  2953.588] (--) NVIDIA(GPU-0): 
[  2953.588] (--) NVIDIA(GPU-0): DFP-2: disconnected
[  2953.588] (--) NVIDIA(GPU-0): DFP-2: Internal DisplayPort
[  2953.588] (--) NVIDIA(GPU-0): DFP-2: 960.0 MHz maximum pixel clock
[  2953.588] (--) NVIDIA(GPU-0): 
[  2953.588] (--) NVIDIA(GPU-0): DFP-3: disconnected
[  2953.588] (--) NVIDIA(GPU-0): DFP-3: Internal TMDS
[  2953.588] (--) NVIDIA(GPU-0): DFP-3: 165.0 MHz maximum pixel clock
[  2953.588] (--) NVIDIA(GPU-0): 
[  2953.588] (--) NVIDIA(GPU-0): DFP-4: disconnected
[  2953.588] (--) NVIDIA(GPU-0): DFP-4: Internal DisplayPort
[  2953.588] (--) NVIDIA(GPU-0): DFP-4: 960.0 MHz maximum pixel clock
[  2953.588] (--) NVIDIA(GPU-0): 
[  2953.621] (--) NVIDIA(GPU-0): Acer G246HL (DFP-5): connected
[  2953.621] (--) NVIDIA(GPU-0): Acer G246HL (DFP-5): Internal TMDS
[  2953.621] (--) NVIDIA(GPU-0): Acer G246HL (DFP-5): 165.0 MHz maximum pixel clock
[  2953.621] (--) NVIDIA(GPU-0): 
[  2953.621] (--) NVIDIA(GPU-0): DFP-6: disconnected
[  2953.621] (--) NVIDIA(GPU-0): DFP-6: Internal DisplayPort
[  2953.621] (--) NVIDIA(GPU-0): DFP-6: 960.0 MHz maximum pixel clock
[  2953.621] (--) NVIDIA(GPU-0): 
[  2953.643] (--) NVIDIA(GPU-0): DFP-7: disconnected
[  2953.643] (--) NVIDIA(GPU-0): DFP-7: Internal TMDS
[  2953.643] (--) NVIDIA(GPU-0): DFP-7: 165.0 MHz maximum pixel clock
[  2953.643] (--) NVIDIA(GPU-0): 
[  2953.643] (--) NVIDIA(GPU-1): DFP-0: disconnected
[  2953.643] (--) NVIDIA(GPU-1): DFP-0: Internal TMDS
[  2953.643] (--) NVIDIA(GPU-1): DFP-0: 330.0 MHz maximum pixel clock
[  2953.643] (--) NVIDIA(GPU-1): 
[  2953.688] (--) NVIDIA(GPU-1): BenQ BL2405 (DFP-1): connected
[  2953.688] (--) NVIDIA(GPU-1): BenQ BL2405 (DFP-1): Internal TMDS
[  2953.688] (--) NVIDIA(GPU-1): BenQ BL2405 (DFP-1): 600.0 MHz maximum pixel clock
[  2953.688] (--) NVIDIA(GPU-1): 
[  2953.688] (--) NVIDIA(GPU-1): DFP-2: disconnected
[  2953.688] (--) NVIDIA(GPU-1): DFP-2: Internal DisplayPort
[  2953.688] (--) NVIDIA(GPU-1): DFP-2: 1440.0 MHz maximum pixel clock
[  2953.688] (--) NVIDIA(GPU-1): 
[  2953.781] (--) NVIDIA(GPU-1): Acer G246HL (DFP-3): connected
[  2953.781] (--) NVIDIA(GPU-1): Acer G246HL (DFP-3): Internal TMDS
[  2953.781] (--) NVIDIA(GPU-1): Acer G246HL (DFP-3): 300.0 MHz maximum pixel clock
[  2953.781] (--) NVIDIA(GPU-1): 
[  2953.817] (--) NVIDIA(GPU-0): CRT-0: disconnected
[  2953.817] (--) NVIDIA(GPU-0): CRT-0: 400.0 MHz maximum pixel clock
[  2953.817] (--) NVIDIA(GPU-0): 
[  2953.849] (--) NVIDIA(GPU-0): BenQ BL2405 (DFP-0): connected
[  2953.849] (--) NVIDIA(GPU-0): BenQ BL2405 (DFP-0): Internal TMDS
[  2953.849] (--) NVIDIA(GPU-0): BenQ BL2405 (DFP-0): 330.0 MHz maximum pixel clock
[  2953.849] (--) NVIDIA(GPU-0): 
[  2953.850] (--) NVIDIA(GPU-0): DFP-1: disconnected
[  2953.850] (--) NVIDIA(GPU-0): DFP-1: Internal TMDS
[  2953.850] (--) NVIDIA(GPU-0): DFP-1: 165.0 MHz maximum pixel clock
[  2953.850] (--) NVIDIA(GPU-0): 
[  2953.850] (--) NVIDIA(GPU-0): DFP-2: disconnected
[  2953.850] (--) NVIDIA(GPU-0): DFP-2: Internal DisplayPort
[  2953.850] (--) NVIDIA(GPU-0): DFP-2: 960.0 MHz maximum pixel clock
[  2953.850] (--) NVIDIA(GPU-0): 
[  2953.850] (--) NVIDIA(GPU-0): DFP-3: disconnected
[  2953.850] (--) NVIDIA(GPU-0): DFP-3: Internal TMDS
[  2953.850] (--) NVIDIA(GPU-0): DFP-3: 165.0 MHz maximum pixel clock
[  2953.850] (--) NVIDIA(GPU-0): 
[  2953.850] (--) NVIDIA(GPU-0): DFP-4: disconnected
[  2953.850] (--) NVIDIA(GPU-0): DFP-4: Internal DisplayPort
[  2953.850] (--) NVIDIA(GPU-0): DFP-4: 960.0 MHz maximum pixel clock
[  2953.850] (--) NVIDIA(GPU-0): 
[  2953.882] (--) NVIDIA(GPU-0): Acer G246HL (DFP-5): connected
[  2953.882] (--) NVIDIA(GPU-0): Acer G246HL (DFP-5): Internal TMDS
[  2953.882] (--) NVIDIA(GPU-0): Acer G246HL (DFP-5): 165.0 MHz maximum pixel clock
[  2953.882] (--) NVIDIA(GPU-0): 
[  2953.882] (--) NVIDIA(GPU-0): DFP-6: disconnected
[  2953.882] (--) NVIDIA(GPU-0): DFP-6: Internal DisplayPort
[  2953.882] (--) NVIDIA(GPU-0): DFP-6: 960.0 MHz maximum pixel clock
[  2953.882] (--) NVIDIA(GPU-0): 
[  2953.905] (--) NVIDIA(GPU-0): DFP-7: disconnected
[  2953.905] (--) NVIDIA(GPU-0): DFP-7: Internal TMDS
[  2953.905] (--) NVIDIA(GPU-0): DFP-7: 165.0 MHz maximum pixel clock
[  2953.905] (--) NVIDIA(GPU-0): 
[  2953.921] (--) NVIDIA(GPU-0): CRT-0: disconnected
[  2953.921] (--) NVIDIA(GPU-0): CRT-0: 400.0 MHz maximum pixel clock
[  2953.921] (--) NVIDIA(GPU-0): 
[  2953.952] (--) NVIDIA(GPU-0): BenQ BL2405 (DFP-0): connected
[  2953.952] (--) NVIDIA(GPU-0): BenQ BL2405 (DFP-0): Internal TMDS
[  2953.952] (--) NVIDIA(GPU-0): BenQ BL2405 (DFP-0): 330.0 MHz maximum pixel clock
[  2953.952] (--) NVIDIA(GPU-0): 
[  2953.952] (--) NVIDIA(GPU-0): DFP-1: disconnected
[  2953.952] (--) NVIDIA(GPU-0): DFP-1: Internal TMDS
[  2953.952] (--) NVIDIA(GPU-0): DFP-1: 165.0 MHz maximum pixel clock
[  2953.952] (--) NVIDIA(GPU-0): 
[  2953.952] (--) NVIDIA(GPU-0): DFP-2: disconnected
[  2953.952] (--) NVIDIA(GPU-0): DFP-2: Internal DisplayPort
[  2953.952] (--) NVIDIA(GPU-0): DFP-2: 960.0 MHz maximum pixel clock
[  2953.952] (--) NVIDIA(GPU-0): 
[  2953.952] (--) NVIDIA(GPU-0): DFP-3: disconnected
[  2953.952] (--) NVIDIA(GPU-0): DFP-3: Internal TMDS
[  2953.952] (--) NVIDIA(GPU-0): DFP-3: 165.0 MHz maximum pixel clock
[  2953.952] (--) NVIDIA(GPU-0): 
[  2953.952] (--) NVIDIA(GPU-0): DFP-4: disconnected
[  2953.952] (--) NVIDIA(GPU-0): DFP-4: Internal DisplayPort
[  2953.952] (--) NVIDIA(GPU-0): DFP-4: 960.0 MHz maximum pixel clock
[  2953.952] (--) NVIDIA(GPU-0): 
[  2953.985] (--) NVIDIA(GPU-0): Acer G246HL (DFP-5): connected
[  2953.985] (--) NVIDIA(GPU-0): Acer G246HL (DFP-5): Internal TMDS
[  2953.985] (--) NVIDIA(GPU-0): Acer G246HL (DFP-5): 165.0 MHz maximum pixel clock
[  2953.985] (--) NVIDIA(GPU-0): 
[  2953.985] (--) NVIDIA(GPU-0): DFP-6: disconnected
[  2953.985] (--) NVIDIA(GPU-0): DFP-6: Internal DisplayPort
[  2953.985] (--) NVIDIA(GPU-0): DFP-6: 960.0 MHz maximum pixel clock
[  2953.985] (--) NVIDIA(GPU-0): 
[  2954.007] (--) NVIDIA(GPU-0): DFP-7: disconnected
[  2954.007] (--) NVIDIA(GPU-0): DFP-7: Internal TMDS
[  2954.007] (--) NVIDIA(GPU-0): DFP-7: 165.0 MHz maximum pixel clock
[  2954.007] (--) NVIDIA(GPU-0): 
[  2954.008] (--) NVIDIA(GPU-1): DFP-0: disconnected
[  2954.008] (--) NVIDIA(GPU-1): DFP-0: Internal TMDS
[  2954.008] (--) NVIDIA(GPU-1): DFP-0: 330.0 MHz maximum pixel clock
[  2954.008] (--) NVIDIA(GPU-1): 
[  2954.052] (--) NVIDIA(GPU-1): BenQ BL2405 (DFP-1): connected
[  2954.052] (--) NVIDIA(GPU-1): BenQ BL2405 (DFP-1): Internal TMDS
[  2954.052] (--) NVIDIA(GPU-1): BenQ BL2405 (DFP-1): 600.0 MHz maximum pixel clock
[  2954.052] (--) NVIDIA(GPU-1): 
[  2954.052] (--) NVIDIA(GPU-1): DFP-2: disconnected
[  2954.052] (--) NVIDIA(GPU-1): DFP-2: Internal DisplayPort
[  2954.052] (--) NVIDIA(GPU-1): DFP-2: 1440.0 MHz maximum pixel clock
[  2954.052] (--) NVIDIA(GPU-1): 
[  2954.146] (--) NVIDIA(GPU-1): Acer G246HL (DFP-3): connected
[  2954.146] (--) NVIDIA(GPU-1): Acer G246HL (DFP-3): Internal TMDS
[  2954.146] (--) NVIDIA(GPU-1): Acer G246HL (DFP-3): 300.0 MHz maximum pixel clock
[  2954.146] (--) NVIDIA(GPU-1): 
[  2969.596] (EE) client bug: timer event26 debounce short: scheduled expiry is in the past (-2ms), your system is too slow
[  3012.716] (EE) client bug: timer event26 debounce short: scheduled expiry is in the past (-0ms), your system is too slow
[  3029.754] (EE) client bug: timer event26 debounce: scheduled expiry is in the past (-4ms), your system is too slow
[  3029.754] (EE) client bug: timer event26 debounce short: scheduled expiry is in the past (-17ms), your system is too slow
[  3031.518] (EE) client bug: timer event26 debounce: scheduled expiry is in the past (-8ms), your system is too slow
[  3031.518] (EE) client bug: timer event26 debounce short: scheduled expiry is in the past (-21ms), your system is too slow
[  3038.163] (EE) client bug: timer event26 debounce short: scheduled expiry is in the past (-1ms), your system is too slow
[  4897.378] (EE) event26 - Logitech MX Master 2S: client bug: event processing lagging behind by 12ms, your system is too slow
[  4897.912] (EE) event26 - Logitech MX Master 2S: client bug: event processing lagging behind by 16ms, your system is too slow
[  6480.366] (EE) event26 - Logitech MX Master 2S: client bug: event processing lagging behind by 13ms, your system is too slow
[  6480.565] (EE) event26 - Logitech MX Master 2S: client bug: event processing lagging behind by 11ms, your system is too slow
[  6488.433] (EE) event26 - Logitech MX Master 2S: client bug: event processing lagging behind by 22ms, your system is too slow
[  6488.433] (EE) event26 - Logitech MX Master 2S: WARNING: log rate limit exceeded (5 msgs per 60min). Discarding future messages.
[  6509.665] (EE) client bug: timer event26 debounce short: scheduled expiry is in the past (-9ms), your system is too slow
[  6566.298] (EE) client bug: timer event26 debounce short: scheduled expiry is in the past (-8ms), your system is too slow
[  6735.832] (EE) client bug: timer event26 debounce short: scheduled expiry is in the past (-2ms), your system is too slow
[  6827.898] (EE) client bug: timer event26 debounce: scheduled expiry is in the past (-24ms), your system is too slow
[  6827.898] (EE) client bug: timer event26 debounce short: scheduled expiry is in the past (-39ms), your system is too slow
[  7414.093] (EE) event24 - ROCCAT ROCCAT Ryos MK Glow: client bug: event processing lagging behind by 27ms, your system is too slow
[  7564.989] (EE) client bug: timer event26 debounce: scheduled expiry is in the past (-11ms), your system is too slow
[  7564.991] (EE) client bug: timer event26 debounce short: scheduled expiry is in the past (-31ms), your system is too slow
[  7747.557] (EE) client bug: timer event26 debounce: scheduled expiry is in the past (-11ms), your system is too slow
[  7747.557] (EE) client bug: timer event26 debounce short: scheduled expiry is in the past (-24ms), your system is too slow
[  7768.579] (EE) client bug: timer event26 debounce short: scheduled expiry is in the past (-6ms), your system is too slow
[  7788.695] (EE) client bug: timer event26 debounce: scheduled expiry is in the past (-6ms), your system is too slow
[  7788.695] (EE) client bug: timer event26 debounce short: scheduled expiry is in the past (-19ms), your system is too slow
[  8198.868] (EE) client bug: timer event26 debounce short: scheduled expiry is in the past (-5ms), your system is too slow
[  8239.547] (EE) client bug: timer event26 debounce: scheduled expiry is in the past (-4ms), your system is too slow
[  8239.547] (EE) client bug: timer event26 debounce short: scheduled expiry is in the past (-17ms), your system is too slow
[  8295.669] (EE) client bug: timer event26 debounce short: scheduled expiry is in the past (-9ms), your system is too slow
[  8408.844] (EE) client bug: timer event26 debounce short: scheduled expiry is in the past (-8ms), your system is too slow
[  8420.761] (EE) client bug: timer event26 debounce short: scheduled expiry is in the past (-5ms), your system is too slow
[  8734.101] (EE) client bug: timer event26 debounce short: scheduled expiry is in the past (-5ms), your system is too slow
[  8767.027] (EE) event24 - ROCCAT ROCCAT Ryos MK Glow: client bug: event processing lagging behind by 29ms, your system is too slow
[  8999.908] (EE) event26 - Logitech MX Master 2S: client bug: event processing lagging behind by 19ms, your system is too slow
[  9000.793] (EE) client bug: timer event26 debounce short: scheduled expiry is in the past (-4ms), your system is too slow
[  9037.247] (EE) client bug: timer event26 debounce short: scheduled expiry is in the past (-4ms), your system is too slow
[  9076.426] (EE) event26 - Logitech MX Master 2S: client bug: event processing lagging behind by 31ms, your system is too slow
[  9141.009] (EE) event26 - Logitech MX Master 2S: client bug: event processing lagging behind by 12ms, your system is too slow
[  9148.498] (--) NVIDIA(GPU-0): CRT-0: disconnected
[  9148.498] (--) NVIDIA(GPU-0): CRT-0: 400.0 MHz maximum pixel clock
[  9148.498] (--) NVIDIA(GPU-0): 
[  9148.529] (--) NVIDIA(GPU-0): BenQ BL2405 (DFP-0): connected
[  9148.529] (--) NVIDIA(GPU-0): BenQ BL2405 (DFP-0): Internal TMDS
[  9148.529] (--) NVIDIA(GPU-0): BenQ BL2405 (DFP-0): 330.0 MHz maximum pixel clock
[  9148.529] (--) NVIDIA(GPU-0): 
[  9148.530] (--) NVIDIA(GPU-0): DFP-1: disconnected
[  9148.530] (--) NVIDIA(GPU-0): DFP-1: Internal TMDS
[  9148.530] (--) NVIDIA(GPU-0): DFP-1: 165.0 MHz maximum pixel clock
[  9148.530] (--) NVIDIA(GPU-0): 
[  9148.530] (--) NVIDIA(GPU-0): DFP-2: disconnected
[  9148.530] (--) NVIDIA(GPU-0): DFP-2: Internal DisplayPort
[  9148.530] (--) NVIDIA(GPU-0): DFP-2: 960.0 MHz maximum pixel clock
[  9148.530] (--) NVIDIA(GPU-0): 
[  9148.530] (--) NVIDIA(GPU-0): DFP-3: disconnected
[  9148.530] (--) NVIDIA(GPU-0): DFP-3: Internal TMDS
[  9148.530] (--) NVIDIA(GPU-0): DFP-3: 165.0 MHz maximum pixel clock
[  9148.530] (--) NVIDIA(GPU-0): 
[  9148.530] (--) NVIDIA(GPU-0): DFP-4: disconnected
[  9148.530] (--) NVIDIA(GPU-0): DFP-4: Internal DisplayPort
[  9148.530] (--) NVIDIA(GPU-0): DFP-4: 960.0 MHz maximum pixel clock
[  9148.530] (--) NVIDIA(GPU-0): 
[  9148.562] (--) NVIDIA(GPU-0): Acer G246HL (DFP-5): connected
[  9148.563] (--) NVIDIA(GPU-0): Acer G246HL (DFP-5): Internal TMDS
[  9148.563] (--) NVIDIA(GPU-0): Acer G246HL (DFP-5): 165.0 MHz maximum pixel clock
[  9148.563] (--) NVIDIA(GPU-0): 
[  9148.563] (--) NVIDIA(GPU-0): DFP-6: disconnected
[  9148.563] (--) NVIDIA(GPU-0): DFP-6: Internal DisplayPort
[  9148.563] (--) NVIDIA(GPU-0): DFP-6: 960.0 MHz maximum pixel clock
[  9148.563] (--) NVIDIA(GPU-0): 
[  9148.585] (--) NVIDIA(GPU-0): DFP-7: disconnected
[  9148.585] (--) NVIDIA(GPU-0): DFP-7: Internal TMDS
[  9148.585] (--) NVIDIA(GPU-0): DFP-7: 165.0 MHz maximum pixel clock
[  9148.585] (--) NVIDIA(GPU-0): 
[  9148.601] (--) NVIDIA(GPU-0): CRT-0: disconnected
[  9148.601] (--) NVIDIA(GPU-0): CRT-0: 400.0 MHz maximum pixel clock
[  9148.601] (--) NVIDIA(GPU-0): 
[  9148.632] (--) NVIDIA(GPU-0): BenQ BL2405 (DFP-0): connected
[  9148.632] (--) NVIDIA(GPU-0): BenQ BL2405 (DFP-0): Internal TMDS
[  9148.632] (--) NVIDIA(GPU-0): BenQ BL2405 (DFP-0): 330.0 MHz maximum pixel clock
[  9148.632] (--) NVIDIA(GPU-0): 
[  9148.633] (--) NVIDIA(GPU-0): DFP-1: disconnected
[  9148.633] (--) NVIDIA(GPU-0): DFP-1: Internal TMDS
[  9148.633] (--) NVIDIA(GPU-0): DFP-1: 165.0 MHz maximum pixel clock
[  9148.633] (--) NVIDIA(GPU-0): 
[  9148.633] (--) NVIDIA(GPU-0): DFP-2: disconnected
[  9148.633] (--) NVIDIA(GPU-0): DFP-2: Internal DisplayPort
[  9148.633] (--) NVIDIA(GPU-0): DFP-2: 960.0 MHz maximum pixel clock
[  9148.633] (--) NVIDIA(GPU-0): 
[  9148.633] (--) NVIDIA(GPU-0): DFP-3: disconnected
[  9148.633] (--) NVIDIA(GPU-0): DFP-3: Internal TMDS
[  9148.633] (--) NVIDIA(GPU-0): DFP-3: 165.0 MHz maximum pixel clock
[  9148.633] (--) NVIDIA(GPU-0): 
[  9148.633] (--) NVIDIA(GPU-0): DFP-4: disconnected
[  9148.633] (--) NVIDIA(GPU-0): DFP-4: Internal DisplayPort
[  9148.633] (--) NVIDIA(GPU-0): DFP-4: 960.0 MHz maximum pixel clock
[  9148.633] (--) NVIDIA(GPU-0): 
[  9148.665] (--) NVIDIA(GPU-0): Acer G246HL (DFP-5): connected
[  9148.666] (--) NVIDIA(GPU-0): Acer G246HL (DFP-5): Internal TMDS
[  9148.666] (--) NVIDIA(GPU-0): Acer G246HL (DFP-5): 165.0 MHz maximum pixel clock
[  9148.666] (--) NVIDIA(GPU-0): 
[  9148.666] (--) NVIDIA(GPU-0): DFP-6: disconnected
[  9148.666] (--) NVIDIA(GPU-0): DFP-6: Internal DisplayPort
[  9148.666] (--) NVIDIA(GPU-0): DFP-6: 960.0 MHz maximum pixel clock
[  9148.666] (--) NVIDIA(GPU-0): 
[  9148.688] (--) NVIDIA(GPU-0): DFP-7: disconnected
[  9148.688] (--) NVIDIA(GPU-0): DFP-7: Internal TMDS
[  9148.688] (--) NVIDIA(GPU-0): DFP-7: 165.0 MHz maximum pixel clock
[  9148.688] (--) NVIDIA(GPU-0): 
[  9148.688] (--) NVIDIA(GPU-1): DFP-0: disconnected
[  9148.688] (--) NVIDIA(GPU-1): DFP-0: Internal TMDS
[  9148.688] (--) NVIDIA(GPU-1): DFP-0: 330.0 MHz maximum pixel clock
[  9148.688] (--) NVIDIA(GPU-1): 
[  9148.733] (--) NVIDIA(GPU-1): BenQ BL2405 (DFP-1): connected
[  9148.733] (--) NVIDIA(GPU-1): BenQ BL2405 (DFP-1): Internal TMDS
[  9148.733] (--) NVIDIA(GPU-1): BenQ BL2405 (DFP-1): 600.0 MHz maximum pixel clock
[  9148.733] (--) NVIDIA(GPU-1): 
[  9148.733] (--) NVIDIA(GPU-1): DFP-2: disconnected
[  9148.733] (--) NVIDIA(GPU-1): DFP-2: Internal DisplayPort
[  9148.733] (--) NVIDIA(GPU-1): DFP-2: 1440.0 MHz maximum pixel clock
[  9148.733] (--) NVIDIA(GPU-1): 
[  9148.827] (--) NVIDIA(GPU-1): Acer G246HL (DFP-3): connected
[  9148.827] (--) NVIDIA(GPU-1): Acer G246HL (DFP-3): Internal TMDS
[  9148.827] (--) NVIDIA(GPU-1): Acer G246HL (DFP-3): 300.0 MHz maximum pixel clock
[  9148.827] (--) NVIDIA(GPU-1): 
[  9148.853] (--) NVIDIA(GPU-0): CRT-0: disconnected
[  9148.853] (--) NVIDIA(GPU-0): CRT-0: 400.0 MHz maximum pixel clock
[  9148.853] (--) NVIDIA(GPU-0): 
[  9148.885] (--) NVIDIA(GPU-0): BenQ BL2405 (DFP-0): connected
[  9148.885] (--) NVIDIA(GPU-0): BenQ BL2405 (DFP-0): Internal TMDS
[  9148.885] (--) NVIDIA(GPU-0): BenQ BL2405 (DFP-0): 330.0 MHz maximum pixel clock
[  9148.885] (--) NVIDIA(GPU-0): 
[  9148.885] (--) NVIDIA(GPU-0): DFP-1: disconnected
[  9148.885] (--) NVIDIA(GPU-0): DFP-1: Internal TMDS
[  9148.885] (--) NVIDIA(GPU-0): DFP-1: 165.0 MHz maximum pixel clock
[  9148.885] (--) NVIDIA(GPU-0): 
[  9148.885] (--) NVIDIA(GPU-0): DFP-2: disconnected
[  9148.885] (--) NVIDIA(GPU-0): DFP-2: Internal DisplayPort
[  9148.885] (--) NVIDIA(GPU-0): DFP-2: 960.0 MHz maximum pixel clock
[  9148.885] (--) NVIDIA(GPU-0): 
[  9148.885] (--) NVIDIA(GPU-0): DFP-3: disconnected
[  9148.885] (--) NVIDIA(GPU-0): DFP-3: Internal TMDS
[  9148.885] (--) NVIDIA(GPU-0): DFP-3: 165.0 MHz maximum pixel clock
[  9148.885] (--) NVIDIA(GPU-0): 
[  9148.885] (--) NVIDIA(GPU-0): DFP-4: disconnected
[  9148.885] (--) NVIDIA(GPU-0): DFP-4: Internal DisplayPort
[  9148.885] (--) NVIDIA(GPU-0): DFP-4: 960.0 MHz maximum pixel clock
[  9148.885] (--) NVIDIA(GPU-0): 
[  9148.917] (--) NVIDIA(GPU-0): Acer G246HL (DFP-5): connected
[  9148.917] (--) NVIDIA(GPU-0): Acer G246HL (DFP-5): Internal TMDS
[  9148.917] (--) NVIDIA(GPU-0): Acer G246HL (DFP-5): 165.0 MHz maximum pixel clock
[  9148.917] (--) NVIDIA(GPU-0): 
[  9148.917] (--) NVIDIA(GPU-0): DFP-6: disconnected
[  9148.917] (--) NVIDIA(GPU-0): DFP-6: Internal DisplayPort
[  9148.917] (--) NVIDIA(GPU-0): DFP-6: 960.0 MHz maximum pixel clock
[  9148.917] (--) NVIDIA(GPU-0): 
[  9148.940] (--) NVIDIA(GPU-0): DFP-7: disconnected
[  9148.940] (--) NVIDIA(GPU-0): DFP-7: Internal TMDS
[  9148.940] (--) NVIDIA(GPU-0): DFP-7: 165.0 MHz maximum pixel clock
[  9148.940] (--) NVIDIA(GPU-0): 
[  9148.956] (--) NVIDIA(GPU-0): CRT-0: disconnected
[  9148.956] (--) NVIDIA(GPU-0): CRT-0: 400.0 MHz maximum pixel clock
[  9148.956] (--) NVIDIA(GPU-0): 
[  9148.988] (--) NVIDIA(GPU-0): BenQ BL2405 (DFP-0): connected
[  9148.988] (--) NVIDIA(GPU-0): BenQ BL2405 (DFP-0): Internal TMDS
[  9148.988] (--) NVIDIA(GPU-0): BenQ BL2405 (DFP-0): 330.0 MHz maximum pixel clock
[  9148.988] (--) NVIDIA(GPU-0): 
[  9148.988] (--) NVIDIA(GPU-0): DFP-1: disconnected
[  9148.988] (--) NVIDIA(GPU-0): DFP-1: Internal TMDS
[  9148.988] (--) NVIDIA(GPU-0): DFP-1: 165.0 MHz maximum pixel clock
[  9148.988] (--) NVIDIA(GPU-0): 
[  9148.988] (--) NVIDIA(GPU-0): DFP-2: disconnected
[  9148.988] (--) NVIDIA(GPU-0): DFP-2: Internal DisplayPort
[  9148.988] (--) NVIDIA(GPU-0): DFP-2: 960.0 MHz maximum pixel clock
[  9148.988] (--) NVIDIA(GPU-0): 
[  9148.988] (--) NVIDIA(GPU-0): DFP-3: disconnected
[  9148.988] (--) NVIDIA(GPU-0): DFP-3: Internal TMDS
[  9148.988] (--) NVIDIA(GPU-0): DFP-3: 165.0 MHz maximum pixel clock
[  9148.988] (--) NVIDIA(GPU-0): 
[  9148.988] (--) NVIDIA(GPU-0): DFP-4: disconnected
[  9148.988] (--) NVIDIA(GPU-0): DFP-4: Internal DisplayPort
[  9148.988] (--) NVIDIA(GPU-0): DFP-4: 960.0 MHz maximum pixel clock
[  9148.988] (--) NVIDIA(GPU-0): 
[  9149.021] (--) NVIDIA(GPU-0): Acer G246HL (DFP-5): connected
[  9149.021] (--) NVIDIA(GPU-0): Acer G246HL (DFP-5): Internal TMDS
[  9149.021] (--) NVIDIA(GPU-0): Acer G246HL (DFP-5): 165.0 MHz maximum pixel clock
[  9149.021] (--) NVIDIA(GPU-0): 
[  9149.021] (--) NVIDIA(GPU-0): DFP-6: disconnected
[  9149.021] (--) NVIDIA(GPU-0): DFP-6: Internal DisplayPort
[  9149.021] (--) NVIDIA(GPU-0): DFP-6: 960.0 MHz maximum pixel clock
[  9149.021] (--) NVIDIA(GPU-0): 
[  9149.043] (--) NVIDIA(GPU-0): DFP-7: disconnected
[  9149.043] (--) NVIDIA(GPU-0): DFP-7: Internal TMDS
[  9149.043] (--) NVIDIA(GPU-0): DFP-7: 165.0 MHz maximum pixel clock
[  9149.043] (--) NVIDIA(GPU-0): 
[  9149.043] (--) NVIDIA(GPU-1): DFP-0: disconnected
[  9149.043] (--) NVIDIA(GPU-1): DFP-0: Internal TMDS
[  9149.043] (--) NVIDIA(GPU-1): DFP-0: 330.0 MHz maximum pixel clock
[  9149.043] (--) NVIDIA(GPU-1): 
[  9149.088] (--) NVIDIA(GPU-1): BenQ BL2405 (DFP-1): connected
[  9149.088] (--) NVIDIA(GPU-1): BenQ BL2405 (DFP-1): Internal TMDS
[  9149.088] (--) NVIDIA(GPU-1): BenQ BL2405 (DFP-1): 600.0 MHz maximum pixel clock
[  9149.088] (--) NVIDIA(GPU-1): 
[  9149.088] (--) NVIDIA(GPU-1): DFP-2: disconnected
[  9149.088] (--) NVIDIA(GPU-1): DFP-2: Internal DisplayPort
[  9149.088] (--) NVIDIA(GPU-1): DFP-2: 1440.0 MHz maximum pixel clock
[  9149.088] (--) NVIDIA(GPU-1): 
[  9149.182] (--) NVIDIA(GPU-1): Acer G246HL (DFP-3): connected
[  9149.182] (--) NVIDIA(GPU-1): Acer G246HL (DFP-3): Internal TMDS
[  9149.182] (--) NVIDIA(GPU-1): Acer G246HL (DFP-3): 300.0 MHz maximum pixel clock
[  9149.182] (--) NVIDIA(GPU-1): 
[  9198.775] (EE) event26 - Logitech MX Master 2S: client bug: event processing lagging behind by 25ms, your system is too slow
[  9203.248] (EE) event26 - Logitech MX Master 2S: client bug: event processing lagging behind by 24ms, your system is too slow
[  9203.248] (EE) event26 - Logitech MX Master 2S: WARNING: log rate limit exceeded (5 msgs per 60min). Discarding future messages.
[  9203.536] (EE) client bug: timer event26 debounce short: scheduled expiry is in the past (-7ms), your system is too slow
[  9215.940] (EE) client bug: timer event26 debounce: scheduled expiry is in the past (-0ms), your system is too slow
[  9215.940] (EE) client bug: timer event26 debounce short: scheduled expiry is in the past (-13ms), your system is too slow
[  9222.232] (EE) client bug: timer event26 debounce: scheduled expiry is in the past (-0ms), your system is too slow
[  9222.232] (EE) client bug: timer event26 debounce short: scheduled expiry is in the past (-13ms), your system is too slow
[  9258.716] (EE) client bug: timer event26 debounce short: scheduled expiry is in the past (-7ms), your system is too slow
[  9269.888] (EE) client bug: timer event26 debounce: scheduled expiry is in the past (-5ms), your system is too slow
[  9269.888] (EE) client bug: timer event26 debounce short: scheduled expiry is in the past (-18ms), your system is too slow
[  9301.831] (EE) client bug: timer event26 debounce short: scheduled expiry is in the past (-8ms), your system is too slow
[  9464.594] (EE) client bug: timer event26 debounce short: scheduled expiry is in the past (-11ms), your system is too slow
[  9769.238] (EE) client bug: timer event26 debounce short: scheduled expiry is in the past (-9ms), your system is too slow
[  9889.944] (EE) client bug: timer event26 debounce: scheduled expiry is in the past (-8ms), your system is too slow
[  9889.944] (EE) client bug: timer event26 debounce short: scheduled expiry is in the past (-21ms), your system is too slow
[  9900.621] (EE) event24 - ROCCAT ROCCAT Ryos MK Glow: client bug: event processing lagging behind by 27ms, your system is too slow
[  9906.628] (EE) client bug: timer event26 debounce short: scheduled expiry is in the past (-12ms), your system is too slow
[ 10056.883] (EE) client bug: timer event26 debounce short: scheduled expiry is in the past (-0ms), your system is too slow
[ 10074.511] (EE) client bug: timer event26 debounce short: scheduled expiry is in the past (-2ms), your system is too slow
[ 10090.173] (EE) client bug: timer event26 debounce: scheduled expiry is in the past (-0ms), your system is too slow
[ 10090.173] (EE) client bug: timer event26 debounce short: scheduled expiry is in the past (-13ms), your system is too slow
[ 10095.725] (EE) client bug: timer event26 debounce short: scheduled expiry is in the past (-6ms), your system is too slow
[ 10098.236] (EE) client bug: timer event26 debounce short: scheduled expiry is in the past (-3ms), your system is too slow
[ 11232.928] (EE) client bug: timer event26 debounce short: scheduled expiry is in the past (-8ms), your system is too slow
[ 11261.299] (EE) client bug: timer event26 debounce: scheduled expiry is in the past (-13ms), your system is too slow
[ 11261.299] (EE) client bug: timer event26 debounce short: scheduled expiry is in the past (-26ms), your system is too slow
[ 11292.747] (EE) client bug: timer event26 debounce short: scheduled expiry is in the past (-11ms), your system is too slow
[ 11293.811] (EE) client bug: timer event26 debounce short: scheduled expiry is in the past (-8ms), your system is too slow
[ 11294.983] (EE) client bug: timer event26 debounce short: scheduled expiry is in the past (-0ms), your system is too slow
[ 11296.433] (EE) client bug: timer event26 debounce: scheduled expiry is in the past (-11ms), your system is too slow
[ 11296.433] (EE) client bug: timer event26 debounce short: scheduled expiry is in the past (-24ms), your system is too slow
[ 11317.627] (EE) client bug: timer event26 debounce: scheduled expiry is in the past (-2ms), your system is too slow
[ 11317.627] (EE) client bug: timer event26 debounce short: scheduled expiry is in the past (-15ms), your system is too slow
[ 11338.594] (EE) client bug: timer event26 debounce short: scheduled expiry is in the past (-1ms), your system is too slow
[ 11499.306] (EE) client bug: timer event26 debounce: scheduled expiry is in the past (-3ms), your system is too slow
[ 11499.306] (EE) client bug: timer event26 debounce short: scheduled expiry is in the past (-17ms), your system is too slow
[ 11514.508] (EE) client bug: timer event26 debounce: scheduled expiry is in the past (-9ms), your system is too slow
[ 11514.508] (EE) client bug: timer event26 debounce short: scheduled expiry is in the past (-22ms), your system is too slow
[ 11526.705] (EE) client bug: timer event26 debounce short: scheduled expiry is in the past (-9ms), your system is too slow
[ 11527.817] (EE) client bug: timer event26 debounce: scheduled expiry is in the past (-1ms), your system is too slow
[ 11527.817] (EE) client bug: timer event26 debounce short: scheduled expiry is in the past (-14ms), your system is too slow
[ 11532.184] (EE) client bug: timer event26 debounce: scheduled expiry is in the past (-8ms), your system is too slow
[ 11532.184] (EE) client bug: timer event26 debounce short: scheduled expiry is in the past (-21ms), your system is too slow
[ 11773.513] (EE) client bug: timer event26 debounce short: scheduled expiry is in the past (-0ms), your system is too slow
[ 11801.254] (EE) client bug: timer event26 debounce: scheduled expiry is in the past (-8ms), your system is too slow
[ 11801.254] (EE) client bug: timer event26 debounce short: scheduled expiry is in the past (-21ms), your system is too slow
[ 11806.292] (EE) client bug: timer event26 debounce short: scheduled expiry is in the past (-3ms), your system is too slow
[ 11825.355] (EE) client bug: timer event26 debounce short: scheduled expiry is in the past (-9ms), your system is too slow
[ 11830.125] (EE) client bug: timer event26 debounce: scheduled expiry is in the past (-3ms), your system is too slow
[ 11830.125] (EE) client bug: timer event26 debounce short: scheduled expiry is in the past (-16ms), your system is too slow
[ 11844.985] (EE) client bug: timer event26 debounce: scheduled expiry is in the past (-9ms), your system is too slow
[ 11844.985] (EE) client bug: timer event26 debounce short: scheduled expiry is in the past (-22ms), your system is too slow
[ 11855.614] (EE) client bug: timer event26 debounce: scheduled expiry is in the past (-12ms), your system is too slow
[ 11855.614] (EE) client bug: timer event26 debounce short: scheduled expiry is in the past (-25ms), your system is too slow
[ 11863.117] (EE) client bug: timer event26 debounce: scheduled expiry is in the past (-8ms), your system is too slow
[ 11863.117] (EE) client bug: timer event26 debounce short: scheduled expiry is in the past (-21ms), your system is too slow
[ 11880.991] (EE) client bug: timer event26 debounce short: scheduled expiry is in the past (-11ms), your system is too slow
[ 11883.475] (EE) client bug: timer event26 debounce: scheduled expiry is in the past (-9ms), your system is too slow
[ 11883.475] (EE) client bug: timer event26 debounce short: scheduled expiry is in the past (-22ms), your system is too slow
[ 11886.787] (EE) client bug: timer event26 debounce: scheduled expiry is in the past (-5ms), your system is too slow
[ 11886.788] (EE) client bug: timer event26 debounce short: scheduled expiry is in the past (-18ms), your system is too slow
[ 11889.552] (EE) client bug: timer event26 debounce: scheduled expiry is in the past (-6ms), your system is too slow
[ 11889.552] (EE) client bug: timer event26 debounce short: scheduled expiry is in the past (-19ms), your system is too slow
[ 11895.206] (EE) client bug: timer event26 debounce: scheduled expiry is in the past (-7ms), your system is too slow
[ 11895.206] (EE) client bug: timer event26 debounce short: scheduled expiry is in the past (-20ms), your system is too slow
[ 11903.303] (EE) client bug: timer event26 debounce: scheduled expiry is in the past (-11ms), your system is too slow
[ 11903.303] (EE) client bug: timer event26 debounce short: scheduled expiry is in the past (-24ms), your system is too slow
[ 11908.390] (EE) client bug: timer event26 debounce: scheduled expiry is in the past (-14ms), your system is too slow
[ 11908.390] (EE) client bug: timer event26 debounce short: scheduled expiry is in the past (-27ms), your system is too slow
[ 11926.796] (EE) client bug: timer event26 debounce: scheduled expiry is in the past (-7ms), your system is too slow
[ 11926.796] (EE) client bug: timer event26 debounce short: scheduled expiry is in the past (-20ms), your system is too slow
[ 12005.771] (EE) client bug: timer event26 debounce short: scheduled expiry is in the past (-8ms), your system is too slow
[ 12075.601] (EE) client bug: timer event26 debounce short: scheduled expiry is in the past (-1ms), your system is too slow
[ 12104.790] (EE) client bug: timer event26 debounce short: scheduled expiry is in the past (-1ms), your system is too slow
[ 12109.901] (EE) client bug: timer event26 debounce: scheduled expiry is in the past (-8ms), your system is too slow
[ 12109.901] (EE) client bug: timer event26 debounce short: scheduled expiry is in the past (-21ms), your system is too slow
[ 12218.317] (EE) client bug: timer event26 debounce short: scheduled expiry is in the past (-11ms), your system is too slow
[ 12640.485] (EE) client bug: timer event26 debounce: scheduled expiry is in the past (-3ms), your system is too slow
[ 12640.485] (EE) client bug: timer event26 debounce short: scheduled expiry is in the past (-16ms), your system is too slow
[ 12697.746] (EE) client bug: timer event26 debounce short: scheduled expiry is in the past (-10ms), your system is too slow
[ 12719.488] (EE) event26 - Logitech MX Master 2S: client bug: event processing lagging behind by 31ms, your system is too slow
[ 12793.981] (EE) client bug: timer event26 debounce: scheduled expiry is in the past (-8ms), your system is too slow
[ 12793.981] (EE) client bug: timer event26 debounce short: scheduled expiry is in the past (-21ms), your system is too slow
[ 12798.850] (EE) event24 - ROCCAT ROCCAT Ryos MK Glow: client bug: event processing lagging behind by 29ms, your system is too slow
[ 12803.730] (EE) client bug: timer event26 debounce: scheduled expiry is in the past (-4ms), your system is too slow
[ 12803.730] (EE) client bug: timer event26 debounce short: scheduled expiry is in the past (-17ms), your system is too slow
[ 12834.215] (EE) event26 - Logitech MX Master 2S: client bug: event processing lagging behind by 11ms, your system is too slow
[ 12834.553] (EE) client bug: timer event26 debounce short: scheduled expiry is in the past (-1ms), your system is too slow
[ 12868.071] (EE) event26 - Logitech MX Master 2S: client bug: event processing lagging behind by 20ms, your system is too slow
[ 12870.359] (EE) event26 - Logitech MX Master 2S: client bug: event processing lagging behind by 22ms, your system is too slow
[ 12874.300] (EE) client bug: timer event26 debounce short: scheduled expiry is in the past (-0ms), your system is too slow
[ 12878.190] (EE) client bug: timer event26 debounce: scheduled expiry is in the past (-1ms), your system is too slow
[ 12878.190] (EE) client bug: timer event26 debounce short: scheduled expiry is in the past (-14ms), your system is too slow
[ 12888.309] (EE) client bug: timer event26 debounce short: scheduled expiry is in the past (-7ms), your system is too slow
[ 12897.726] (EE) event26 - Logitech MX Master 2S: client bug: event processing lagging behind by 12ms, your system is too slow
[ 12897.726] (EE) event26 - Logitech MX Master 2S: WARNING: log rate limit exceeded (5 msgs per 60min). Discarding future messages.
[ 12897.726] (EE) client bug: timer event26 debounce short: scheduled expiry is in the past (-0ms), your system is too slow

---/var/log/Xorg.0.log.old---
[     4.427] 
X.Org X Server 1.20.13
X Protocol Version 11, Revision 0
[     4.427] Build Operating System: Linux Manjaro Linux
[     4.427] Current Operating System: Linux jonas-ms7b86 5.14.0-0-MANJARO #1 SMP PREEMPT Mon Aug 30 10:49:07 UTC 2021 x86_64
[     4.427] Kernel command line: BOOT_IMAGE=/boot/vmlinuz-5.14-x86_64 root=UUID=a27f0baf-14fa-41db-844a-9ff44f8c8f6f rw quiet apparmor=1 security=apparmor resume=UUID=d0dac5d0-5548-41e7-8572-14de99a109cc udev.log_priority=3 iommu=pt vfio-pci.ids=10de:13c2,10de:0fbb
[     4.427] Build Date: 24 August 2021  10:21:29AM
[     4.427]  
[     4.427] Current version of pixman: 0.40.0
[     4.427] 	Before reporting problems, check http://wiki.x.org
	to make sure that you have the latest version.
[     4.427] Markers: (--) probed, (**) from config file, (==) default setting,
	(++) from command line, (!!) notice, (II) informational,
	(WW) warning, (EE) error, (NI) not implemented, (??) unknown.
[     4.427] (==) Log file: "/var/log/Xorg.0.log", Time: Thu Sep  9 06:31:00 2021
[     4.435] (==) Using config file: "/etc/X11/xorg.conf"
[     4.435] (==) Using config directory: "/etc/X11/xorg.conf.d"
[     4.435] (==) Using system config directory "/usr/share/X11/xorg.conf.d"
[     4.445] (==) ServerLayout "layout"
[     4.445] (**) |-->Screen "Screen0" (0)
[     4.445] (**) |   |-->Monitor "Monitor0"
[     4.446] (**) |   |-->Device "Device0"
[     4.446] (**) |   |-->GPUDevice "Device0"
[     4.446] (**) |   |-->GPUDevice "Device1"
[     4.446] (**) |   |-->GPUDevice "Device2"
[     4.446] (==) Automatically adding devices
[     4.446] (==) Automatically enabling devices
[     4.446] (==) Automatically adding GPU devices
[     4.446] (==) Automatically binding GPU devices
[     4.446] (==) Max clients allowed: 256, resource mask: 0x1fffff
[     4.456] (WW) The directory "/usr/share/fonts/OTF" does not exist.
[     4.456] 	Entry deleted from font path.
[     4.456] (WW) The directory "/usr/share/fonts/Type1" does not exist.
[     4.456] 	Entry deleted from font path.
[     4.456] (WW) The directory "/usr/share/fonts/100dpi" does not exist.
[     4.456] 	Entry deleted from font path.
[     4.456] (WW) The directory "/usr/share/fonts/75dpi" does not exist.
[     4.456] 	Entry deleted from font path.
[     4.456] (==) FontPath set to:
	/usr/share/fonts/misc,
	/usr/share/fonts/TTF
[     4.456] (==) ModulePath set to "/usr/lib/xorg/modules"
[     4.456] (II) The server relies on udev to provide the list of input devices.
	If no devices become available, reconfigure udev or disable AutoAddDevices.
[     4.456] (II) Module ABI versions:
[     4.456] 	X.Org ANSI C Emulation: 0.4
[     4.456] 	X.Org Video Driver: 24.1
[     4.456] 	X.Org XInput driver : 24.1
[     4.456] 	X.Org Server Extension : 10.0
[     4.457] (++) using VT number 7

[     4.457] (II) systemd-logind: logind integration requires -keeptty and -keeptty was not provided, disabling logind integration
[     4.457] (II) xfree86: Adding drm device (/dev/dri/card0)
[     4.457] (II) xfree86: Adding drm device (/dev/dri/card1)
[     4.458] (**) OutputClass "nvidia" ModulePath extended to "/usr/lib/nvidia/xorg,/usr/lib/xorg/modules,/usr/lib/xorg/modules"
[     4.458] (**) 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"
[     4.458] (**) OutputClass "nvidia" ModulePath extended to "/usr/lib/nvidia/xorg,/usr/lib/xorg/modules,/usr/lib/nvidia/xorg,/usr/lib/xorg/modules,/usr/lib/nvidia/xorg,/usr/lib/xorg/modules,/usr/lib/xorg/modules"
[     4.458] (**) OutputClass "nvidia" ModulePath extended to "/usr/lib/nvidia/xorg,/usr/lib/xorg/modules,/usr/lib/nvidia/xorg,/usr/lib/xorg/modules,/usr/lib/nvidia/xorg,/usr/lib/xorg/modules,/usr/lib/nvidia/xorg,/usr/lib/xorg/modules,/usr/lib/xorg/modules"
[     4.459] (--) PCI: (37@0:0:0) 10de:1c81:174b:5454 rev 161, Mem @ 0xf9000000/16777216, 0xd0000000/268435456, 0xe0000000/33554432, I/O @ 0x0000d000/128, BIOS @ 0x????????/524288
[     4.459] (--) PCI:*(38@0:0:0) 10de:13c2:1458:367a rev 161, Mem @ 0xfb000000/16777216, 0xb0000000/268435456, 0xc0000000/33554432, I/O @ 0x0000f000/128, BIOS @ 0x????????/131072
[     4.459] (WW) Open ACPI failed (/var/run/acpid.socket) (No such file or directory)
[     4.459] (II) "glx" will be loaded. This was enabled by default and also specified in the config file.
[     4.459] (II) LoadModule: "dbe"
[     4.459] (II) Module "dbe" already built-in
[     4.459] (II) LoadModule: "extmod"
[     4.459] (II) Module "extmod" already built-in
[     4.459] (II) LoadModule: "glx"
[     4.471] (II) Loading /usr/lib/xorg/modules/extensions/libglx.so
[     4.492] (II) Module glx: vendor="X.Org Foundation"
[     4.492] 	compiled for 1.20.13, module version = 1.0.0
[     4.492] 	ABI class: X.Org Server Extension, version 10.0
[     4.492] (II) LoadModule: "nvidia"
[     4.493] (II) Loading /usr/lib/xorg/modules/drivers/nvidia_drv.so
[     4.505] (II) Module nvidia: vendor="NVIDIA Corporation"
[     4.505] 	compiled for 1.6.99.901, module version = 1.0.0
[     4.505] 	Module class: X.Org Video Driver
[     4.507] (II) NVIDIA dlloader X Driver  470.63.01  Tue Aug  3 20:37:27 UTC 2021
[     4.507] (II) NVIDIA Unified Driver for all Supported NVIDIA GPUs
[     4.533] (II) Loading sub module "fb"
[     4.533] (II) LoadModule: "fb"
[     4.533] (II) Loading /usr/lib/xorg/modules/libfb.so
[     4.534] (II) Module fb: vendor="X.Org Foundation"
[     4.534] 	compiled for 1.20.13, module version = 1.0.0
[     4.534] 	ABI class: X.Org ANSI C Emulation, version 0.4
[     4.534] (II) Loading sub module "wfb"
[     4.534] (II) LoadModule: "wfb"
[     4.534] (II) Loading /usr/lib/xorg/modules/libwfb.so
[     4.535] (II) Module wfb: vendor="X.Org Foundation"
[     4.535] 	compiled for 1.20.13, module version = 1.0.0
[     4.535] 	ABI class: X.Org ANSI C Emulation, version 0.4
[     4.535] (II) Loading sub module "ramdac"
[     4.535] (II) LoadModule: "ramdac"
[     4.535] (II) Module "ramdac" already built-in
[     4.588] (**) NVIDIA(0): Depth 24, (--) framebuffer bpp 32
[     4.588] (==) NVIDIA(0): RGB weight 888
[     4.588] (==) NVIDIA(0): Default visual is TrueColor
[     4.588] (==) NVIDIA(0): Using gamma correction (1.0, 1.0, 1.0)
[     4.588] (**) Option "AllowNVIDIAGpuScreens"
[     4.589] (II) Applying OutputClass "nvidia" options to /dev/dri/card1
[     4.589] (II) Applying OutputClass "nvidia" options to /dev/dri/card1
[     4.589] (**) NVIDIA(0): Option "Stereo" "0"
[     4.589] (**) NVIDIA(0): Option "nvidiaXineramaInfoOrder" "DFP-3"
[     4.589] (**) NVIDIA(0): Option "SLI" "Off"
[     4.589] (**) NVIDIA(0): Option "MultiGPU" "Off"
[     4.589] (**) NVIDIA(0): Option "BaseMosaic" "off"
[     4.589] (**) NVIDIA(0): Option "AllowEmptyInitialConfiguration"
[     4.589] (**) NVIDIA(0): Stereo disabled by request
[     4.589] (**) NVIDIA(0): NVIDIA SLI disabled.
[     4.589] (**) NVIDIA(0): NVIDIA Multi-GPU disabled.
[     4.589] (**) NVIDIA(0): Option "MetaModes" "DP-1: nvidia-auto-select +1920+191, HDMI-0: nvidia-auto-select +0+0"
[     4.589] (**) NVIDIA(0): Enabling 2D acceleration
[     4.589] (II) Loading sub module "glxserver_nvidia"
[     4.589] (II) LoadModule: "glxserver_nvidia"
[     4.589] (II) Loading /usr/lib/nvidia/xorg/libglxserver_nvidia.so
[     4.680] (II) Module glxserver_nvidia: vendor="NVIDIA Corporation"
[     4.680] 	compiled for 1.6.99.901, module version = 1.0.0
[     4.680] 	Module class: X.Org Server Extension
[     4.680] (II) NVIDIA GLX Module  470.63.01  Tue Aug  3 20:35:52 UTC 2021
[     4.685] (II) NVIDIA: The X server supports PRIME Render Offload.
[     5.375] (--) NVIDIA(0): Valid display device(s) on GPU-0 at PCI:38:0:0
[     5.375] (--) NVIDIA(0):     CRT-0
[     5.375] (--) NVIDIA(0):     DFP-0 (boot)
[     5.375] (--) NVIDIA(0):     DFP-1
[     5.375] (--) NVIDIA(0):     DFP-2
[     5.375] (--) NVIDIA(0):     DFP-3
[     5.375] (--) NVIDIA(0):     DFP-4
[     5.375] (--) NVIDIA(0):     DFP-5
[     5.375] (--) NVIDIA(0):     DFP-6
[     5.375] (--) NVIDIA(0):     DFP-7
[     5.376] (II) NVIDIA(0): NVIDIA GPU NVIDIA GeForce GTX 970 (GM204-A) at PCI:38:0:0
[     5.376] (II) NVIDIA(0):     (GPU-0)
[     5.376] (--) NVIDIA(0): Memory: 4194304 kBytes
[     5.376] (--) NVIDIA(0): VideoBIOS: 84.04.36.00.2f
[     5.376] (II) NVIDIA(0): Detected PCI Express Link width: 16X
[     5.391] (--) NVIDIA(GPU-0): CRT-0: disconnected
[     5.391] (--) NVIDIA(GPU-0): CRT-0: 400.0 MHz maximum pixel clock
[     5.391] (--) NVIDIA(GPU-0): 
[     5.423] (--) NVIDIA(GPU-0): BenQ BL2405 (DFP-0): connected
[     5.423] (--) NVIDIA(GPU-0): BenQ BL2405 (DFP-0): Internal TMDS
[     5.423] (--) NVIDIA(GPU-0): BenQ BL2405 (DFP-0): 330.0 MHz maximum pixel clock
[     5.423] (--) NVIDIA(GPU-0): 
[     5.423] (--) NVIDIA(GPU-0): DFP-1: disconnected
[     5.423] (--) NVIDIA(GPU-0): DFP-1: Internal TMDS
[     5.423] (--) NVIDIA(GPU-0): DFP-1: 165.0 MHz maximum pixel clock
[     5.423] (--) NVIDIA(GPU-0): 
[     5.423] (--) NVIDIA(GPU-0): DFP-2: disconnected
[     5.423] (--) NVIDIA(GPU-0): DFP-2: Internal DisplayPort
[     5.423] (--) NVIDIA(GPU-0): DFP-2: 960.0 MHz maximum pixel clock
[     5.423] (--) NVIDIA(GPU-0): 
[     5.423] (--) NVIDIA(GPU-0): DFP-3: disconnected
[     5.423] (--) NVIDIA(GPU-0): DFP-3: Internal TMDS
[     5.423] (--) NVIDIA(GPU-0): DFP-3: 165.0 MHz maximum pixel clock
[     5.423] (--) NVIDIA(GPU-0): 
[     5.423] (--) NVIDIA(GPU-0): DFP-4: disconnected
[     5.423] (--) NVIDIA(GPU-0): DFP-4: Internal DisplayPort
[     5.423] (--) NVIDIA(GPU-0): DFP-4: 960.0 MHz maximum pixel clock
[     5.423] (--) NVIDIA(GPU-0): 
[     5.423] (--) NVIDIA(GPU-0): DFP-5: disconnected
[     5.423] (--) NVIDIA(GPU-0): DFP-5: Internal TMDS
[     5.423] (--) NVIDIA(GPU-0): DFP-5: 165.0 MHz maximum pixel clock
[     5.423] (--) NVIDIA(GPU-0): 
[     5.423] (--) NVIDIA(GPU-0): DFP-6: disconnected
[     5.423] (--) NVIDIA(GPU-0): DFP-6: Internal DisplayPort
[     5.423] (--) NVIDIA(GPU-0): DFP-6: 960.0 MHz maximum pixel clock
[     5.423] (--) NVIDIA(GPU-0): 
[     5.423] (--) NVIDIA(GPU-0): DFP-7: disconnected
[     5.423] (--) NVIDIA(GPU-0): DFP-7: Internal TMDS
[     5.423] (--) NVIDIA(GPU-0): DFP-7: 165.0 MHz maximum pixel clock
[     5.423] (--) NVIDIA(GPU-0): 
[     5.425] (WW) NVIDIA(0): No valid modes for
[     5.425] (WW) NVIDIA(0):     "DP-1:nvidia-auto-select+1920+191,HDMI-0:nvidia-auto-select+0+0";
[     5.425] (WW) NVIDIA(0):     removing.
[     5.425] (WW) NVIDIA(0): 
[     5.425] (WW) NVIDIA(0): Unable to validate any modes; falling back to the default mode
[     5.425] (WW) NVIDIA(0):     "nvidia-auto-select".
[     5.425] (WW) NVIDIA(0): 
[     5.425] (II) NVIDIA(0): Validated MetaModes:
[     5.425] (II) NVIDIA(0):     "DFP-0:nvidia-auto-select"
[     5.425] (II) NVIDIA(0): Virtual screen size determined to be 1920 x 1080
[     5.427] (--) NVIDIA(0): DPI set to (92, 91); computed from "UseEdidDpi" X config
[     5.427] (--) NVIDIA(0):     option
[     5.427] (**) NVIDIA(G0): Depth 24, (--) framebuffer bpp 32
[     5.427] (==) NVIDIA(G0): RGB weight 888
[     5.427] (==) NVIDIA(G0): Default visual is TrueColor
[     5.427] (==) NVIDIA(G0): Using gamma correction (1.0, 1.0, 1.0)
[     5.427] (II) Applying OutputClass "nvidia" options to /dev/dri/card0
[     5.427] (II) Applying OutputClass "nvidia" options to /dev/dri/card0
[     5.427] (**) NVIDIA(G0): Option "Stereo" "0"
[     5.427] (**) NVIDIA(G0): Option "nvidiaXineramaInfoOrder" "DFP-3"
[     5.427] (**) NVIDIA(G0): Option "SLI" "Off"
[     5.427] (**) NVIDIA(G0): Option "MultiGPU" "Off"
[     5.427] (**) NVIDIA(G0): Option "BaseMosaic" "off"
[     5.427] (**) NVIDIA(G0): Option "AllowEmptyInitialConfiguration"
[     5.427] (**) NVIDIA(G0): Stereo disabled by request
[     5.427] (**) NVIDIA(G0): NVIDIA SLI disabled.
[     5.427] (**) NVIDIA(G0): NVIDIA Multi-GPU disabled.
[     5.427] (**) NVIDIA(G0): Enabling 2D acceleration
[     5.427] (II) NVIDIA: The X server supports PRIME Render Offload.
[     6.675] (--) NVIDIA(0): Valid display device(s) on GPU-1 at PCI:37:0:0
[     6.675] (--) NVIDIA(0):     DFP-0
[     6.675] (--) NVIDIA(0):     DFP-1
[     6.675] (--) NVIDIA(0):     DFP-2
[     6.675] (--) NVIDIA(0):     DFP-3 (boot)
[     6.676] (II) NVIDIA(G0): NVIDIA GPU NVIDIA GeForce GTX 1050 (GP107-A) at PCI:37:0:0
[     6.676] (II) NVIDIA(G0):     (GPU-1)
[     6.676] (--) NVIDIA(G0): Memory: 2097152 kBytes
[     6.676] (--) NVIDIA(G0): VideoBIOS: 86.07.39.00.18
[     6.676] (II) NVIDIA(G0): Detected PCI Express Link width: 16X
[     6.676] (--) NVIDIA(GPU-1): DFP-0: disconnected
[     6.676] (--) NVIDIA(GPU-1): DFP-0: Internal TMDS
[     6.676] (--) NVIDIA(GPU-1): DFP-0: 330.0 MHz maximum pixel clock
[     6.676] (--) NVIDIA(GPU-1): 
[     6.720] (--) NVIDIA(GPU-1): BenQ BL2405 (DFP-1): connected
[     6.720] (--) NVIDIA(GPU-1): BenQ BL2405 (DFP-1): Internal TMDS
[     6.720] (--) NVIDIA(GPU-1): BenQ BL2405 (DFP-1): 600.0 MHz maximum pixel clock
[     6.720] (--) NVIDIA(GPU-1): 
[     6.720] (--) NVIDIA(GPU-1): DFP-2: disconnected
[     6.720] (--) NVIDIA(GPU-1): DFP-2: Internal DisplayPort
[     6.720] (--) NVIDIA(GPU-1): DFP-2: 1440.0 MHz maximum pixel clock
[     6.720] (--) NVIDIA(GPU-1): 
[     6.812] (--) NVIDIA(GPU-1): Acer G246HL (DFP-3): connected
[     6.812] (--) NVIDIA(GPU-1): Acer G246HL (DFP-3): Internal TMDS
[     6.812] (--) NVIDIA(GPU-1): Acer G246HL (DFP-3): 300.0 MHz maximum pixel clock
[     6.812] (--) NVIDIA(GPU-1): 
[     6.825] (II) NVIDIA(G0): Validated MetaModes:
[     6.825] (II) NVIDIA(G0):     "NULL"
[     6.825] (II) NVIDIA(G0): Virtual screen size determined to be 640 x 480
[     6.832] (WW) NVIDIA(G0): Cannot find size of first mode for Acer G246HL (DFP-3); cannot
[     6.832] (WW) NVIDIA(G0):     compute DPI from Acer G246HL (DFP-3)'s EDID.
[     6.832] (==) NVIDIA(G0): DPI set to (75, 75); computed from built-in default
[     6.832] (II) NVIDIA(G1): NVIDIA GeForce GTX 1050 (GPU-1) already has an X screen
[     6.832] (II) NVIDIA(G1):     assigned; skipping this GPU screen
[     6.832] (EE) NVIDIA(G1): Failing initialization of X screen
[     6.832] (II) UnloadModule: "nvidia"
[     6.832] (II) UnloadSubModule: "wfb"
[     6.832] (II) UnloadSubModule: "fb"
[     6.833] (II) NVIDIA: Reserving 24576.00 MB of virtual memory for indirect memory
[     6.833] (II) NVIDIA:     access.
[     6.835] (II) NVIDIA(0): ACPI: failed to connect to the ACPI event daemon; the daemon
[     6.835] (II) NVIDIA(0):     may not be running or the "AcpidSocketPath" X
[     6.835] (II) NVIDIA(0):     configuration option may not be set correctly.  When the
[     6.835] (II) NVIDIA(0):     ACPI event daemon is available, the NVIDIA X driver will
[     6.835] (II) NVIDIA(0):     try to use it to receive ACPI event notifications.  For
[     6.835] (II) NVIDIA(0):     details, please see the "ConnectToAcpid" and
[     6.835] (II) NVIDIA(0):     "AcpidSocketPath" X configuration options in Appendix B: X
[     6.835] (II) NVIDIA(0):     Config Options in the README.
[     6.850] (II) NVIDIA(0): Setting mode "DFP-0:nvidia-auto-select"
[     6.897] (==) NVIDIA(0): Disabling shared memory pixmaps
[     6.897] (==) NVIDIA(0): Backing store enabled
[     6.897] (==) NVIDIA(0): Silken mouse disabled
[     6.897] (**) NVIDIA(0): DPMS enabled
[     6.897] (II) Loading sub module "dri2"
[     6.897] (II) LoadModule: "dri2"
[     6.897] (II) Module "dri2" already built-in
[     6.897] (II) NVIDIA(0): [DRI2] Setup complete
[     6.897] (II) NVIDIA(0): [DRI2]   VDPAU driver: nvidia
[     6.900] (II) NVIDIA(G0): ACPI: failed to connect to the ACPI event daemon; the daemon
[     6.900] (II) NVIDIA(G0):     may not be running or the "AcpidSocketPath" X
[     6.900] (II) NVIDIA(G0):     configuration option may not be set correctly.  When the
[     6.900] (II) NVIDIA(G0):     ACPI event daemon is available, the NVIDIA X driver will
[     6.900] (II) NVIDIA(G0):     try to use it to receive ACPI event notifications.  For
[     6.900] (II) NVIDIA(G0):     details, please see the "ConnectToAcpid" and
[     6.900] (II) NVIDIA(G0):     "AcpidSocketPath" X configuration options in Appendix B: X
[     6.900] (II) NVIDIA(G0):     Config Options in the README.
[     6.913] (II) NVIDIA(G0): Setting mode "NULL"
[     6.918] (==) NVIDIA(G0): Disabling shared memory pixmaps
[     6.918] (==) NVIDIA(G0): Backing store enabled
[     6.918] (==) NVIDIA(G0): Silken mouse disabled
[     6.918] (**) NVIDIA(G0): DPMS enabled
[     6.918] (WW) NVIDIA(G0): Option "metamodes" is not used
[     6.918] (II) Loading sub module "dri2"
[     6.918] (II) LoadModule: "dri2"
[     6.918] (II) Module "dri2" already built-in
[     6.918] (II) NVIDIA(G0): [DRI2] Setup complete
[     6.918] (II) NVIDIA(G0): [DRI2]   VDPAU driver: nvidia
[     6.918] (II) Initializing extension Generic Event Extension
[     6.918] (II) Initializing extension SHAPE
[     6.918] (II) Initializing extension MIT-SHM
[     6.918] (II) Initializing extension XInputExtension
[     6.919] (II) Initializing extension XTEST
[     6.919] (II) Initializing extension BIG-REQUESTS
[     6.919] (II) Initializing extension SYNC
[     6.919] (II) Initializing extension XKEYBOARD
[     6.919] (II) Initializing extension XC-MISC
[     6.919] (II) Initializing extension SECURITY
[     6.919] (II) Initializing extension XFIXES
[     6.919] (II) Initializing extension RENDER
[     6.919] (II) Initializing extension RANDR
[     6.919] (II) Initializing extension COMPOSITE
[     6.919] (II) Initializing extension DAMAGE
[     6.919] (II) Initializing extension MIT-SCREEN-SAVER
[     6.919] (II) Initializing extension DOUBLE-BUFFER
[     6.919] (II) Initializing extension RECORD
[     6.919] (II) Initializing extension DPMS
[     6.919] (II) Initializing extension Present
[     6.919] (II) Initializing extension DRI3
[     6.919] (II) Initializing extension X-Resource
[     6.920] (II) Initializing extension XVideo
[     6.920] (II) Initializing extension XVideo-MotionCompensation
[     6.920] (II) Initializing extension GLX
[     6.920] (II) Initializing extension GLX
[     6.920] (II) Indirect GLX disabled.
[     6.920] (II) GLX: Another vendor is already registered for screen 0
[     6.920] (II) Initializing extension XFree86-VidModeExtension
[     6.920] (II) Initializing extension XFree86-DGA
[     6.920] (II) Initializing extension XFree86-DRI
[     6.920] (II) Initializing extension DRI2
[     6.920] (II) Initializing extension NV-GLX
[     6.920] (II) Initializing extension NV-CONTROL
[     6.920] (II) Initializing extension XINERAMA
[     6.983] (II) config/udev: Adding input device Power Button (/dev/input/event1)
[     6.983] (**) Power Button: Applying InputClass "evdev keyboard catchall"
[     6.983] (**) Power Button: Applying InputClass "libinput keyboard catchall"
[     6.983] (**) Power Button: Applying InputClass "system-keyboard"
[     6.983] (II) LoadModule: "libinput"
[     6.983] (II) Loading /usr/lib/xorg/modules/input/libinput_drv.so
[     6.987] (II) Module libinput: vendor="X.Org Foundation"
[     6.987] 	compiled for 1.20.11, module version = 1.1.0
[     6.987] 	Module class: X.Org XInput Driver
[     6.987] 	ABI class: X.Org XInput driver, version 24.1
[     6.987] (II) Using input driver 'libinput' for 'Power Button'
[     6.987] (**) Power Button: always reports core events
[     6.987] (**) Option "Device" "/dev/input/event1"
[     6.987] (**) Option "_source" "server/udev"
[     6.999] (II) event1  - Power Button: is tagged by udev as: Keyboard
[     7.000] (II) event1  - Power Button: device is a keyboard
[     7.000] (II) event1  - Power Button: device removed
[     7.045] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/LNXPWRBN:00/input/input1/event1"
[     7.045] (II) XINPUT: Adding extended input device "Power Button" (type: KEYBOARD, id 6)
[     7.045] (**) Option "xkb_layout" "de"
[     7.059] (II) event1  - Power Button: is tagged by udev as: Keyboard
[     7.059] (II) event1  - Power Button: device is a keyboard
[     7.059] (II) config/udev: Adding input device Power Button (/dev/input/event0)
[     7.059] (**) Power Button: Applying InputClass "evdev keyboard catchall"
[     7.059] (**) Power Button: Applying InputClass "libinput keyboard catchall"
[     7.059] (**) Power Button: Applying InputClass "system-keyboard"
[     7.059] (II) Using input driver 'libinput' for 'Power Button'
[     7.059] (**) Power Button: always reports core events
[     7.059] (**) Option "Device" "/dev/input/event0"
[     7.059] (**) Option "_source" "server/udev"
[     7.060] (II) event0  - Power Button: is tagged by udev as: Keyboard
[     7.060] (II) event0  - Power Button: device is a keyboard
[     7.060] (II) event0  - Power Button: device removed
[     7.098] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0C:00/input/input0/event0"
[     7.098] (II) XINPUT: Adding extended input device "Power Button" (type: KEYBOARD, id 7)
[     7.098] (**) Option "xkb_layout" "de"
[     7.099] (II) event0  - Power Button: is tagged by udev as: Keyboard
[     7.099] (II) event0  - Power Button: device is a keyboard
[     7.100] (II) config/udev: Adding input device Logitech MX Master 2S (/dev/input/event26)
[     7.100] (**) Logitech MX Master 2S: Applying InputClass "evdev pointer catchall"
[     7.100] (**) Logitech MX Master 2S: Applying InputClass "evdev keyboard catchall"
[     7.100] (**) Logitech MX Master 2S: Applying InputClass "libinput pointer catchall"
[     7.100] (**) Logitech MX Master 2S: Applying InputClass "libinput keyboard catchall"
[     7.100] (**) Logitech MX Master 2S: Applying InputClass "system-keyboard"
[     7.100] (II) Using input driver 'libinput' for 'Logitech MX Master 2S'
[     7.100] (**) Logitech MX Master 2S: always reports core events
[     7.100] (**) Option "Device" "/dev/input/event26"
[     7.100] (**) Option "_source" "server/udev"
[     7.102] (II) event26 - Logitech MX Master 2S: is tagged by udev as: Keyboard Mouse
[     7.102] (II) event26 - Logitech MX Master 2S: device is a pointer
[     7.102] (II) event26 - Logitech MX Master 2S: device is a keyboard
[     7.102] (II) event26 - Logitech MX Master 2S: device removed
[     7.138] (II) libinput: Logitech MX Master 2S: needs a virtual subdevice
[     7.138] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:01.3/0000:03:00.0/usb1/1-1/1-1:1.2/0003:046D:C52B.0003/0003:046D:4069.0006/input/input41/event26"
[     7.138] (II) XINPUT: Adding extended input device "Logitech MX Master 2S" (type: MOUSE, id 8)
[     7.139] (**) Option "AccelerationScheme" "none"
[     7.139] (**) Logitech MX Master 2S: (accel) selected scheme none/0
[     7.139] (**) Logitech MX Master 2S: (accel) acceleration factor: 2.000
[     7.139] (**) Logitech MX Master 2S: (accel) acceleration threshold: 4
[     7.140] (II) event26 - Logitech MX Master 2S: is tagged by udev as: Keyboard Mouse
[     7.140] (II) event26 - Logitech MX Master 2S: device is a pointer
[     7.140] (II) event26 - Logitech MX Master 2S: device is a keyboard
[     7.141] (II) config/udev: Adding input device Logitech MX Master 2S (/dev/input/mouse1)
[     7.141] (**) Logitech MX Master 2S: Applying InputClass "system-keyboard"
[     7.141] (II) No input driver specified, ignoring this device.
[     7.141] (II) This device may have been added with another device file.
[     7.142] (II) config/udev: Adding input device Logitech MX Master 3 (/dev/input/event27)
[     7.142] (**) Logitech MX Master 3: Applying InputClass "evdev pointer catchall"
[     7.142] (**) Logitech MX Master 3: Applying InputClass "evdev keyboard catchall"
[     7.142] (**) Logitech MX Master 3: Applying InputClass "libinput pointer catchall"
[     7.142] (**) Logitech MX Master 3: Applying InputClass "libinput keyboard catchall"
[     7.142] (**) Logitech MX Master 3: Applying InputClass "system-keyboard"
[     7.142] (II) Using input driver 'libinput' for 'Logitech MX Master 3'
[     7.142] (**) Logitech MX Master 3: always reports core events
[     7.142] (**) Option "Device" "/dev/input/event27"
[     7.142] (**) Option "_source" "server/udev"
[     7.143] (II) event27 - Logitech MX Master 3: is tagged by udev as: Keyboard Mouse
[     7.144] (II) event27 - Logitech MX Master 3: device is a pointer
[     7.144] (II) event27 - Logitech MX Master 3: device is a keyboard
[     7.144] (II) event27 - Logitech MX Master 3: device removed
[     7.178] (II) libinput: Logitech MX Master 3: needs a virtual subdevice
[     7.178] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:01.3/0000:03:00.0/usb1/1-1/1-1:1.2/0003:046D:C52B.0003/0003:046D:4082.0007/input/input42/event27"
[     7.178] (II) XINPUT: Adding extended input device "Logitech MX Master 3" (type: MOUSE, id 9)
[     7.179] (**) Option "AccelerationScheme" "none"
[     7.179] (**) Logitech MX Master 3: (accel) selected scheme none/0
[     7.179] (**) Logitech MX Master 3: (accel) acceleration factor: 2.000
[     7.179] (**) Logitech MX Master 3: (accel) acceleration threshold: 4
[     7.180] (II) event27 - Logitech MX Master 3: is tagged by udev as: Keyboard Mouse
[     7.180] (II) event27 - Logitech MX Master 3: device is a pointer
[     7.180] (II) event27 - Logitech MX Master 3: device is a keyboard
[     7.181] (II) config/udev: Adding input device Logitech MX Master 3 (/dev/input/mouse2)
[     7.181] (**) Logitech MX Master 3: Applying InputClass "system-keyboard"
[     7.181] (II) No input driver specified, ignoring this device.
[     7.181] (II) This device may have been added with another device file.
[     7.182] (II) config/udev: Adding input device ROCCAT ROCCAT Ryos MK Glow (/dev/input/event24)
[     7.182] (**) ROCCAT ROCCAT Ryos MK Glow: Applying InputClass "evdev keyboard catchall"
[     7.182] (**) ROCCAT ROCCAT Ryos MK Glow: Applying InputClass "libinput keyboard catchall"
[     7.182] (**) ROCCAT ROCCAT Ryos MK Glow: Applying InputClass "system-keyboard"
[     7.182] (II) Using input driver 'libinput' for 'ROCCAT ROCCAT Ryos MK Glow'
[     7.182] (**) ROCCAT ROCCAT Ryos MK Glow: always reports core events
[     7.182] (**) Option "Device" "/dev/input/event24"
[     7.182] (**) Option "_source" "server/udev"
[     7.183] (II) event24 - ROCCAT ROCCAT Ryos MK Glow: is tagged by udev as: Keyboard
[     7.183] (II) event24 - ROCCAT ROCCAT Ryos MK Glow: device is a keyboard
[     7.183] (II) event24 - ROCCAT ROCCAT Ryos MK Glow: device removed
[     7.218] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:01.3/0000:03:00.0/usb1/1-2/1-2:1.0/0003:1E7D:31CE.0004/input/input29/event24"
[     7.218] (II) XINPUT: Adding extended input device "ROCCAT ROCCAT Ryos MK Glow" (type: KEYBOARD, id 10)
[     7.218] (**) Option "xkb_layout" "de"
[     7.220] (II) event24 - ROCCAT ROCCAT Ryos MK Glow: is tagged by udev as: Keyboard
[     7.220] (II) event24 - ROCCAT ROCCAT Ryos MK Glow: device is a keyboard
[     7.221] (II) config/udev: Adding input device ROCCAT ROCCAT Ryos MK Glow (/dev/input/event25)
[     7.221] (**) ROCCAT ROCCAT Ryos MK Glow: Applying InputClass "evdev pointer catchall"
[     7.221] (**) ROCCAT ROCCAT Ryos MK Glow: Applying InputClass "evdev keyboard catchall"
[     7.221] (**) ROCCAT ROCCAT Ryos MK Glow: Applying InputClass "libinput pointer catchall"
[     7.221] (**) ROCCAT ROCCAT Ryos MK Glow: Applying InputClass "libinput keyboard catchall"
[     7.221] (**) ROCCAT ROCCAT Ryos MK Glow: Applying InputClass "system-keyboard"
[     7.221] (II) Using input driver 'libinput' for 'ROCCAT ROCCAT Ryos MK Glow'
[     7.221] (**) ROCCAT ROCCAT Ryos MK Glow: always reports core events
[     7.221] (**) Option "Device" "/dev/input/event25"
[     7.221] (**) Option "_source" "server/udev"
[     7.222] (II) event25 - ROCCAT ROCCAT Ryos MK Glow: is tagged by udev as: Keyboard Mouse
[     7.222] (II) event25 - ROCCAT ROCCAT Ryos MK Glow: device is a pointer
[     7.222] (II) event25 - ROCCAT ROCCAT Ryos MK Glow: device is a keyboard
[     7.223] (II) event25 - ROCCAT ROCCAT Ryos MK Glow: device removed
[     7.258] (II) libinput: ROCCAT ROCCAT Ryos MK Glow: needs a virtual subdevice
[     7.258] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:01.3/0000:03:00.0/usb1/1-2/1-2:1.1/0003:1E7D:31CE.0005/input/input30/event25"
[     7.258] (II) XINPUT: Adding extended input device "ROCCAT ROCCAT Ryos MK Glow" (type: MOUSE, id 11)
[     7.259] (**) Option "AccelerationScheme" "none"
[     7.259] (**) ROCCAT ROCCAT Ryos MK Glow: (accel) selected scheme none/0
[     7.259] (**) ROCCAT ROCCAT Ryos MK Glow: (accel) acceleration factor: 2.000
[     7.259] (**) ROCCAT ROCCAT Ryos MK Glow: (accel) acceleration threshold: 4
[     7.260] (II) event25 - ROCCAT ROCCAT Ryos MK Glow: is tagged by udev as: Keyboard Mouse
[     7.260] (II) event25 - ROCCAT ROCCAT Ryos MK Glow: device is a pointer
[     7.260] (II) event25 - ROCCAT ROCCAT Ryos MK Glow: device is a keyboard
[     7.261] (II) config/udev: Adding input device ROCCAT ROCCAT Ryos MK Glow (/dev/input/mouse0)
[     7.261] (**) ROCCAT ROCCAT Ryos MK Glow: Applying InputClass "system-keyboard"
[     7.261] (II) No input driver specified, ignoring this device.
[     7.261] (II) This device may have been added with another device file.
[     7.261] (II) config/udev: Adding input device HDA NVidia HDMI/DP,pcm=3 (/dev/input/event11)
[     7.261] (II) No input driver specified, ignoring this device.
[     7.261] (II) This device may have been added with another device file.
[     7.262] (II) config/udev: Adding input device HDA NVidia HDMI/DP,pcm=7 (/dev/input/event12)
[     7.262] (II) No input driver specified, ignoring this device.
[     7.262] (II) This device may have been added with another device file.
[     7.262] (II) config/udev: Adding input device HDA NVidia HDMI/DP,pcm=8 (/dev/input/event13)
[     7.262] (II) No input driver specified, ignoring this device.
[     7.262] (II) This device may have been added with another device file.
[     7.262] (II) config/udev: Adding input device HDA NVidia HDMI/DP,pcm=9 (/dev/input/event14)
[     7.262] (II) No input driver specified, ignoring this device.
[     7.262] (II) This device may have been added with another device file.
[     7.263] (II) config/udev: Adding input device HDA NVidia HDMI/DP,pcm=10 (/dev/input/event16)
[     7.263] (II) No input driver specified, ignoring this device.
[     7.263] (II) This device may have been added with another device file.
[     7.263] (II) config/udev: Adding input device HDA NVidia HDMI/DP,pcm=11 (/dev/input/event17)
[     7.263] (II) No input driver specified, ignoring this device.
[     7.263] (II) This device may have been added with another device file.
[     7.264] (II) config/udev: Adding input device HDA NVidia HDMI/DP,pcm=3 (/dev/input/event15)
[     7.264] (II) No input driver specified, ignoring this device.
[     7.264] (II) This device may have been added with another device file.
[     7.264] (II) config/udev: Adding input device HDA NVidia HDMI/DP,pcm=7 (/dev/input/event18)
[     7.264] (II) No input driver specified, ignoring this device.
[     7.264] (II) This device may have been added with another device file.
[     7.264] (II) config/udev: Adding input device HDA NVidia HDMI/DP,pcm=8 (/dev/input/event19)
[     7.264] (II) No input driver specified, ignoring this device.
[     7.264] (II) This device may have been added with another device file.
[     7.265] (II) config/udev: Adding input device HDA NVidia HDMI/DP,pcm=9 (/dev/input/event20)
[     7.265] (II) No input driver specified, ignoring this device.
[     7.265] (II) This device may have been added with another device file.
[     7.265] (II) config/udev: Adding input device HDA NVidia HDMI/DP,pcm=10 (/dev/input/event21)
[     7.265] (II) No input driver specified, ignoring this device.
[     7.265] (II) This device may have been added with another device file.
[     7.265] (II) config/udev: Adding input device HDA NVidia HDMI/DP,pcm=11 (/dev/input/event22)
[     7.265] (II) No input driver specified, ignoring this device.
[     7.265] (II) This device may have been added with another device file.
[     7.266] (II) config/udev: Adding input device HDA NVidia HDMI/DP,pcm=12 (/dev/input/event23)
[     7.266] (II) No input driver specified, ignoring this device.
[     7.266] (II) This device may have been added with another device file.
[     7.266] (II) config/udev: Adding input device HD-Audio Generic Front Mic (/dev/input/event3)
[     7.266] (II) No input driver specified, ignoring this device.
[     7.266] (II) This device may have been added with another device file.
[     7.266] (II) config/udev: Adding input device HD-Audio Generic Rear Mic (/dev/input/event4)
[     7.266] (II) No input driver specified, ignoring this device.
[     7.266] (II) This device may have been added with another device file.
[     7.267] (II) config/udev: Adding input device HD-Audio Generic Line (/dev/input/event5)
[     7.267] (II) No input driver specified, ignoring this device.
[     7.267] (II) This device may have been added with another device file.
[     7.267] (II) config/udev: Adding input device HD-Audio Generic Line Out Front (/dev/input/event6)
[     7.267] (II) No input driver specified, ignoring this device.
[     7.267] (II) This device may have been added with another device file.
[     7.267] (II) config/udev: Adding input device HD-Audio Generic Line Out Surround (/dev/input/event7)
[     7.267] (II) No input driver specified, ignoring this device.
[     7.267] (II) This device may have been added with another device file.
[     7.268] (II) config/udev: Adding input device HD-Audio Generic Line Out CLFE (/dev/input/event8)
[     7.268] (II) No input driver specified, ignoring this device.
[     7.268] (II) This device may have been added with another device file.
[     7.268] (II) config/udev: Adding input device HD-Audio Generic Line Out Side (/dev/input/event9)
[     7.268] (II) No input driver specified, ignoring this device.
[     7.268] (II) This device may have been added with another device file.
[     7.268] (II) config/udev: Adding input device HD-Audio Generic Front Headphone (/dev/input/event10)
[     7.268] (II) No input driver specified, ignoring this device.
[     7.268] (II) This device may have been added with another device file.
[     7.269] (II) config/udev: Adding input device PC Speaker (/dev/input/event2)
[     7.269] (II) No input driver specified, ignoring this device.
[     7.269] (II) This device may have been added with another device file.
[     7.276] (**) Logitech MX Master 2S: Applying InputClass "evdev pointer catchall"
[     7.276] (**) Logitech MX Master 2S: Applying InputClass "evdev keyboard catchall"
[     7.276] (**) Logitech MX Master 2S: Applying InputClass "libinput pointer catchall"
[     7.276] (**) Logitech MX Master 2S: Applying InputClass "libinput keyboard catchall"
[     7.276] (**) Logitech MX Master 2S: Applying InputClass "system-keyboard"
[     7.276] (II) Using input driver 'libinput' for 'Logitech MX Master 2S'
[     7.276] (**) Logitech MX Master 2S: always reports core events
[     7.276] (**) Option "Device" "/dev/input/event26"
[     7.276] (**) Option "_source" "_driver/libinput"
[     7.276] (II) libinput: Logitech MX Master 2S: is a virtual subdevice
[     7.276] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:01.3/0000:03:00.0/usb1/1-1/1-1:1.2/0003:046D:C52B.0003/0003:046D:4069.0006/input/input41/event26"
[     7.276] (II) XINPUT: Adding extended input device "Logitech MX Master 2S" (type: KEYBOARD, id 12)
[     7.276] (**) Option "xkb_layout" "de"
[     7.276] (**) Logitech MX Master 3: Applying InputClass "evdev pointer catchall"
[     7.276] (**) Logitech MX Master 3: Applying InputClass "evdev keyboard catchall"
[     7.276] (**) Logitech MX Master 3: Applying InputClass "libinput pointer catchall"
[     7.276] (**) Logitech MX Master 3: Applying InputClass "libinput keyboard catchall"
[     7.276] (**) Logitech MX Master 3: Applying InputClass "system-keyboard"
[     7.276] (II) Using input driver 'libinput' for 'Logitech MX Master 3'
[     7.276] (**) Logitech MX Master 3: always reports core events
[     7.276] (**) Option "Device" "/dev/input/event27"
[     7.276] (**) Option "_source" "_driver/libinput"
[     7.276] (II) libinput: Logitech MX Master 3: is a virtual subdevice
[     7.276] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:01.3/0000:03:00.0/usb1/1-1/1-1:1.2/0003:046D:C52B.0003/0003:046D:4082.0007/input/input42/event27"
[     7.276] (II) XINPUT: Adding extended input device "Logitech MX Master 3" (type: KEYBOARD, id 13)
[     7.276] (**) Option "xkb_layout" "de"
[     7.276] (**) ROCCAT ROCCAT Ryos MK Glow: Applying InputClass "evdev pointer catchall"
[     7.276] (**) ROCCAT ROCCAT Ryos MK Glow: Applying InputClass "evdev keyboard catchall"
[     7.276] (**) ROCCAT ROCCAT Ryos MK Glow: Applying InputClass "libinput pointer catchall"
[     7.276] (**) ROCCAT ROCCAT Ryos MK Glow: Applying InputClass "libinput keyboard catchall"
[     7.276] (**) ROCCAT ROCCAT Ryos MK Glow: Applying InputClass "system-keyboard"
[     7.276] (II) Using input driver 'libinput' for 'ROCCAT ROCCAT Ryos MK Glow'
[     7.276] (**) ROCCAT ROCCAT Ryos MK Glow: always reports core events
[     7.276] (**) Option "Device" "/dev/input/event25"
[     7.276] (**) Option "_source" "_driver/libinput"
[     7.276] (II) libinput: ROCCAT ROCCAT Ryos MK Glow: is a virtual subdevice
[     7.276] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:01.3/0000:03:00.0/usb1/1-2/1-2:1.1/0003:1E7D:31CE.0005/input/input30/event25"
[     7.276] (II) XINPUT: Adding extended input device "ROCCAT ROCCAT Ryos MK Glow" (type: KEYBOARD, id 14)
[     7.276] (**) Option "xkb_layout" "de"
[     7.278] (II) config/udev: removing device ROCCAT ROCCAT Ryos MK Glow
[     7.278] (II) event24 - ROCCAT ROCCAT Ryos MK Glow: device removed
[     7.329] (II) UnloadModule: "libinput"
[     7.329] (II) config/udev: Adding input device ROCCAT ROCCAT Ryos MK Glow (/dev/input/event24)
[     7.329] (**) ROCCAT ROCCAT Ryos MK Glow: Applying InputClass "evdev keyboard catchall"
[     7.329] (**) ROCCAT ROCCAT Ryos MK Glow: Applying InputClass "libinput keyboard catchall"
[     7.329] (**) ROCCAT ROCCAT Ryos MK Glow: Applying InputClass "system-keyboard"
[     7.329] (II) Using input driver 'libinput' for 'ROCCAT ROCCAT Ryos MK Glow'
[     7.329] (**) ROCCAT ROCCAT Ryos MK Glow: always reports core events
[     7.329] (**) Option "Device" "/dev/input/event24"
[     7.329] (**) Option "_source" "server/udev"
[     7.330] (II) event24 - ROCCAT ROCCAT Ryos MK Glow: is tagged by udev as: Keyboard
[     7.330] (II) event24 - ROCCAT ROCCAT Ryos MK Glow: device is a keyboard
[     7.330] (II) event24 - ROCCAT ROCCAT Ryos MK Glow: device removed
[     7.378] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:01.3/0000:03:00.0/usb1/1-2/1-2:1.0/0003:1E7D:31CE.0004/input/input29/event24"
[     7.378] (II) XINPUT: Adding extended input device "ROCCAT ROCCAT Ryos MK Glow" (type: KEYBOARD, id 10)
[     7.378] (**) Option "xkb_layout" "de"
[     7.380] (II) event24 - ROCCAT ROCCAT Ryos MK Glow: is tagged by udev as: Keyboard
[     7.380] (II) event24 - ROCCAT ROCCAT Ryos MK Glow: device is a keyboard
[     7.380] (II) config/udev: removing device ROCCAT ROCCAT Ryos MK Glow
[     7.380] (II) UnloadModule: "libinput"
[     7.380] (II) config/udev: removing device ROCCAT ROCCAT Ryos MK Glow
[     7.380] (II) event25 - ROCCAT ROCCAT Ryos MK Glow: device removed
[     7.418] (II) UnloadModule: "libinput"
[     7.419] (II) config/udev: Adding input device ROCCAT ROCCAT Ryos MK Glow (/dev/input/event25)
[     7.419] (**) ROCCAT ROCCAT Ryos MK Glow: Applying InputClass "evdev pointer catchall"
[     7.419] (**) ROCCAT ROCCAT Ryos MK Glow: Applying InputClass "evdev keyboard catchall"
[     7.419] (**) ROCCAT ROCCAT Ryos MK Glow: Applying InputClass "libinput pointer catchall"
[     7.419] (**) ROCCAT ROCCAT Ryos MK Glow: Applying InputClass "libinput keyboard catchall"
[     7.419] (**) ROCCAT ROCCAT Ryos MK Glow: Applying InputClass "system-keyboard"
[     7.419] (II) Using input driver 'libinput' for 'ROCCAT ROCCAT Ryos MK Glow'
[     7.419] (**) ROCCAT ROCCAT Ryos MK Glow: always reports core events
[     7.419] (**) Option "Device" "/dev/input/event25"
[     7.419] (**) Option "_source" "server/udev"
[     7.420] (II) event25 - ROCCAT ROCCAT Ryos MK Glow: is tagged by udev as: Keyboard Mouse
[     7.420] (II) event25 - ROCCAT ROCCAT Ryos MK Glow: device is a pointer
[     7.420] (II) event25 - ROCCAT ROCCAT Ryos MK Glow: device is a keyboard
[     7.420] (II) event25 - ROCCAT ROCCAT Ryos MK Glow: device removed
[     7.472] (II) libinput: ROCCAT ROCCAT Ryos MK Glow: needs a virtual subdevice
[     7.472] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:01.3/0000:03:00.0/usb1/1-2/1-2:1.1/0003:1E7D:31CE.0005/input/input30/event25"
[     7.472] (II) XINPUT: Adding extended input device "ROCCAT ROCCAT Ryos MK Glow" (type: MOUSE, id 11)
[     7.472] (**) Option "AccelerationScheme" "none"
[     7.472] (**) ROCCAT ROCCAT Ryos MK Glow: (accel) selected scheme none/0
[     7.472] (**) ROCCAT ROCCAT Ryos MK Glow: (accel) acceleration factor: 2.000
[     7.472] (**) ROCCAT ROCCAT Ryos MK Glow: (accel) acceleration threshold: 4
[     7.473] (II) event25 - ROCCAT ROCCAT Ryos MK Glow: is tagged by udev as: Keyboard Mouse
[     7.473] (II) event25 - ROCCAT ROCCAT Ryos MK Glow: device is a pointer
[     7.473] (II) event25 - ROCCAT ROCCAT Ryos MK Glow: device is a keyboard
[     7.474] (**) ROCCAT ROCCAT Ryos MK Glow: Applying InputClass "evdev pointer catchall"
[     7.474] (**) ROCCAT ROCCAT Ryos MK Glow: Applying InputClass "evdev keyboard catchall"
[     7.474] (**) ROCCAT ROCCAT Ryos MK Glow: Applying InputClass "libinput pointer catchall"
[     7.474] (**) ROCCAT ROCCAT Ryos MK Glow: Applying InputClass "libinput keyboard catchall"
[     7.474] (**) ROCCAT ROCCAT Ryos MK Glow: Applying InputClass "system-keyboard"
[     7.474] (II) Using input driver 'libinput' for 'ROCCAT ROCCAT Ryos MK Glow'
[     7.474] (**) ROCCAT ROCCAT Ryos MK Glow: always reports core events
[     7.474] (**) Option "Device" "/dev/input/event25"
[     7.474] (**) Option "_source" "_driver/libinput"
[     7.474] (II) libinput: ROCCAT ROCCAT Ryos MK Glow: is a virtual subdevice
[     7.474] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:01.3/0000:03:00.0/usb1/1-2/1-2:1.1/0003:1E7D:31CE.0005/input/input30/event25"
[     7.474] (II) XINPUT: Adding extended input device "ROCCAT ROCCAT Ryos MK Glow" (type: KEYBOARD, id 14)
[     7.474] (**) Option "xkb_layout" "de"
[     7.474] (II) config/udev: Adding input device ROCCAT ROCCAT Ryos MK Glow (/dev/input/mouse0)
[     7.474] (**) ROCCAT ROCCAT Ryos MK Glow: Applying InputClass "system-keyboard"
[     7.474] (II) No input driver specified, ignoring this device.
[     7.474] (II) This device may have been added with another device file.
[     7.476] (II) config/udev: Adding input device Logitech MX Master 3 (/dev/input/mouse2)
[     7.476] (**) Logitech MX Master 3: Applying InputClass "system-keyboard"
[     7.476] (II) No input driver specified, ignoring this device.
[     7.476] (II) This device may have been added with another device file.
[     7.477] (II) config/udev: Adding input device Logitech MX Master 2S (/dev/input/mouse1)
[     7.477] (**) Logitech MX Master 2S: Applying InputClass "system-keyboard"
[     7.477] (II) No input driver specified, ignoring this device.
[     7.477] (II) This device may have been added with another device file.
[     7.477] (II) config/udev: removing device Logitech MX Master 3
[     7.477] (II) UnloadModule: "libinput"
[     7.477] (II) config/udev: removing device Logitech MX Master 3
[     7.477] (II) event27 - Logitech MX Master 3: device removed
[     7.525] (II) UnloadModule: "libinput"
[     7.526] (II) config/udev: Adding input device Logitech MX Master 3 (/dev/input/event27)
[     7.526] (**) Logitech MX Master 3: Applying InputClass "evdev pointer catchall"
[     7.526] (**) Logitech MX Master 3: Applying InputClass "evdev keyboard catchall"
[     7.526] (**) Logitech MX Master 3: Applying InputClass "libinput pointer catchall"
[     7.526] (**) Logitech MX Master 3: Applying InputClass "libinput keyboard catchall"
[     7.526] (**) Logitech MX Master 3: Applying InputClass "system-keyboard"
[     7.526] (II) Using input driver 'libinput' for 'Logitech MX Master 3'
[     7.526] (**) Logitech MX Master 3: always reports core events
[     7.526] (**) Option "Device" "/dev/input/event27"
[     7.526] (**) Option "_source" "server/udev"
[     7.527] (II) event27 - Logitech MX Master 3: is tagged by udev as: Keyboard Mouse
[     7.527] (II) event27 - Logitech MX Master 3: device is a pointer
[     7.527] (II) event27 - Logitech MX Master 3: device is a keyboard
[     7.528] (II) event27 - Logitech MX Master 3: device removed
[     7.552] (II) libinput: Logitech MX Master 3: needs a virtual subdevice
[     7.552] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:01.3/0000:03:00.0/usb1/1-1/1-1:1.2/0003:046D:C52B.0003/0003:046D:4082.0007/input/input42/event27"
[     7.552] (II) XINPUT: Adding extended input device "Logitech MX Master 3" (type: MOUSE, id 9)
[     7.552] (**) Option "AccelerationScheme" "none"
[     7.552] (**) Logitech MX Master 3: (accel) selected scheme none/0
[     7.552] (**) Logitech MX Master 3: (accel) acceleration factor: 2.000
[     7.552] (**) Logitech MX Master 3: (accel) acceleration threshold: 4
[     7.553] (II) event27 - Logitech MX Master 3: is tagged by udev as: Keyboard Mouse
[     7.553] (II) event27 - Logitech MX Master 3: device is a pointer
[     7.553] (II) event27 - Logitech MX Master 3: device is a keyboard
[     7.554] (**) Logitech MX Master 3: Applying InputClass "evdev pointer catchall"
[     7.554] (**) Logitech MX Master 3: Applying InputClass "evdev keyboard catchall"
[     7.554] (**) Logitech MX Master 3: Applying InputClass "libinput pointer catchall"
[     7.554] (**) Logitech MX Master 3: Applying InputClass "libinput keyboard catchall"
[     7.554] (**) Logitech MX Master 3: Applying InputClass "system-keyboard"
[     7.554] (II) Using input driver 'libinput' for 'Logitech MX Master 3'
[     7.554] (**) Logitech MX Master 3: always reports core events
[     7.554] (**) Option "Device" "/dev/input/event27"
[     7.554] (**) Option "_source" "_driver/libinput"
[     7.554] (II) libinput: Logitech MX Master 3: is a virtual subdevice
[     7.554] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:01.3/0000:03:00.0/usb1/1-1/1-1:1.2/0003:046D:C52B.0003/0003:046D:4082.0007/input/input42/event27"
[     7.554] (II) XINPUT: Adding extended input device "Logitech MX Master 3" (type: KEYBOARD, id 13)
[     7.554] (**) Option "xkb_layout" "de"
[     7.554] (II) config/udev: removing device Logitech MX Master 2S
[     7.554] (II) UnloadModule: "libinput"
[     7.554] (II) config/udev: removing device Logitech MX Master 2S
[     7.554] (II) event26 - Logitech MX Master 2S: device removed
[     7.578] (II) UnloadModule: "libinput"
[     7.579] (II) config/udev: Adding input device Logitech MX Master 2S (/dev/input/event26)
[     7.579] (**) Logitech MX Master 2S: Applying InputClass "evdev pointer catchall"
[     7.579] (**) Logitech MX Master 2S: Applying InputClass "evdev keyboard catchall"
[     7.579] (**) Logitech MX Master 2S: Applying InputClass "libinput pointer catchall"
[     7.579] (**) Logitech MX Master 2S: Applying InputClass "libinput keyboard catchall"
[     7.579] (**) Logitech MX Master 2S: Applying InputClass "system-keyboard"
[     7.579] (II) Using input driver 'libinput' for 'Logitech MX Master 2S'
[     7.579] (**) Logitech MX Master 2S: always reports core events
[     7.579] (**) Option "Device" "/dev/input/event26"
[     7.579] (**) Option "_source" "server/udev"
[     7.580] (II) event26 - Logitech MX Master 2S: is tagged by udev as: Keyboard Mouse
[     7.581] (II) event26 - Logitech MX Master 2S: device is a pointer
[     7.581] (II) event26 - Logitech MX Master 2S: device is a keyboard
[     7.581] (II) event26 - Logitech MX Master 2S: device removed
[     7.605] (II) libinput: Logitech MX Master 2S: needs a virtual subdevice
[     7.605] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:01.3/0000:03:00.0/usb1/1-1/1-1:1.2/0003:046D:C52B.0003/0003:046D:4069.0006/input/input41/event26"
[     7.605] (II) XINPUT: Adding extended input device "Logitech MX Master 2S" (type: MOUSE, id 8)
[     7.605] (**) Option "AccelerationScheme" "none"
[     7.605] (**) Logitech MX Master 2S: (accel) selected scheme none/0
[     7.605] (**) Logitech MX Master 2S: (accel) acceleration factor: 2.000
[     7.605] (**) Logitech MX Master 2S: (accel) acceleration threshold: 4
[     7.607] (II) event26 - Logitech MX Master 2S: is tagged by udev as: Keyboard Mouse
[     7.607] (II) event26 - Logitech MX Master 2S: device is a pointer
[     7.607] (II) event26 - Logitech MX Master 2S: device is a keyboard
[     7.607] (**) Logitech MX Master 2S: Applying InputClass "evdev pointer catchall"
[     7.607] (**) Logitech MX Master 2S: Applying InputClass "evdev keyboard catchall"
[     7.607] (**) Logitech MX Master 2S: Applying InputClass "libinput pointer catchall"
[     7.607] (**) Logitech MX Master 2S: Applying InputClass "libinput keyboard catchall"
[     7.607] (**) Logitech MX Master 2S: Applying InputClass "system-keyboard"
[     7.607] (II) Using input driver 'libinput' for 'Logitech MX Master 2S'
[     7.607] (**) Logitech MX Master 2S: always reports core events
[     7.607] (**) Option "Device" "/dev/input/event26"
[     7.607] (**) Option "_source" "_driver/libinput"
[     7.607] (II) libinput: Logitech MX Master 2S: is a virtual subdevice
[     7.607] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:01.3/0000:03:00.0/usb1/1-1/1-1:1.2/0003:046D:C52B.0003/0003:046D:4069.0006/input/input41/event26"
[     7.607] (II) XINPUT: Adding extended input device "Logitech MX Master 2S" (type: KEYBOARD, id 12)
[     7.607] (**) Option "xkb_layout" "de"
[    14.493] (--) NVIDIA(GPU-0): CRT-0: disconnected
[    14.493] (--) NVIDIA(GPU-0): CRT-0: 400.0 MHz maximum pixel clock
[    14.493] (--) NVIDIA(GPU-0): 
[    14.526] (--) NVIDIA(GPU-0): BenQ BL2405 (DFP-0): connected
[    14.526] (--) NVIDIA(GPU-0): BenQ BL2405 (DFP-0): Internal TMDS
[    14.526] (--) NVIDIA(GPU-0): BenQ BL2405 (DFP-0): 330.0 MHz maximum pixel clock
[    14.526] (--) NVIDIA(GPU-0): 
[    14.526] (--) NVIDIA(GPU-0): DFP-1: disconnected
[    14.526] (--) NVIDIA(GPU-0): DFP-1: Internal TMDS
[    14.526] (--) NVIDIA(GPU-0): DFP-1: 165.0 MHz maximum pixel clock
[    14.526] (--) NVIDIA(GPU-0): 
[    14.526] (--) NVIDIA(GPU-0): DFP-2: disconnected
[    14.526] (--) NVIDIA(GPU-0): DFP-2: Internal DisplayPort
[    14.526] (--) NVIDIA(GPU-0): DFP-2: 960.0 MHz maximum pixel clock
[    14.526] (--) NVIDIA(GPU-0): 
[    14.526] (--) NVIDIA(GPU-0): DFP-3: disconnected
[    14.526] (--) NVIDIA(GPU-0): DFP-3: Internal TMDS
[    14.526] (--) NVIDIA(GPU-0): DFP-3: 165.0 MHz maximum pixel clock
[    14.526] (--) NVIDIA(GPU-0): 
[    14.526] (--) NVIDIA(GPU-0): DFP-4: disconnected
[    14.526] (--) NVIDIA(GPU-0): DFP-4: Internal DisplayPort
[    14.526] (--) NVIDIA(GPU-0): DFP-4: 960.0 MHz maximum pixel clock
[    14.526] (--) NVIDIA(GPU-0): 
[    14.526] (--) NVIDIA(GPU-0): DFP-5: disconnected
[    14.526] (--) NVIDIA(GPU-0): DFP-5: Internal TMDS
[    14.526] (--) NVIDIA(GPU-0): DFP-5: 165.0 MHz maximum pixel clock
[    14.526] (--) NVIDIA(GPU-0): 
[    14.526] (--) NVIDIA(GPU-0): DFP-6: disconnected
[    14.526] (--) NVIDIA(GPU-0): DFP-6: Internal DisplayPort
[    14.526] (--) NVIDIA(GPU-0): DFP-6: 960.0 MHz maximum pixel clock
[    14.526] (--) NVIDIA(GPU-0): 
[    14.526] (--) NVIDIA(GPU-0): DFP-7: disconnected
[    14.526] (--) NVIDIA(GPU-0): DFP-7: Internal TMDS
[    14.526] (--) NVIDIA(GPU-0): DFP-7: 165.0 MHz maximum pixel clock
[    14.526] (--) NVIDIA(GPU-0): 
[    14.542] (--) NVIDIA(GPU-0): CRT-0: disconnected
[    14.542] (--) NVIDIA(GPU-0): CRT-0: 400.0 MHz maximum pixel clock
[    14.542] (--) NVIDIA(GPU-0): 
[    14.573] (--) NVIDIA(GPU-0): BenQ BL2405 (DFP-0): connected
[    14.573] (--) NVIDIA(GPU-0): BenQ BL2405 (DFP-0): Internal TMDS
[    14.573] (--) NVIDIA(GPU-0): BenQ BL2405 (DFP-0): 330.0 MHz maximum pixel clock
[    14.573] (--) NVIDIA(GPU-0): 
[    14.573] (--) NVIDIA(GPU-0): DFP-1: disconnected
[    14.573] (--) NVIDIA(GPU-0): DFP-1: Internal TMDS
[    14.573] (--) NVIDIA(GPU-0): DFP-1: 165.0 MHz maximum pixel clock
[    14.573] (--) NVIDIA(GPU-0): 
[    14.573] (--) NVIDIA(GPU-0): DFP-2: disconnected
[    14.573] (--) NVIDIA(GPU-0): DFP-2: Internal DisplayPort
[    14.573] (--) NVIDIA(GPU-0): DFP-2: 960.0 MHz maximum pixel clock
[    14.573] (--) NVIDIA(GPU-0): 
[    14.573] (--) NVIDIA(GPU-0): DFP-3: disconnected
[    14.573] (--) NVIDIA(GPU-0): DFP-3: Internal TMDS
[    14.573] (--) NVIDIA(GPU-0): DFP-3: 165.0 MHz maximum pixel clock
[    14.573] (--) NVIDIA(GPU-0): 
[    14.573] (--) NVIDIA(GPU-0): DFP-4: disconnected
[    14.573] (--) NVIDIA(GPU-0): DFP-4: Internal DisplayPort
[    14.573] (--) NVIDIA(GPU-0): DFP-4: 960.0 MHz maximum pixel clock
[    14.573] (--) NVIDIA(GPU-0): 
[    14.573] (--) NVIDIA(GPU-0): DFP-5: disconnected
[    14.573] (--) NVIDIA(GPU-0): DFP-5: Internal TMDS
[    14.573] (--) NVIDIA(GPU-0): DFP-5: 165.0 MHz maximum pixel clock
[    14.573] (--) NVIDIA(GPU-0): 
[    14.573] (--) NVIDIA(GPU-0): DFP-6: disconnected
[    14.573] (--) NVIDIA(GPU-0): DFP-6: Internal DisplayPort
[    14.573] (--) NVIDIA(GPU-0): DFP-6: 960.0 MHz maximum pixel clock
[    14.573] (--) NVIDIA(GPU-0): 
[    14.573] (--) NVIDIA(GPU-0): DFP-7: disconnected
[    14.573] (--) NVIDIA(GPU-0): DFP-7: Internal TMDS
[    14.573] (--) NVIDIA(GPU-0): DFP-7: 165.0 MHz maximum pixel clock
[    14.573] (--) NVIDIA(GPU-0): 
[    14.573] (--) NVIDIA(GPU-1): DFP-0: disconnected
[    14.573] (--) NVIDIA(GPU-1): DFP-0: Internal TMDS
[    14.573] (--) NVIDIA(GPU-1): DFP-0: 330.0 MHz maximum pixel clock
[    14.574] (--) NVIDIA(GPU-1): 
[    14.617] (--) NVIDIA(GPU-1): BenQ BL2405 (DFP-1): connected
[    14.617] (--) NVIDIA(GPU-1): BenQ BL2405 (DFP-1): Internal TMDS
[    14.617] (--) NVIDIA(GPU-1): BenQ BL2405 (DFP-1): 600.0 MHz maximum pixel clock
[    14.617] (--) NVIDIA(GPU-1): 
[    14.617] (--) NVIDIA(GPU-1): DFP-2: disconnected
[    14.617] (--) NVIDIA(GPU-1): DFP-2: Internal DisplayPort
[    14.617] (--) NVIDIA(GPU-1): DFP-2: 1440.0 MHz maximum pixel clock
[    14.617] (--) NVIDIA(GPU-1): 
[    14.710] (--) NVIDIA(GPU-1): Acer G246HL (DFP-3): connected
[    14.710] (--) NVIDIA(GPU-1): Acer G246HL (DFP-3): Internal TMDS
[    14.710] (--) NVIDIA(GPU-1): Acer G246HL (DFP-3): 300.0 MHz maximum pixel clock
[    14.710] (--) NVIDIA(GPU-1): 
[    15.664] (--) NVIDIA(GPU-0): CRT-0: disconnected
[    15.664] (--) NVIDIA(GPU-0): CRT-0: 400.0 MHz maximum pixel clock
[    15.664] (--) NVIDIA(GPU-0): 
[    15.695] (--) NVIDIA(GPU-0): BenQ BL2405 (DFP-0): connected
[    15.695] (--) NVIDIA(GPU-0): BenQ BL2405 (DFP-0): Internal TMDS
[    15.695] (--) NVIDIA(GPU-0): BenQ BL2405 (DFP-0): 330.0 MHz maximum pixel clock
[    15.695] (--) NVIDIA(GPU-0): 
[    15.695] (--) NVIDIA(GPU-0): DFP-1: disconnected
[    15.696] (--) NVIDIA(GPU-0): DFP-1: Internal TMDS
[    15.696] (--) NVIDIA(GPU-0): DFP-1: 165.0 MHz maximum pixel clock
[    15.696] (--) NVIDIA(GPU-0): 
[    15.696] (--) NVIDIA(GPU-0): DFP-2: disconnected
[    15.696] (--) NVIDIA(GPU-0): DFP-2: Internal DisplayPort
[    15.696] (--) NVIDIA(GPU-0): DFP-2: 960.0 MHz maximum pixel clock
[    15.696] (--) NVIDIA(GPU-0): 
[    15.696] (--) NVIDIA(GPU-0): DFP-3: disconnected
[    15.696] (--) NVIDIA(GPU-0): DFP-3: Internal TMDS
[    15.696] (--) NVIDIA(GPU-0): DFP-3: 165.0 MHz maximum pixel clock
[    15.696] (--) NVIDIA(GPU-0): 
[    15.696] (--) NVIDIA(GPU-0): DFP-4: disconnected
[    15.696] (--) NVIDIA(GPU-0): DFP-4: Internal DisplayPort
[    15.696] (--) NVIDIA(GPU-0): DFP-4: 960.0 MHz maximum pixel clock
[    15.696] (--) NVIDIA(GPU-0): 
[    15.696] (--) NVIDIA(GPU-0): DFP-5: disconnected
[    15.696] (--) NVIDIA(GPU-0): DFP-5: Internal TMDS
[    15.696] (--) NVIDIA(GPU-0): DFP-5: 165.0 MHz maximum pixel clock
[    15.696] (--) NVIDIA(GPU-0): 
[    15.696] (--) NVIDIA(GPU-0): DFP-6: disconnected
[    15.696] (--) NVIDIA(GPU-0): DFP-6: Internal DisplayPort
[    15.696] (--) NVIDIA(GPU-0): DFP-6: 960.0 MHz maximum pixel clock
[    15.696] (--) NVIDIA(GPU-0): 
[    15.696] (--) NVIDIA(GPU-0): DFP-7: disconnected
[    15.696] (--) NVIDIA(GPU-0): DFP-7: Internal TMDS
[    15.696] (--) NVIDIA(GPU-0): DFP-7: 165.0 MHz maximum pixel clock
[    15.696] (--) NVIDIA(GPU-0): 
[    15.712] (--) NVIDIA(GPU-0): CRT-0: disconnected
[    15.712] (--) NVIDIA(GPU-0): CRT-0: 400.0 MHz maximum pixel clock
[    15.712] (--) NVIDIA(GPU-0): 
[    15.744] (--) NVIDIA(GPU-0): BenQ BL2405 (DFP-0): connected
[    15.744] (--) NVIDIA(GPU-0): BenQ BL2405 (DFP-0): Internal TMDS
[    15.744] (--) NVIDIA(GPU-0): BenQ BL2405 (DFP-0): 330.0 MHz maximum pixel clock
[    15.744] (--) NVIDIA(GPU-0): 
[    15.744] (--) NVIDIA(GPU-0): DFP-1: disconnected
[    15.744] (--) NVIDIA(GPU-0): DFP-1: Internal TMDS
[    15.744] (--) NVIDIA(GPU-0): DFP-1: 165.0 MHz maximum pixel clock
[    15.744] (--) NVIDIA(GPU-0): 
[    15.744] (--) NVIDIA(GPU-0): DFP-2: disconnected
[    15.744] (--) NVIDIA(GPU-0): DFP-2: Internal DisplayPort
[    15.744] (--) NVIDIA(GPU-0): DFP-2: 960.0 MHz maximum pixel clock
[    15.744] (--) NVIDIA(GPU-0): 
[    15.744] (--) NVIDIA(GPU-0): DFP-3: disconnected
[    15.744] (--) NVIDIA(GPU-0): DFP-3: Internal TMDS
[    15.744] (--) NVIDIA(GPU-0): DFP-3: 165.0 MHz maximum pixel clock
[    15.744] (--) NVIDIA(GPU-0): 
[    15.744] (--) NVIDIA(GPU-0): DFP-4: disconnected
[    15.744] (--) NVIDIA(GPU-0): DFP-4: Internal DisplayPort
[    15.744] (--) NVIDIA(GPU-0): DFP-4: 960.0 MHz maximum pixel clock
[    15.744] (--) NVIDIA(GPU-0): 
[    15.745] (--) NVIDIA(GPU-0): DFP-5: disconnected
[    15.745] (--) NVIDIA(GPU-0): DFP-5: Internal TMDS
[    15.745] (--) NVIDIA(GPU-0): DFP-5: 165.0 MHz maximum pixel clock
[    15.745] (--) NVIDIA(GPU-0): 
[    15.745] (--) NVIDIA(GPU-0): DFP-6: disconnected
[    15.745] (--) NVIDIA(GPU-0): DFP-6: Internal DisplayPort
[    15.745] (--) NVIDIA(GPU-0): DFP-6: 960.0 MHz maximum pixel clock
[    15.745] (--) NVIDIA(GPU-0): 
[    15.745] (--) NVIDIA(GPU-0): DFP-7: disconnected
[    15.745] (--) NVIDIA(GPU-0): DFP-7: Internal TMDS
[    15.745] (--) NVIDIA(GPU-0): DFP-7: 165.0 MHz maximum pixel clock
[    15.745] (--) NVIDIA(GPU-0): 
[    15.745] (--) NVIDIA(GPU-1): DFP-0: disconnected
[    15.745] (--) NVIDIA(GPU-1): DFP-0: Internal TMDS
[    15.745] (--) NVIDIA(GPU-1): DFP-0: 330.0 MHz maximum pixel clock
[    15.745] (--) NVIDIA(GPU-1): 
[    15.789] (--) NVIDIA(GPU-1): BenQ BL2405 (DFP-1): connected
[    15.789] (--) NVIDIA(GPU-1): BenQ BL2405 (DFP-1): Internal TMDS
[    15.789] (--) NVIDIA(GPU-1): BenQ BL2405 (DFP-1): 600.0 MHz maximum pixel clock
[    15.789] (--) NVIDIA(GPU-1): 
[    15.789] (--) NVIDIA(GPU-1): DFP-2: disconnected
[    15.789] (--) NVIDIA(GPU-1): DFP-2: Internal DisplayPort
[    15.789] (--) NVIDIA(GPU-1): DFP-2: 1440.0 MHz maximum pixel clock
[    15.789] (--) NVIDIA(GPU-1): 
[    15.882] (--) NVIDIA(GPU-1): Acer G246HL (DFP-3): connected
[    15.882] (--) NVIDIA(GPU-1): Acer G246HL (DFP-3): Internal TMDS
[    15.882] (--) NVIDIA(GPU-1): Acer G246HL (DFP-3): 300.0 MHz maximum pixel clock
[    15.882] (--) NVIDIA(GPU-1): 
[    20.590] (EE) event26 - Logitech MX Master 2S: client bug: event processing lagging behind by 14ms, your system is too slow
[    21.055] (--) NVIDIA(GPU-0): CRT-0: disconnected
[    21.055] (--) NVIDIA(GPU-0): CRT-0: 400.0 MHz maximum pixel clock
[    21.055] (--) NVIDIA(GPU-0): 
[    21.101] (--) NVIDIA(GPU-0): BenQ BL2405 (DFP-0): connected
[    21.101] (--) NVIDIA(GPU-0): BenQ BL2405 (DFP-0): Internal TMDS
[    21.101] (--) NVIDIA(GPU-0): BenQ BL2405 (DFP-0): 330.0 MHz maximum pixel clock
[    21.101] (--) NVIDIA(GPU-0): 
[    21.101] (--) NVIDIA(GPU-0): DFP-1: disconnected
[    21.101] (--) NVIDIA(GPU-0): DFP-1: Internal TMDS
[    21.101] (--) NVIDIA(GPU-0): DFP-1: 165.0 MHz maximum pixel clock
[    21.101] (--) NVIDIA(GPU-0): 
[    21.101] (--) NVIDIA(GPU-0): DFP-2: disconnected
[    21.101] (--) NVIDIA(GPU-0): DFP-2: Internal DisplayPort
[    21.101] (--) NVIDIA(GPU-0): DFP-2: 960.0 MHz maximum pixel clock
[    21.101] (--) NVIDIA(GPU-0): 
[    21.101] (--) NVIDIA(GPU-0): DFP-3: disconnected
[    21.101] (--) NVIDIA(GPU-0): DFP-3: Internal TMDS
[    21.101] (--) NVIDIA(GPU-0): DFP-3: 165.0 MHz maximum pixel clock
[    21.101] (--) NVIDIA(GPU-0): 
[    21.101] (--) NVIDIA(GPU-0): DFP-4: disconnected
[    21.101] (--) NVIDIA(GPU-0): DFP-4: Internal DisplayPort
[    21.101] (--) NVIDIA(GPU-0): DFP-4: 960.0 MHz maximum pixel clock
[    21.101] (--) NVIDIA(GPU-0): 
[    21.102] (--) NVIDIA(GPU-0): DFP-5: disconnected
[    21.102] (--) NVIDIA(GPU-0): DFP-5: Internal TMDS
[    21.102] (--) NVIDIA(GPU-0): DFP-5: 165.0 MHz maximum pixel clock
[    21.102] (--) NVIDIA(GPU-0): 
[    21.102] (--) NVIDIA(GPU-0): DFP-6: disconnected
[    21.102] (--) NVIDIA(GPU-0): DFP-6: Internal DisplayPort
[    21.102] (--) NVIDIA(GPU-0): DFP-6: 960.0 MHz maximum pixel clock
[    21.102] (--) NVIDIA(GPU-0): 
[    21.102] (--) NVIDIA(GPU-0): DFP-7: disconnected
[    21.102] (--) NVIDIA(GPU-0): DFP-7: Internal TMDS
[    21.102] (--) NVIDIA(GPU-0): DFP-7: 165.0 MHz maximum pixel clock
[    21.102] (--) NVIDIA(GPU-0): 
[    21.118] (--) NVIDIA(GPU-0): CRT-0: disconnected
[    21.118] (--) NVIDIA(GPU-0): CRT-0: 400.0 MHz maximum pixel clock
[    21.118] (--) NVIDIA(GPU-0): 
[    21.150] (--) NVIDIA(GPU-0): BenQ BL2405 (DFP-0): connected
[    21.150] (--) NVIDIA(GPU-0): BenQ BL2405 (DFP-0): Internal TMDS
[    21.150] (--) NVIDIA(GPU-0): BenQ BL2405 (DFP-0): 330.0 MHz maximum pixel clock
[    21.150] (--) NVIDIA(GPU-0): 
[    21.150] (--) NVIDIA(GPU-0): DFP-1: disconnected
[    21.150] (--) NVIDIA(GPU-0): DFP-1: Internal TMDS
[    21.150] (--) NVIDIA(GPU-0): DFP-1: 165.0 MHz maximum pixel clock
[    21.150] (--) NVIDIA(GPU-0): 
[    21.150] (--) NVIDIA(GPU-0): DFP-2: disconnected
[    21.150] (--) NVIDIA(GPU-0): DFP-2: Internal DisplayPort
[    21.150] (--) NVIDIA(GPU-0): DFP-2: 960.0 MHz maximum pixel clock
[    21.150] (--) NVIDIA(GPU-0): 
[    21.150] (--) NVIDIA(GPU-0): DFP-3: disconnected
[    21.150] (--) NVIDIA(GPU-0): DFP-3: Internal TMDS
[    21.150] (--) NVIDIA(GPU-0): DFP-3: 165.0 MHz maximum pixel clock
[    21.150] (--) NVIDIA(GPU-0): 
[    21.150] (--) NVIDIA(GPU-0): DFP-4: disconnected
[    21.150] (--) NVIDIA(GPU-0): DFP-4: Internal DisplayPort
[    21.150] (--) NVIDIA(GPU-0): DFP-4: 960.0 MHz maximum pixel clock
[    21.150] (--) NVIDIA(GPU-0): 
[    21.150] (--) NVIDIA(GPU-0): DFP-5: disconnected
[    21.150] (--) NVIDIA(GPU-0): DFP-5: Internal TMDS
[    21.150] (--) NVIDIA(GPU-0): DFP-5: 165.0 MHz maximum pixel clock
[    21.150] (--) NVIDIA(GPU-0): 
[    21.150] (--) NVIDIA(GPU-0): DFP-6: disconnected
[    21.150] (--) NVIDIA(GPU-0): DFP-6: Internal DisplayPort
[    21.150] (--) NVIDIA(GPU-0): DFP-6: 960.0 MHz maximum pixel clock
[    21.150] (--) NVIDIA(GPU-0): 
[    21.151] (--) NVIDIA(GPU-0): DFP-7: disconnected
[    21.151] (--) NVIDIA(GPU-0): DFP-7: Internal TMDS
[    21.151] (--) NVIDIA(GPU-0): DFP-7: 165.0 MHz maximum pixel clock
[    21.151] (--) NVIDIA(GPU-0): 
[    21.151] (--) NVIDIA(GPU-1): DFP-0: disconnected
[    21.151] (--) NVIDIA(GPU-1): DFP-0: Internal TMDS
[    21.151] (--) NVIDIA(GPU-1): DFP-0: 330.0 MHz maximum pixel clock
[    21.151] (--) NVIDIA(GPU-1): 
[    21.195] (--) NVIDIA(GPU-1): BenQ BL2405 (DFP-1): connected
[    21.195] (--) NVIDIA(GPU-1): BenQ BL2405 (DFP-1): Internal TMDS
[    21.195] (--) NVIDIA(GPU-1): BenQ BL2405 (DFP-1): 600.0 MHz maximum pixel clock
[    21.195] (--) NVIDIA(GPU-1): 
[    21.195] (--) NVIDIA(GPU-1): DFP-2: disconnected
[    21.195] (--) NVIDIA(GPU-1): DFP-2: Internal DisplayPort
[    21.195] (--) NVIDIA(GPU-1): DFP-2: 1440.0 MHz maximum pixel clock
[    21.195] (--) NVIDIA(GPU-1): 
[    21.288] (--) NVIDIA(GPU-1): Acer G246HL (DFP-3): connected
[    21.288] (--) NVIDIA(GPU-1): Acer G246HL (DFP-3): Internal TMDS
[    21.288] (--) NVIDIA(GPU-1): Acer G246HL (DFP-3): 300.0 MHz maximum pixel clock
[    21.288] (--) NVIDIA(GPU-1): 
[    21.288] (EE) client bug: timer event26 debounce: scheduled expiry is in the past (-171ms), your system is too slow
[    21.288] (EE) client bug: timer event26 debounce: scheduled expiry is in the past (-75ms), your system is too slow
[    21.288] (EE) client bug: timer event26 debounce short: scheduled expiry is in the past (-88ms), your system is too slow
[    21.473] (EE) event26 - Logitech MX Master 2S: client bug: event processing lagging behind by 11ms, your system is too slow
[    35.813] (--) NVIDIA(GPU-0): CRT-0: disconnected
[    35.813] (--) NVIDIA(GPU-0): CRT-0: 400.0 MHz maximum pixel clock
[    35.813] (--) NVIDIA(GPU-0): 
[    35.851] (--) NVIDIA(GPU-0): BenQ BL2405 (DFP-0): connected
[    35.851] (--) NVIDIA(GPU-0): BenQ BL2405 (DFP-0): Internal TMDS
[    35.851] (--) NVIDIA(GPU-0): BenQ BL2405 (DFP-0): 330.0 MHz maximum pixel clock
[    35.851] (--) NVIDIA(GPU-0): 
[    35.851] (--) NVIDIA(GPU-0): DFP-1: disconnected
[    35.851] (--) NVIDIA(GPU-0): DFP-1: Internal TMDS
[    35.851] (--) NVIDIA(GPU-0): DFP-1: 165.0 MHz maximum pixel clock
[    35.851] (--) NVIDIA(GPU-0): 
[    35.851] (--) NVIDIA(GPU-0): DFP-2: disconnected
[    35.851] (--) NVIDIA(GPU-0): DFP-2: Internal DisplayPort
[    35.851] (--) NVIDIA(GPU-0): DFP-2: 960.0 MHz maximum pixel clock
[    35.851] (--) NVIDIA(GPU-0): 
[    35.851] (--) NVIDIA(GPU-0): DFP-3: disconnected
[    35.851] (--) NVIDIA(GPU-0): DFP-3: Internal TMDS
[    35.851] (--) NVIDIA(GPU-0): DFP-3: 165.0 MHz maximum pixel clock
[    35.851] (--) NVIDIA(GPU-0): 
[    35.851] (--) NVIDIA(GPU-0): DFP-4: disconnected
[    35.851] (--) NVIDIA(GPU-0): DFP-4: Internal DisplayPort
[    35.851] (--) NVIDIA(GPU-0): DFP-4: 960.0 MHz maximum pixel clock
[    35.851] (--) NVIDIA(GPU-0): 
[    35.852] (--) NVIDIA(GPU-0): DFP-5: disconnected
[    35.852] (--) NVIDIA(GPU-0): DFP-5: Internal TMDS
[    35.852] (--) NVIDIA(GPU-0): DFP-5: 165.0 MHz maximum pixel clock
[    35.852] (--) NVIDIA(GPU-0): 
[    35.852] (--) NVIDIA(GPU-0): DFP-6: disconnected
[    35.852] (--) NVIDIA(GPU-0): DFP-6: Internal DisplayPort
[    35.852] (--) NVIDIA(GPU-0): DFP-6: 960.0 MHz maximum pixel clock
[    35.852] (--) NVIDIA(GPU-0): 
[    35.852] (--) NVIDIA(GPU-0): DFP-7: disconnected
[    35.852] (--) NVIDIA(GPU-0): DFP-7: Internal TMDS
[    35.852] (--) NVIDIA(GPU-0): DFP-7: 165.0 MHz maximum pixel clock
[    35.852] (--) NVIDIA(GPU-0): 
[    35.868] (--) NVIDIA(GPU-0): CRT-0: disconnected
[    35.868] (--) NVIDIA(GPU-0): CRT-0: 400.0 MHz maximum pixel clock
[    35.868] (--) NVIDIA(GPU-0): 
[    35.900] (--) NVIDIA(GPU-0): BenQ BL2405 (DFP-0): connected
[    35.900] (--) NVIDIA(GPU-0): BenQ BL2405 (DFP-0): Internal TMDS
[    35.900] (--) NVIDIA(GPU-0): BenQ BL2405 (DFP-0): 330.0 MHz maximum pixel clock
[    35.900] (--) NVIDIA(GPU-0): 
[    35.900] (--) NVIDIA(GPU-0): DFP-1: disconnected
[    35.900] (--) NVIDIA(GPU-0): DFP-1: Internal TMDS
[    35.900] (--) NVIDIA(GPU-0): DFP-1: 165.0 MHz maximum pixel clock
[    35.900] (--) NVIDIA(GPU-0): 
[    35.900] (--) NVIDIA(GPU-0): DFP-2: disconnected
[    35.900] (--) NVIDIA(GPU-0): DFP-2: Internal DisplayPort
[    35.900] (--) NVIDIA(GPU-0): DFP-2: 960.0 MHz maximum pixel clock
[    35.900] (--) NVIDIA(GPU-0): 
[    35.901] (--) NVIDIA(GPU-0): DFP-3: disconnected
[    35.901] (--) NVIDIA(GPU-0): DFP-3: Internal TMDS
[    35.901] (--) NVIDIA(GPU-0): DFP-3: 165.0 MHz maximum pixel clock
[    35.901] (--) NVIDIA(GPU-0): 
[    35.901] (--) NVIDIA(GPU-0): DFP-4: disconnected
[    35.901] (--) NVIDIA(GPU-0): DFP-4: Internal DisplayPort
[    35.901] (--) NVIDIA(GPU-0): DFP-4: 960.0 MHz maximum pixel clock
[    35.901] (--) NVIDIA(GPU-0): 
[    35.901] (--) NVIDIA(GPU-0): DFP-5: disconnected
[    35.901] (--) NVIDIA(GPU-0): DFP-5: Internal TMDS
[    35.901] (--) NVIDIA(GPU-0): DFP-5: 165.0 MHz maximum pixel clock
[    35.901] (--) NVIDIA(GPU-0): 
[    35.901] (--) NVIDIA(GPU-0): DFP-6: disconnected
[    35.901] (--) NVIDIA(GPU-0): DFP-6: Internal DisplayPort
[    35.901] (--) NVIDIA(GPU-0): DFP-6: 960.0 MHz maximum pixel clock
[    35.901] (--) NVIDIA(GPU-0): 
[    35.901] (--) NVIDIA(GPU-0): DFP-7: disconnected
[    35.901] (--) NVIDIA(GPU-0): DFP-7: Internal TMDS
[    35.901] (--) NVIDIA(GPU-0): DFP-7: 165.0 MHz maximum pixel clock
[    35.901] (--) NVIDIA(GPU-0): 
[    35.901] (--) NVIDIA(GPU-1): DFP-0: disconnected
[    35.901] (--) NVIDIA(GPU-1): DFP-0: Internal TMDS
[    35.901] (--) NVIDIA(GPU-1): DFP-0: 330.0 MHz maximum pixel clock
[    35.901] (--) NVIDIA(GPU-1): 
[    35.946] (--) NVIDIA(GPU-1): BenQ BL2405 (DFP-1): connected
[    35.946] (--) NVIDIA(GPU-1): BenQ BL2405 (DFP-1): Internal TMDS
[    35.946] (--) NVIDIA(GPU-1): BenQ BL2405 (DFP-1): 600.0 MHz maximum pixel clock
[    35.946] (--) NVIDIA(GPU-1): 
[    35.946] (--) NVIDIA(GPU-1): DFP-2: disconnected
[    35.946] (--) NVIDIA(GPU-1): DFP-2: Internal DisplayPort
[    35.946] (--) NVIDIA(GPU-1): DFP-2: 1440.0 MHz maximum pixel clock
[    35.946] (--) NVIDIA(GPU-1): 
[    36.040] (--) NVIDIA(GPU-1): Acer G246HL (DFP-3): connected
[    36.040] (--) NVIDIA(GPU-1): Acer G246HL (DFP-3): Internal TMDS
[    36.040] (--) NVIDIA(GPU-1): Acer G246HL (DFP-3): 300.0 MHz maximum pixel clock
[    36.040] (--) NVIDIA(GPU-1): 
[    61.060] (--) NVIDIA(GPU-0): CRT-0: disconnected
[    61.060] (--) NVIDIA(GPU-0): CRT-0: 400.0 MHz maximum pixel clock
[    61.060] (--) NVIDIA(GPU-0): 
[    61.093] (--) NVIDIA(GPU-0): BenQ BL2405 (DFP-0): connected
[    61.093] (--) NVIDIA(GPU-0): BenQ BL2405 (DFP-0): Internal TMDS
[    61.093] (--) NVIDIA(GPU-0): BenQ BL2405 (DFP-0): 330.0 MHz maximum pixel clock
[    61.093] (--) NVIDIA(GPU-0): 
[    61.093] (--) NVIDIA(GPU-0): DFP-1: disconnected
[    61.093] (--) NVIDIA(GPU-0): DFP-1: Internal TMDS
[    61.093] (--) NVIDIA(GPU-0): DFP-1: 165.0 MHz maximum pixel clock
[    61.093] (--) NVIDIA(GPU-0): 
[    61.093] (--) NVIDIA(GPU-0): DFP-2: disconnected
[    61.093] (--) NVIDIA(GPU-0): DFP-2: Internal DisplayPort
[    61.093] (--) NVIDIA(GPU-0): DFP-2: 960.0 MHz maximum pixel clock
[    61.093] (--) NVIDIA(GPU-0): 
[    61.093] (--) NVIDIA(GPU-0): DFP-3: disconnected
[    61.093] (--) NVIDIA(GPU-0): DFP-3: Internal TMDS
[    61.093] (--) NVIDIA(GPU-0): DFP-3: 165.0 MHz maximum pixel clock
[    61.093] (--) NVIDIA(GPU-0): 
[    61.093] (--) NVIDIA(GPU-0): DFP-4: disconnected
[    61.093] (--) NVIDIA(GPU-0): DFP-4: Internal DisplayPort
[    61.093] (--) NVIDIA(GPU-0): DFP-4: 960.0 MHz maximum pixel clock
[    61.093] (--) NVIDIA(GPU-0): 
[    61.094] (--) NVIDIA(GPU-0): DFP-5: disconnected
[    61.094] (--) NVIDIA(GPU-0): DFP-5: Internal TMDS
[    61.094] (--) NVIDIA(GPU-0): DFP-5: 165.0 MHz maximum pixel clock
[    61.094] (--) NVIDIA(GPU-0): 
[    61.094] (--) NVIDIA(GPU-0): DFP-6: disconnected
[    61.094] (--) NVIDIA(GPU-0): DFP-6: Internal DisplayPort
[    61.094] (--) NVIDIA(GPU-0): DFP-6: 960.0 MHz maximum pixel clock
[    61.094] (--) NVIDIA(GPU-0): 
[    61.094] (--) NVIDIA(GPU-0): DFP-7: disconnected
[    61.094] (--) NVIDIA(GPU-0): DFP-7: Internal TMDS
[    61.094] (--) NVIDIA(GPU-0): DFP-7: 165.0 MHz maximum pixel clock
[    61.094] (--) NVIDIA(GPU-0): 
[    61.111] (--) NVIDIA(GPU-0): CRT-0: disconnected
[    61.111] (--) NVIDIA(GPU-0): CRT-0: 400.0 MHz maximum pixel clock
[    61.111] (--) NVIDIA(GPU-0): 
[    61.146] (--) NVIDIA(GPU-0): BenQ BL2405 (DFP-0): connected
[    61.146] (--) NVIDIA(GPU-0): BenQ BL2405 (DFP-0): Internal TMDS
[    61.146] (--) NVIDIA(GPU-0): BenQ BL2405 (DFP-0): 330.0 MHz maximum pixel clock
[    61.146] (--) NVIDIA(GPU-0): 
[    61.146] (--) NVIDIA(GPU-0): DFP-1: disconnected
[    61.146] (--) NVIDIA(GPU-0): DFP-1: Internal TMDS
[    61.146] (--) NVIDIA(GPU-0): DFP-1: 165.0 MHz maximum pixel clock
[    61.146] (--) NVIDIA(GPU-0): 
[    61.146] (--) NVIDIA(GPU-0): DFP-2: disconnected
[    61.146] (--) NVIDIA(GPU-0): DFP-2: Internal DisplayPort
[    61.146] (--) NVIDIA(GPU-0): DFP-2: 960.0 MHz maximum pixel clock
[    61.146] (--) NVIDIA(GPU-0): 
[    61.146] (--) NVIDIA(GPU-0): DFP-3: disconnected
[    61.146] (--) NVIDIA(GPU-0): DFP-3: Internal TMDS
[    61.146] (--) NVIDIA(GPU-0): DFP-3: 165.0 MHz maximum pixel clock
[    61.146] (--) NVIDIA(GPU-0): 
[    61.146] (--) NVIDIA(GPU-0): DFP-4: disconnected
[    61.146] (--) NVIDIA(GPU-0): DFP-4: Internal DisplayPort
[    61.146] (--) NVIDIA(GPU-0): DFP-4: 960.0 MHz maximum pixel clock
[    61.146] (--) NVIDIA(GPU-0): 
[    61.147] (--) NVIDIA(GPU-0): DFP-5: disconnected
[    61.147] (--) NVIDIA(GPU-0): DFP-5: Internal TMDS
[    61.147] (--) NVIDIA(GPU-0): DFP-5: 165.0 MHz maximum pixel clock
[    61.147] (--) NVIDIA(GPU-0): 
[    61.147] (--) NVIDIA(GPU-0): DFP-6: disconnected
[    61.147] (--) NVIDIA(GPU-0): DFP-6: Internal DisplayPort
[    61.147] (--) NVIDIA(GPU-0): DFP-6: 960.0 MHz maximum pixel clock
[    61.147] (--) NVIDIA(GPU-0): 
[    61.147] (--) NVIDIA(GPU-0): DFP-7: disconnected
[    61.147] (--) NVIDIA(GPU-0): DFP-7: Internal TMDS
[    61.147] (--) NVIDIA(GPU-0): DFP-7: 165.0 MHz maximum pixel clock
[    61.147] (--) NVIDIA(GPU-0): 
[    61.147] (--) NVIDIA(GPU-1): DFP-0: disconnected
[    61.147] (--) NVIDIA(GPU-1): DFP-0: Internal TMDS
[    61.147] (--) NVIDIA(GPU-1): DFP-0: 330.0 MHz maximum pixel clock
[    61.147] (--) NVIDIA(GPU-1): 
[    61.191] (--) NVIDIA(GPU-1): BenQ BL2405 (DFP-1): connected
[    61.191] (--) NVIDIA(GPU-1): BenQ BL2405 (DFP-1): Internal TMDS
[    61.191] (--) NVIDIA(GPU-1): BenQ BL2405 (DFP-1): 600.0 MHz maximum pixel clock
[    61.191] (--) NVIDIA(GPU-1): 
[    61.191] (--) NVIDIA(GPU-1): DFP-2: disconnected
[    61.191] (--) NVIDIA(GPU-1): DFP-2: Internal DisplayPort
[    61.191] (--) NVIDIA(GPU-1): DFP-2: 1440.0 MHz maximum pixel clock
[    61.191] (--) NVIDIA(GPU-1): 
[    61.285] (--) NVIDIA(GPU-1): Acer G246HL (DFP-3): connected
[    61.285] (--) NVIDIA(GPU-1): Acer G246HL (DFP-3): Internal TMDS
[    61.285] (--) NVIDIA(GPU-1): Acer G246HL (DFP-3): 300.0 MHz maximum pixel clock
[    61.285] (--) NVIDIA(GPU-1): 
[   108.712] (II) event1  - Power Button: device removed
[   108.735] (II) event0  - Power Button: device removed
[   108.766] (II) event24 - ROCCAT ROCCAT Ryos MK Glow: device removed
[   108.792] (II) event25 - ROCCAT ROCCAT Ryos MK Glow: device removed
[   108.821] (II) event27 - Logitech MX Master 3: device removed
[   108.849] (II) event26 - Logitech MX Master 2S: device removed
[   108.941] (II) UnloadModule: "libinput"
[   108.941] (II) UnloadModule: "libinput"
[   108.941] (II) UnloadModule: "libinput"
[   108.941] (II) UnloadModule: "libinput"
[   108.941] (II) UnloadModule: "libinput"
[   108.941] (II) UnloadModule: "libinput"
[   108.941] (II) UnloadModule: "libinput"
[   108.941] (II) UnloadModule: "libinput"
[   108.942] (II) UnloadModule: "libinput"
[   109.182] (II) NVIDIA(GPU-0): Deleting GPU-0
[   109.182] (II) NVIDIA(GPU-1): Renaming GPU-1 to GPU-0
[   109.182] (II) NVIDIA(GPU-0): Deleting GPU-0
[   109.206] (II) Server terminated successfully (0). Closing log file.

---/var/log/Xorg.1.log---
[  5876.503] 
X.Org X Server 1.20.13
X Protocol Version 11, Revision 0
[  5876.503] Build Operating System: Linux Manjaro Linux
[  5876.503] Current Operating System: Linux jonas-ms7b86 5.12.19-1-MANJARO #1 SMP PREEMPT Tue Jul 20 20:57:37 UTC 2021 x86_64
[  5876.503] Kernel command line: BOOT_IMAGE=/boot/vmlinuz-5.12-x86_64 root=UUID=a27f0baf-14fa-41db-844a-9ff44f8c8f6f rw quiet amd_iommu=on apparmor=1 security=apparmor resume=UUID=d0dac5d0-5548-41e7-8572-14de99a109cc udev.log_priority=3 iommu=pt
[  5876.503] Build Date: 24 August 2021  10:21:29AM
[  5876.503]  
[  5876.503] Current version of pixman: 0.40.0
[  5876.503] 	Before reporting problems, check http://wiki.x.org
	to make sure that you have the latest version.
[  5876.503] Markers: (--) probed, (**) from config file, (==) default setting,
	(++) from command line, (!!) notice, (II) informational,
	(WW) warning, (EE) error, (NI) not implemented, (??) unknown.
[  5876.503] (==) Log file: "/var/log/Xorg.1.log", Time: Fri Sep  3 15:36:23 2021
[  5876.503] (==) Using config directory: "/etc/X11/xorg.conf.d"
[  5876.503] (==) Using system config directory "/usr/share/X11/xorg.conf.d"
[  5876.503] (==) ServerLayout "layout"
[  5876.503] (**) |-->Screen "Screen0" (0)
[  5876.503] (**) |   |-->Monitor "Monitor0"
[  5876.503] (**) |   |-->Device "Device0"
[  5876.504] (==) Automatically adding devices
[  5876.504] (==) Automatically enabling devices
[  5876.504] (==) Automatically adding GPU devices
[  5876.504] (==) Automatically binding GPU devices
[  5876.504] (==) Max clients allowed: 256, resource mask: 0x1fffff
[  5876.504] (WW) The directory "/usr/share/fonts/OTF" does not exist.
[  5876.504] 	Entry deleted from font path.
[  5876.504] (WW) The directory "/usr/share/fonts/Type1" does not exist.
[  5876.504] 	Entry deleted from font path.
[  5876.504] (WW) The directory "/usr/share/fonts/100dpi" does not exist.
[  5876.504] 	Entry deleted from font path.
[  5876.504] (WW) The directory "/usr/share/fonts/75dpi" does not exist.
[  5876.504] 	Entry deleted from font path.
[  5876.504] (==) FontPath set to:
	/usr/share/fonts/misc,
	/usr/share/fonts/TTF
[  5876.504] (==) ModulePath set to "/usr/lib/xorg/modules"
[  5876.504] (**) Extension "COMPOSITE" is enabled
[  5876.504] (II) The server relies on udev to provide the list of input devices.
	If no devices become available, reconfigure udev or disable AutoAddDevices.
[  5876.504] (II) Module ABI versions:
[  5876.504] 	X.Org ANSI C Emulation: 0.4
[  5876.504] 	X.Org Video Driver: 24.1
[  5876.504] 	X.Org XInput driver : 24.1
[  5876.504] 	X.Org Server Extension : 10.0
[  5876.504] (++) using VT number 8

[  5876.504] (II) systemd-logind: logind integration requires -keeptty and -keeptty was not provided, disabling logind integration
[  5876.504] (II) xfree86: Adding drm device (/dev/dri/card0)
[  5876.504] (II) xfree86: Adding drm device (/dev/dri/card1)
[  5876.505] (**) OutputClass "nvidia" ModulePath extended to "/usr/lib/nvidia/xorg,/usr/lib/xorg/modules,/usr/lib/xorg/modules"
[  5876.505] (**) 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"
[  5876.505] (**) OutputClass "nvidia" ModulePath extended to "/usr/lib/nvidia/xorg,/usr/lib/xorg/modules,/usr/lib/nvidia/xorg,/usr/lib/xorg/modules,/usr/lib/nvidia/xorg,/usr/lib/xorg/modules,/usr/lib/xorg/modules"
[  5876.505] (**) OutputClass "nvidia" ModulePath extended to "/usr/lib/nvidia/xorg,/usr/lib/xorg/modules,/usr/lib/nvidia/xorg,/usr/lib/xorg/modules,/usr/lib/nvidia/xorg,/usr/lib/xorg/modules,/usr/lib/nvidia/xorg,/usr/lib/xorg/modules,/usr/lib/xorg/modules"
[  5876.506] (--) PCI: (37@0:0:0) 10de:1c81:174b:5454 rev 161, Mem @ 0xf9000000/16777216, 0xd0000000/268435456, 0xe0000000/33554432, I/O @ 0x0000d000/128, BIOS @ 0x????????/524288
[  5876.506] (--) PCI:*(38@0:0:0) 10de:13c2:1458:367b rev 161, Mem @ 0xfb000000/16777216, 0xb0000000/268435456, 0xc0000000/33554432, I/O @ 0x0000f000/128, BIOS @ 0x????????/131072
[  5876.507] (WW) Open ACPI failed (/var/run/acpid.socket) (No such file or directory)
[  5876.507] (II) LoadModule: "glx"
[  5876.507] (II) Loading /usr/lib/xorg/modules/extensions/libglx.so
[  5876.507] (II) Module glx: vendor="X.Org Foundation"
[  5876.507] 	compiled for 1.20.13, module version = 1.0.0
[  5876.507] 	ABI class: X.Org Server Extension, version 10.0
[  5876.507] (II) LoadModule: "nvidia"
[  5876.507] (II) Loading /usr/lib/xorg/modules/drivers/nvidia_drv.so
[  5876.507] (II) Module nvidia: vendor="NVIDIA Corporation"
[  5876.507] 	compiled for 1.6.99.901, module version = 1.0.0
[  5876.508] 	Module class: X.Org Video Driver
[  5876.508] (II) NVIDIA dlloader X Driver  470.63.01  Tue Aug  3 20:37:27 UTC 2021
[  5876.508] (II) NVIDIA Unified Driver for all Supported NVIDIA GPUs
[  5877.322] (II) Loading sub module "fb"
[  5877.322] (II) LoadModule: "fb"
[  5877.323] (II) Loading /usr/lib/xorg/modules/libfb.so
[  5877.323] (II) Module fb: vendor="X.Org Foundation"
[  5877.323] 	compiled for 1.20.13, module version = 1.0.0
[  5877.323] 	ABI class: X.Org ANSI C Emulation, version 0.4
[  5877.323] (II) Loading sub module "wfb"
[  5877.323] (II) LoadModule: "wfb"
[  5877.323] (II) Loading /usr/lib/xorg/modules/libwfb.so
[  5877.323] (II) Module wfb: vendor="X.Org Foundation"
[  5877.323] 	compiled for 1.20.13, module version = 1.0.0
[  5877.323] 	ABI class: X.Org ANSI C Emulation, version 0.4
[  5877.323] (II) Loading sub module "ramdac"
[  5877.323] (II) LoadModule: "ramdac"
[  5877.323] (II) Module "ramdac" already built-in
[  5877.323] (**) NVIDIA(0): Depth 24, (--) framebuffer bpp 32
[  5877.323] (==) NVIDIA(0): RGB weight 888
[  5877.323] (==) NVIDIA(0): Default visual is TrueColor
[  5877.323] (==) NVIDIA(0): Using gamma correction (1.0, 1.0, 1.0)
[  5877.323] (**) Option "AllowNVIDIAGpuScreens"
[  5877.323] (II) Applying OutputClass "nvidia" options to /dev/dri/card1
[  5877.323] (II) Applying OutputClass "nvidia" options to /dev/dri/card1
[  5877.324] (**) NVIDIA(0): Option "AllowEmptyInitialConfiguration"
[  5877.324] (**) NVIDIA(0): Enabling 2D acceleration
[  5877.324] (II) Loading sub module "glxserver_nvidia"
[  5877.324] (II) LoadModule: "glxserver_nvidia"
[  5877.324] (II) Loading /usr/lib/nvidia/xorg/libglxserver_nvidia.so
[  5877.329] (II) Module glxserver_nvidia: vendor="NVIDIA Corporation"
[  5877.329] 	compiled for 1.6.99.901, module version = 1.0.0
[  5877.329] 	Module class: X.Org Server Extension
[  5877.329] (II) NVIDIA GLX Module  470.63.01  Tue Aug  3 20:35:52 UTC 2021
[  5877.329] (II) NVIDIA: The X server supports PRIME Render Offload.
[  5877.331] (--) NVIDIA(0): Valid display device(s) on GPU-0 at PCI:38:0:0
[  5877.331] (--) NVIDIA(0):     CRT-0
[  5877.331] (--) NVIDIA(0):     DFP-0 (boot)
[  5877.331] (--) NVIDIA(0):     DFP-1
[  5877.331] (--) NVIDIA(0):     DFP-2
[  5877.331] (--) NVIDIA(0):     DFP-3
[  5877.331] (--) NVIDIA(0):     DFP-4
[  5877.332] (II) NVIDIA(0): NVIDIA GPU NVIDIA GeForce GTX 970 (GM204-A) at PCI:38:0:0
[  5877.332] (II) NVIDIA(0):     (GPU-0)
[  5877.332] (--) NVIDIA(0): Memory: 4194304 kBytes
[  5877.332] (--) NVIDIA(0): VideoBIOS: 84.04.36.00.2e
[  5877.332] (II) NVIDIA(0): Detected PCI Express Link width: 16X
[  5877.349] (--) NVIDIA(GPU-0): CRT-0: disconnected
[  5877.349] (--) NVIDIA(GPU-0): CRT-0: 400.0 MHz maximum pixel clock
[  5877.349] (--) NVIDIA(GPU-0): 
[  5877.383] (--) NVIDIA(GPU-0): BenQ BL2405 (DFP-0): connected
[  5877.383] (--) NVIDIA(GPU-0): BenQ BL2405 (DFP-0): Internal TMDS
[  5877.383] (--) NVIDIA(GPU-0): BenQ BL2405 (DFP-0): 330.0 MHz maximum pixel clock
[  5877.383] (--) NVIDIA(GPU-0): 
[  5877.384] (--) NVIDIA(GPU-0): DFP-1: disconnected
[  5877.384] (--) NVIDIA(GPU-0): DFP-1: Internal TMDS
[  5877.384] (--) NVIDIA(GPU-0): DFP-1: 165.0 MHz maximum pixel clock
[  5877.384] (--) NVIDIA(GPU-0): 
[  5877.384] (--) NVIDIA(GPU-0): DFP-2: disconnected
[  5877.384] (--) NVIDIA(GPU-0): DFP-2: Internal DisplayPort
[  5877.384] (--) NVIDIA(GPU-0): DFP-2: 960.0 MHz maximum pixel clock
[  5877.384] (--) NVIDIA(GPU-0): 
[  5877.384] (--) NVIDIA(GPU-0): DFP-3: disconnected
[  5877.384] (--) NVIDIA(GPU-0): DFP-3: Internal TMDS
[  5877.384] (--) NVIDIA(GPU-0): DFP-3: 165.0 MHz maximum pixel clock
[  5877.384] (--) NVIDIA(GPU-0): 
[  5877.401] (--) NVIDIA(GPU-0): Acer G246HL (DFP-4): connected
[  5877.401] (--) NVIDIA(GPU-0): Acer G246HL (DFP-4): Internal TMDS
[  5877.401] (--) NVIDIA(GPU-0): Acer G246HL (DFP-4): 330.0 MHz maximum pixel clock
[  5877.401] (--) NVIDIA(GPU-0): 
[  5877.413] (==) NVIDIA(0): 
[  5877.413] (==) NVIDIA(0): No modes were requested; the default mode "nvidia-auto-select"
[  5877.413] (==) NVIDIA(0):     will be used as the requested mode.
[  5877.413] (==) NVIDIA(0): 
[  5877.413] (II) NVIDIA(0): Validated MetaModes:
[  5877.413] (II) NVIDIA(0):     "DFP-0:nvidia-auto-select,DFP-4:nvidia-auto-select"
[  5877.413] (II) NVIDIA(0): Virtual screen size determined to be 3840 x 1080
[  5877.417] (--) NVIDIA(0): DPI set to (92, 91); computed from "UseEdidDpi" X config
[  5877.417] (--) NVIDIA(0):     option
[  5877.418] (**) NVIDIA(G0): Depth 24, (--) framebuffer bpp 32
[  5877.418] (==) NVIDIA(G0): RGB weight 888
[  5877.418] (==) NVIDIA(G0): Default visual is TrueColor
[  5877.418] (==) NVIDIA(G0): Using gamma correction (1.0, 1.0, 1.0)
[  5877.418] (II) Applying OutputClass "nvidia" options to /dev/dri/card0
[  5877.418] (II) Applying OutputClass "nvidia" options to /dev/dri/card0
[  5877.418] (**) NVIDIA(G0): Option "AllowEmptyInitialConfiguration"
[  5877.418] (**) NVIDIA(G0): Enabling 2D acceleration
[  5877.418] (II) NVIDIA: The X server supports PRIME Render Offload.
[  5877.420] (--) NVIDIA(0): Valid display device(s) on GPU-1 at PCI:37:0:0
[  5877.420] (--) NVIDIA(0):     DFP-0
[  5877.420] (--) NVIDIA(0):     DFP-1
[  5877.420] (--) NVIDIA(0):     DFP-2
[  5877.420] (--) NVIDIA(0):     DFP-3
[  5877.421] (II) NVIDIA(G0): NVIDIA GPU NVIDIA GeForce GTX 1050 (GP107-A) at PCI:37:0:0
[  5877.421] (II) NVIDIA(G0):     (GPU-1)
[  5877.421] (--) NVIDIA(G0): Memory: 2097152 kBytes
[  5877.421] (--) NVIDIA(G0): VideoBIOS: 86.07.39.00.18
[  5877.421] (II) NVIDIA(G0): Detected PCI Express Link width: 16X
[  5877.421] (--) NVIDIA(GPU-1): DFP-0: disconnected
[  5877.421] (--) NVIDIA(GPU-1): DFP-0: Internal TMDS
[  5877.421] (--) NVIDIA(GPU-1): DFP-0: 330.0 MHz maximum pixel clock
[  5877.421] (--) NVIDIA(GPU-1): 
[  5877.421] (--) NVIDIA(GPU-1): DFP-1: disconnected
[  5877.421] (--) NVIDIA(GPU-1): DFP-1: Internal TMDS
[  5877.421] (--) NVIDIA(GPU-1): DFP-1: 165.0 MHz maximum pixel clock
[  5877.421] (--) NVIDIA(GPU-1): 
[  5877.421] (--) NVIDIA(GPU-1): DFP-2: disconnected
[  5877.421] (--) NVIDIA(GPU-1): DFP-2: Internal DisplayPort
[  5877.421] (--) NVIDIA(GPU-1): DFP-2: 1440.0 MHz maximum pixel clock
[  5877.422] (--) NVIDIA(GPU-1): 
[  5877.422] (--) NVIDIA(GPU-1): DFP-3: disconnected
[  5877.422] (--) NVIDIA(GPU-1): DFP-3: Internal TMDS
[  5877.422] (--) NVIDIA(GPU-1): DFP-3: 165.0 MHz maximum pixel clock
[  5877.422] (--) NVIDIA(GPU-1): 
[  5877.422] (II) NVIDIA(G0): Validated MetaModes:
[  5877.422] (II) NVIDIA(G0):     "NULL"
[  5877.422] (II) NVIDIA(G0): Virtual screen size determined to be 640 x 480
[  5877.422] (WW) NVIDIA(G0): Unable to get display device for DPI computation.
[  5877.422] (==) NVIDIA(G0): DPI set to (75, 75); computed from built-in default
[  5877.423] (II) NVIDIA: Reserving 24576.00 MB of virtual memory for indirect memory
[  5877.423] (II) NVIDIA:     access.
[  5877.427] (II) NVIDIA(0): ACPI: failed to connect to the ACPI event daemon; the daemon
[  5877.427] (II) NVIDIA(0):     may not be running or the "AcpidSocketPath" X
[  5877.427] (II) NVIDIA(0):     configuration option may not be set correctly.  When the
[  5877.427] (II) NVIDIA(0):     ACPI event daemon is available, the NVIDIA X driver will
[  5877.427] (II) NVIDIA(0):     try to use it to receive ACPI event notifications.  For
[  5877.427] (II) NVIDIA(0):     details, please see the "ConnectToAcpid" and
[  5877.427] (II) NVIDIA(0):     "AcpidSocketPath" X configuration options in Appendix B: X
[  5877.427] (II) NVIDIA(0):     Config Options in the README.
[  5877.443] (II) NVIDIA(0): Setting mode "DFP-0:nvidia-auto-select,DFP-4:nvidia-auto-select"
[  5877.589] (==) NVIDIA(0): Disabling shared memory pixmaps
[  5877.589] (==) NVIDIA(0): Backing store enabled
[  5877.589] (==) NVIDIA(0): Silken mouse disabled
[  5877.590] (**) NVIDIA(0): DPMS enabled
[  5877.590] (WW) NVIDIA(0): Option "NoLogo" is not used
[  5877.590] (II) Loading sub module "dri2"
[  5877.590] (II) LoadModule: "dri2"
[  5877.590] (II) Module "dri2" already built-in
[  5877.590] (II) NVIDIA(0): [DRI2] Setup complete
[  5877.590] (II) NVIDIA(0): [DRI2]   VDPAU driver: nvidia
[  5877.594] (II) NVIDIA(G0): ACPI: failed to connect to the ACPI event daemon; the daemon
[  5877.594] (II) NVIDIA(G0):     may not be running or the "AcpidSocketPath" X
[  5877.594] (II) NVIDIA(G0):     configuration option may not be set correctly.  When the
[  5877.594] (II) NVIDIA(G0):     ACPI event daemon is available, the NVIDIA X driver will
[  5877.594] (II) NVIDIA(G0):     try to use it to receive ACPI event notifications.  For
[  5877.594] (II) NVIDIA(G0):     details, please see the "ConnectToAcpid" and
[  5877.594] (II) NVIDIA(G0):     "AcpidSocketPath" X configuration options in Appendix B: X
[  5877.594] (II) NVIDIA(G0):     Config Options in the README.
[  5877.608] (II) NVIDIA(G0): Setting mode "NULL"
[  5877.616] (==) NVIDIA(G0): Disabling shared memory pixmaps
[  5877.616] (==) NVIDIA(G0): Backing store enabled
[  5877.616] (==) NVIDIA(G0): Silken mouse disabled
[  5877.616] (**) NVIDIA(G0): DPMS enabled
[  5877.616] (II) Loading sub module "dri2"
[  5877.616] (II) LoadModule: "dri2"
[  5877.616] (II) Module "dri2" already built-in
[  5877.616] (II) NVIDIA(G0): [DRI2] Setup complete
[  5877.616] (II) NVIDIA(G0): [DRI2]   VDPAU driver: nvidia
[  5877.616] (II) Initializing extension Generic Event Extension
[  5877.616] (II) Initializing extension SHAPE
[  5877.616] (II) Initializing extension MIT-SHM
[  5877.616] (II) Initializing extension XInputExtension
[  5877.616] (II) Initializing extension XTEST
[  5877.617] (II) Initializing extension BIG-REQUESTS
[  5877.617] (II) Initializing extension SYNC
[  5877.617] (II) Initializing extension XKEYBOARD
[  5877.617] (II) Initializing extension XC-MISC
[  5877.617] (II) Initializing extension SECURITY
[  5877.617] (II) Initializing extension XFIXES
[  5877.617] (II) Initializing extension RENDER
[  5877.617] (II) Initializing extension RANDR
[  5877.617] (II) Initializing extension COMPOSITE
[  5877.617] (II) Initializing extension DAMAGE
[  5877.617] (II) Initializing extension MIT-SCREEN-SAVER
[  5877.617] (II) Initializing extension DOUBLE-BUFFER
[  5877.617] (II) Initializing extension RECORD
[  5877.617] (II) Initializing extension DPMS
[  5877.617] (II) Initializing extension Present
[  5877.617] (II) Initializing extension DRI3
[  5877.617] (II) Initializing extension X-Resource
[  5877.617] (II) Initializing extension XVideo
[  5877.618] (II) Initializing extension XVideo-MotionCompensation
[  5877.618] (II) Initializing extension GLX
[  5877.618] (II) Initializing extension GLX
[  5877.618] (II) Indirect GLX disabled.
[  5877.618] (II) GLX: Another vendor is already registered for screen 0
[  5877.618] (II) Initializing extension XFree86-VidModeExtension
[  5877.618] (II) Initializing extension XFree86-DGA
[  5877.618] (II) Initializing extension XFree86-DRI
[  5877.618] (II) Initializing extension DRI2
[  5877.618] (II) Initializing extension NV-GLX
[  5877.618] (II) Initializing extension NV-CONTROL
[  5877.618] (II) Initializing extension XINERAMA
[  5877.645] (II) config/udev: Adding input device Power Button (/dev/input/event1)
[  5877.645] (**) Power Button: Applying InputClass "evdev keyboard catchall"
[  5877.645] (**) Power Button: Applying InputClass "libinput keyboard catchall"
[  5877.645] (**) Power Button: Applying InputClass "system-keyboard"
[  5877.645] (**) Power Button: Applying InputClass "Keyboard Defaults"
[  5877.645] (II) LoadModule: "libinput"
[  5877.645] (II) Loading /usr/lib/xorg/modules/input/libinput_drv.so
[  5877.646] (II) Module libinput: vendor="X.Org Foundation"
[  5877.646] 	compiled for 1.20.11, module version = 1.1.0
[  5877.646] 	Module class: X.Org XInput Driver
[  5877.646] 	ABI class: X.Org XInput driver, version 24.1
[  5877.646] (II) Using input driver 'libinput' for 'Power Button'
[  5877.646] (**) Power Button: always reports core events
[  5877.646] (**) Option "Device" "/dev/input/event1"
[  5877.646] (**) Option "_source" "server/udev"
[  5877.647] (II) event1  - Power Button: is tagged by udev as: Keyboard
[  5877.647] (II) event1  - Power Button: device is a keyboard
[  5877.647] (II) event1  - Power Button: device removed
[  5877.671] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/LNXPWRBN:00/input/input1/event1"
[  5877.671] (II) XINPUT: Adding extended input device "Power Button" (type: KEYBOARD, id 6)
[  5877.671] (**) Option "xkb_layout" "de"
[  5877.671] (**) Option "xkb_options" "terminate:ctrl_alt_bksp"
[  5877.682] (II) event1  - Power Button: is tagged by udev as: Keyboard
[  5877.682] (II) event1  - Power Button: device is a keyboard
[  5877.682] (II) config/udev: Adding input device Power Button (/dev/input/event0)
[  5877.682] (**) Power Button: Applying InputClass "evdev keyboard catchall"
[  5877.682] (**) Power Button: Applying InputClass "libinput keyboard catchall"
[  5877.682] (**) Power Button: Applying InputClass "system-keyboard"
[  5877.682] (**) Power Button: Applying InputClass "Keyboard Defaults"
[  5877.682] (II) Using input driver 'libinput' for 'Power Button'
[  5877.682] (**) Power Button: always reports core events
[  5877.682] (**) Option "Device" "/dev/input/event0"
[  5877.682] (**) Option "_source" "server/udev"
[  5877.683] (II) event0  - Power Button: is tagged by udev as: Keyboard
[  5877.683] (II) event0  - Power Button: device is a keyboard
[  5877.683] (II) event0  - Power Button: device removed
[  5877.724] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0C:00/input/input0/event0"
[  5877.724] (II) XINPUT: Adding extended input device "Power Button" (type: KEYBOARD, id 7)
[  5877.724] (**) Option "xkb_layout" "de"
[  5877.724] (**) Option "xkb_options" "terminate:ctrl_alt_bksp"
[  5877.725] (II) event0  - Power Button: is tagged by udev as: Keyboard
[  5877.725] (II) event0  - Power Button: device is a keyboard
[  5877.726] (II) config/udev: Adding input device Logitech MX Master 2S (/dev/input/event26)
[  5877.726] (**) Logitech MX Master 2S: Applying InputClass "evdev pointer catchall"
[  5877.726] (**) Logitech MX Master 2S: Applying InputClass "evdev keyboard catchall"
[  5877.726] (**) Logitech MX Master 2S: Applying InputClass "libinput pointer catchall"
[  5877.726] (**) Logitech MX Master 2S: Applying InputClass "libinput keyboard catchall"
[  5877.726] (**) Logitech MX Master 2S: Applying InputClass "system-keyboard"
[  5877.726] (**) Logitech MX Master 2S: Applying InputClass "Keyboard Defaults"
[  5877.726] (II) Using input driver 'libinput' for 'Logitech MX Master 2S'
[  5877.726] (**) Logitech MX Master 2S: always reports core events
[  5877.726] (**) Option "Device" "/dev/input/event26"
[  5877.726] (**) Option "_source" "server/udev"
[  5877.727] (II) event26 - Logitech MX Master 2S: is tagged by udev as: Keyboard Mouse
[  5877.728] (II) event26 - Logitech MX Master 2S: device is a pointer
[  5877.728] (II) event26 - Logitech MX Master 2S: device is a keyboard
[  5877.728] (II) event26 - Logitech MX Master 2S: device removed
[  5877.778] (II) libinput: Logitech MX Master 2S: needs a virtual subdevice
[  5877.778] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:01.3/0000:03:00.0/usb1/1-1/1-1:1.2/0003:046D:C52B.0003/0003:046D:4069.0006/input/input42/event26"
[  5877.778] (II) XINPUT: Adding extended input device "Logitech MX Master 2S" (type: MOUSE, id 8)
[  5877.778] (**) Option "AccelerationScheme" "none"
[  5877.778] (**) Logitech MX Master 2S: (accel) selected scheme none/0
[  5877.778] (**) Logitech MX Master 2S: (accel) acceleration factor: 2.000
[  5877.778] (**) Logitech MX Master 2S: (accel) acceleration threshold: 4
[  5877.779] (II) event26 - Logitech MX Master 2S: is tagged by udev as: Keyboard Mouse
[  5877.779] (II) event26 - Logitech MX Master 2S: device is a pointer
[  5877.779] (II) event26 - Logitech MX Master 2S: device is a keyboard
[  5877.780] (II) config/udev: Adding input device Logitech MX Master 2S (/dev/input/mouse1)
[  5877.780] (**) Logitech MX Master 2S: Applying InputClass "system-keyboard"
[  5877.780] (**) Logitech MX Master 2S: Applying InputClass "Keyboard Defaults"
[  5877.780] (II) No input driver specified, ignoring this device.
[  5877.780] (II) This device may have been added with another device file.
[  5877.781] (II) config/udev: Adding input device Logitech MX Master 3 (/dev/input/event27)
[  5877.781] (**) Logitech MX Master 3: Applying InputClass "evdev pointer catchall"
[  5877.781] (**) Logitech MX Master 3: Applying InputClass "evdev keyboard catchall"
[  5877.781] (**) Logitech MX Master 3: Applying InputClass "libinput pointer catchall"
[  5877.781] (**) Logitech MX Master 3: Applying InputClass "libinput keyboard catchall"
[  5877.781] (**) Logitech MX Master 3: Applying InputClass "system-keyboard"
[  5877.781] (**) Logitech MX Master 3: Applying InputClass "Keyboard Defaults"
[  5877.781] (II) Using input driver 'libinput' for 'Logitech MX Master 3'
[  5877.781] (**) Logitech MX Master 3: always reports core events
[  5877.781] (**) Option "Device" "/dev/input/event27"
[  5877.781] (**) Option "_source" "server/udev"
[  5877.782] (II) event27 - Logitech MX Master 3: is tagged by udev as: Keyboard Mouse
[  5877.782] (II) event27 - Logitech MX Master 3: device is a pointer
[  5877.782] (II) event27 - Logitech MX Master 3: device is a keyboard
[  5877.783] (II) event27 - Logitech MX Master 3: device removed
[  5877.818] (II) libinput: Logitech MX Master 3: needs a virtual subdevice
[  5877.818] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:01.3/0000:03:00.0/usb1/1-1/1-1:1.2/0003:046D:C52B.0003/0003:046D:4082.0007/input/input43/event27"
[  5877.818] (II) XINPUT: Adding extended input device "Logitech MX Master 3" (type: MOUSE, id 9)
[  5877.818] (**) Option "AccelerationScheme" "none"
[  5877.818] (**) Logitech MX Master 3: (accel) selected scheme none/0
[  5877.818] (**) Logitech MX Master 3: (accel) acceleration factor: 2.000
[  5877.818] (**) Logitech MX Master 3: (accel) acceleration threshold: 4
[  5877.819] (II) event27 - Logitech MX Master 3: is tagged by udev as: Keyboard Mouse
[  5877.819] (II) event27 - Logitech MX Master 3: device is a pointer
[  5877.819] (II) event27 - Logitech MX Master 3: device is a keyboard
[  5877.820] (II) config/udev: Adding input device Logitech MX Master 3 (/dev/input/mouse2)
[  5877.820] (**) Logitech MX Master 3: Applying InputClass "system-keyboard"
[  5877.820] (**) Logitech MX Master 3: Applying InputClass "Keyboard Defaults"
[  5877.820] (II) No input driver specified, ignoring this device.
[  5877.820] (II) This device may have been added with another device file.
[  5877.821] (II) config/udev: Adding input device ROCCAT ROCCAT Ryos MK Glow (/dev/input/event24)
[  5877.821] (**) ROCCAT ROCCAT Ryos MK Glow: Applying InputClass "evdev keyboard catchall"
[  5877.821] (**) ROCCAT ROCCAT Ryos MK Glow: Applying InputClass "libinput keyboard catchall"
[  5877.821] (**) ROCCAT ROCCAT Ryos MK Glow: Applying InputClass "system-keyboard"
[  5877.821] (**) ROCCAT ROCCAT Ryos MK Glow: Applying InputClass "Keyboard Defaults"
[  5877.821] (II) Using input driver 'libinput' for 'ROCCAT ROCCAT Ryos MK Glow'
[  5877.821] (**) ROCCAT ROCCAT Ryos MK Glow: always reports core events
[  5877.821] (**) Option "Device" "/dev/input/event24"
[  5877.821] (**) Option "_source" "server/udev"
[  5877.822] (II) event24 - ROCCAT ROCCAT Ryos MK Glow: is tagged by udev as: Keyboard
[  5877.822] (II) event24 - ROCCAT ROCCAT Ryos MK Glow: device is a keyboard
[  5877.823] (II) event24 - ROCCAT ROCCAT Ryos MK Glow: device removed
[  5877.857] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:01.3/0000:03:00.0/usb1/1-2/1-2:1.0/0003:1E7D:31CE.0004/input/input29/event24"
[  5877.858] (II) XINPUT: Adding extended input device "ROCCAT ROCCAT Ryos MK Glow" (type: KEYBOARD, id 10)
[  5877.858] (**) Option "xkb_layout" "de"
[  5877.858] (**) Option "xkb_options" "terminate:ctrl_alt_bksp"
[  5877.859] (II) event24 - ROCCAT ROCCAT Ryos MK Glow: is tagged by udev as: Keyboard
[  5877.859] (II) event24 - ROCCAT ROCCAT Ryos MK Glow: device is a keyboard
[  5877.860] (II) config/udev: Adding input device ROCCAT ROCCAT Ryos MK Glow (/dev/input/event28)
[  5877.860] (**) ROCCAT ROCCAT Ryos MK Glow: Applying InputClass "evdev pointer catchall"
[  5877.860] (**) ROCCAT ROCCAT Ryos MK Glow: Applying InputClass "evdev keyboard catchall"
[  5877.860] (**) ROCCAT ROCCAT Ryos MK Glow: Applying InputClass "libinput pointer catchall"
[  5877.860] (**) ROCCAT ROCCAT Ryos MK Glow: Applying InputClass "libinput keyboard catchall"
[  5877.860] (**) ROCCAT ROCCAT Ryos MK Glow: Applying InputClass "system-keyboard"
[  5877.860] (**) ROCCAT ROCCAT Ryos MK Glow: Applying InputClass "Keyboard Defaults"
[  5877.860] (II) Using input driver 'libinput' for 'ROCCAT ROCCAT Ryos MK Glow'
[  5877.860] (**) ROCCAT ROCCAT Ryos MK Glow: always reports core events
[  5877.860] (**) Option "Device" "/dev/input/event28"
[  5877.860] (**) Option "_source" "server/udev"
[  5877.861] (II) event28 - ROCCAT ROCCAT Ryos MK Glow: is tagged by udev as: Keyboard Mouse
[  5877.861] (II) event28 - ROCCAT ROCCAT Ryos MK Glow: device is a pointer
[  5877.861] (II) event28 - ROCCAT ROCCAT Ryos MK Glow: device is a keyboard
[  5877.862] (II) event28 - ROCCAT ROCCAT Ryos MK Glow: device removed
[  5877.897] (II) libinput: ROCCAT ROCCAT Ryos MK Glow: needs a virtual subdevice
[  5877.898] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:01.3/0000:03:00.0/usb1/1-2/1-2:1.1/0003:1E7D:31CE.0005/input/input31/event28"
[  5877.898] (II) XINPUT: Adding extended input device "ROCCAT ROCCAT Ryos MK Glow" (type: MOUSE, id 11)
[  5877.898] (**) Option "AccelerationScheme" "none"
[  5877.898] (**) ROCCAT ROCCAT Ryos MK Glow: (accel) selected scheme none/0
[  5877.898] (**) ROCCAT ROCCAT Ryos MK Glow: (accel) acceleration factor: 2.000
[  5877.898] (**) ROCCAT ROCCAT Ryos MK Glow: (accel) acceleration threshold: 4
[  5877.899] (II) event28 - ROCCAT ROCCAT Ryos MK Glow: is tagged by udev as: Keyboard Mouse
[  5877.899] (II) event28 - ROCCAT ROCCAT Ryos MK Glow: device is a pointer
[  5877.899] (II) event28 - ROCCAT ROCCAT Ryos MK Glow: device is a keyboard
[  5877.900] (II) config/udev: Adding input device ROCCAT ROCCAT Ryos MK Glow (/dev/input/mouse0)
[  5877.900] (**) ROCCAT ROCCAT Ryos MK Glow: Applying InputClass "system-keyboard"
[  5877.900] (**) ROCCAT ROCCAT Ryos MK Glow: Applying InputClass "Keyboard Defaults"
[  5877.900] (II) No input driver specified, ignoring this device.
[  5877.900] (II) This device may have been added with another device file.
[  5877.900] (II) config/udev: Adding input device Full HD webcam: Full HD webcam (/dev/input/event25)
[  5877.900] (**) Full HD webcam: Full HD webcam: Applying InputClass "evdev keyboard catchall"
[  5877.900] (**) Full HD webcam: Full HD webcam: Applying InputClass "libinput keyboard catchall"
[  5877.900] (**) Full HD webcam: Full HD webcam: Applying InputClass "system-keyboard"
[  5877.900] (**) Full HD webcam: Full HD webcam: Applying InputClass "Keyboard Defaults"
[  5877.900] (II) Using input driver 'libinput' for 'Full HD webcam: Full HD webcam'
[  5877.901] (**) Full HD webcam: Full HD webcam: always reports core events
[  5877.901] (**) Option "Device" "/dev/input/event25"
[  5877.901] (**) Option "_source" "server/udev"
[  5877.902] (II) event25 - Full HD webcam: Full HD webcam: is tagged by udev as: Keyboard
[  5877.902] (II) event25 - Full HD webcam: Full HD webcam: device is a keyboard
[  5877.902] (II) event25 - Full HD webcam: Full HD webcam: device removed
[  5877.977] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:01.3/0000:03:00.0/usb1/1-9/1-9:1.0/input/input30/event25"
[  5877.977] (II) XINPUT: Adding extended input device "Full HD webcam: Full HD webcam" (type: KEYBOARD, id 12)
[  5877.977] (**) Option "xkb_layout" "de"
[  5877.977] (**) Option "xkb_options" "terminate:ctrl_alt_bksp"
[  5877.978] (II) event25 - Full HD webcam: Full HD webcam: is tagged by udev as: Keyboard
[  5877.978] (II) event25 - Full HD webcam: Full HD webcam: device is a keyboard
[  5877.979] (II) config/udev: Adding input device HDA NVidia HDMI/DP,pcm=3 (/dev/input/event3)
[  5877.979] (II) No input driver specified, ignoring this device.
[  5877.979] (II) This device may have been added with another device file.
[  5877.979] (II) config/udev: Adding input device HDA NVidia HDMI/DP,pcm=7 (/dev/input/event4)
[  5877.979] (II) No input driver specified, ignoring this device.
[  5877.979] (II) This device may have been added with another device file.
[  5877.979] (II) config/udev: Adding input device HDA NVidia HDMI/DP,pcm=8 (/dev/input/event5)
[  5877.979] (II) No input driver specified, ignoring this device.
[  5877.979] (II) This device may have been added with another device file.
[  5877.979] (II) config/udev: Adding input device HDA NVidia HDMI/DP,pcm=9 (/dev/input/event6)
[  5877.979] (II) No input driver specified, ignoring this device.
[  5877.979] (II) This device may have been added with another device file.
[  5877.979] (II) config/udev: Adding input device HDA NVidia HDMI/DP,pcm=10 (/dev/input/event9)
[  5877.979] (II) No input driver specified, ignoring this device.
[  5877.979] (II) This device may have been added with another device file.
[  5877.980] (II) config/udev: Adding input device HDA NVidia HDMI/DP,pcm=11 (/dev/input/event10)
[  5877.980] (II) No input driver specified, ignoring this device.
[  5877.980] (II) This device may have been added with another device file.
[  5877.980] (II) config/udev: Adding input device HDA NVidia HDMI/DP,pcm=7 (/dev/input/event8)
[  5877.980] (II) No input driver specified, ignoring this device.
[  5877.980] (II) This device may have been added with another device file.
[  5877.980] (II) config/udev: Adding input device HDA NVidia HDMI/DP,pcm=8 (/dev/input/event11)
[  5877.980] (II) No input driver specified, ignoring this device.
[  5877.980] (II) This device may have been added with another device file.
[  5877.980] (II) config/udev: Adding input device HDA NVidia HDMI/DP,pcm=9 (/dev/input/event12)
[  5877.980] (II) No input driver specified, ignoring this device.
[  5877.980] (II) This device may have been added with another device file.
[  5877.980] (II) config/udev: Adding input device HDA NVidia HDMI/DP,pcm=10 (/dev/input/event13)
[  5877.980] (II) No input driver specified, ignoring this device.
[  5877.980] (II) This device may have been added with another device file.
[  5877.981] (II) config/udev: Adding input device HDA NVidia HDMI/DP,pcm=11 (/dev/input/event14)
[  5877.981] (II) No input driver specified, ignoring this device.
[  5877.981] (II) This device may have been added with another device file.
[  5877.981] (II) config/udev: Adding input device HDA NVidia HDMI/DP,pcm=12 (/dev/input/event15)
[  5877.981] (II) No input driver specified, ignoring this device.
[  5877.981] (II) This device may have been added with another device file.
[  5877.981] (II) config/udev: Adding input device HDA NVidia HDMI/DP,pcm=3 (/dev/input/event7)
[  5877.981] (II) No input driver specified, ignoring this device.
[  5877.981] (II) This device may have been added with another device file.
[  5877.981] (II) config/udev: Adding input device HD-Audio Generic Front Mic (/dev/input/event16)
[  5877.981] (II) No input driver specified, ignoring this device.
[  5877.981] (II) This device may have been added with another device file.
[  5877.981] (II) config/udev: Adding input device HD-Audio Generic Rear Mic (/dev/input/event17)
[  5877.981] (II) No input driver specified, ignoring this device.
[  5877.981] (II) This device may have been added with another device file.
[  5877.981] (II) config/udev: Adding input device HD-Audio Generic Line (/dev/input/event18)
[  5877.981] (II) No input driver specified, ignoring this device.
[  5877.981] (II) This device may have been added with another device file.
[  5877.982] (II) config/udev: Adding input device HD-Audio Generic Line Out Front (/dev/input/event19)
[  5877.982] (II) No input driver specified, ignoring this device.
[  5877.982] (II) This device may have been added with another device file.
[  5877.982] (II) config/udev: Adding input device HD-Audio Generic Line Out Surround (/dev/input/event20)
[  5877.982] (II) No input driver specified, ignoring this device.
[  5877.982] (II) This device may have been added with another device file.
[  5877.982] (II) config/udev: Adding input device HD-Audio Generic Line Out CLFE (/dev/input/event21)
[  5877.982] (II) No input driver specified, ignoring this device.
[  5877.982] (II) This device may have been added with another device file.
[  5877.982] (II) config/udev: Adding input device HD-Audio Generic Line Out Side (/dev/input/event22)
[  5877.982] (II) No input driver specified, ignoring this device.
[  5877.982] (II) This device may have been added with another device file.
[  5877.982] (II) config/udev: Adding input device HD-Audio Generic Front Headphone (/dev/input/event23)
[  5877.982] (II) No input driver specified, ignoring this device.
[  5877.982] (II) This device may have been added with another device file.
[  5877.982] (II) config/udev: Adding input device PC Speaker (/dev/input/event2)
[  5877.983] (II) No input driver specified, ignoring this device.
[  5877.983] (II) This device may have been added with another device file.
[  5877.987] (**) Logitech MX Master 2S: Applying InputClass "evdev pointer catchall"
[  5877.987] (**) Logitech MX Master 2S: Applying InputClass "evdev keyboard catchall"
[  5877.987] (**) Logitech MX Master 2S: Applying InputClass "libinput pointer catchall"
[  5877.987] (**) Logitech MX Master 2S: Applying InputClass "libinput keyboard catchall"
[  5877.987] (**) Logitech MX Master 2S: Applying InputClass "system-keyboard"
[  5877.987] (**) Logitech MX Master 2S: Applying InputClass "Keyboard Defaults"
[  5877.987] (II) Using input driver 'libinput' for 'Logitech MX Master 2S'
[  5877.987] (**) Logitech MX Master 2S: always reports core events
[  5877.987] (**) Option "Device" "/dev/input/event26"
[  5877.987] (**) Option "_source" "_driver/libinput"
[  5877.987] (II) libinput: Logitech MX Master 2S: is a virtual subdevice
[  5877.987] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:01.3/0000:03:00.0/usb1/1-1/1-1:1.2/0003:046D:C52B.0003/0003:046D:4069.0006/input/input42/event26"
[  5877.987] (II) XINPUT: Adding extended input device "Logitech MX Master 2S" (type: KEYBOARD, id 13)
[  5877.987] (**) Option "xkb_layout" "de"
[  5877.987] (**) Option "xkb_options" "terminate:ctrl_alt_bksp"
[  5877.987] (**) Logitech MX Master 3: Applying InputClass "evdev pointer catchall"
[  5877.987] (**) Logitech MX Master 3: Applying InputClass "evdev keyboard catchall"
[  5877.987] (**) Logitech MX Master 3: Applying InputClass "libinput pointer catchall"
[  5877.987] (**) Logitech MX Master 3: Applying InputClass "libinput keyboard catchall"
[  5877.987] (**) Logitech MX Master 3: Applying InputClass "system-keyboard"
[  5877.987] (**) Logitech MX Master 3: Applying InputClass "Keyboard Defaults"
[  5877.987] (II) Using input driver 'libinput' for 'Logitech MX Master 3'
[  5877.987] (**) Logitech MX Master 3: always reports core events
[  5877.987] (**) Option "Device" "/dev/input/event27"
[  5877.987] (**) Option "_source" "_driver/libinput"
[  5877.987] (II) libinput: Logitech MX Master 3: is a virtual subdevice
[  5877.987] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:01.3/0000:03:00.0/usb1/1-1/1-1:1.2/0003:046D:C52B.0003/0003:046D:4082.0007/input/input43/event27"
[  5877.987] (II) XINPUT: Adding extended input device "Logitech MX Master 3" (type: KEYBOARD, id 14)
[  5877.987] (**) Option "xkb_layout" "de"
[  5877.987] (**) Option "xkb_options" "terminate:ctrl_alt_bksp"
[  5877.987] (**) ROCCAT ROCCAT Ryos MK Glow: Applying InputClass "evdev pointer catchall"
[  5877.987] (**) ROCCAT ROCCAT Ryos MK Glow: Applying InputClass "evdev keyboard catchall"
[  5877.987] (**) ROCCAT ROCCAT Ryos MK Glow: Applying InputClass "libinput pointer catchall"
[  5877.987] (**) ROCCAT ROCCAT Ryos MK Glow: Applying InputClass "libinput keyboard catchall"
[  5877.987] (**) ROCCAT ROCCAT Ryos MK Glow: Applying InputClass "system-keyboard"
[  5877.987] (**) ROCCAT ROCCAT Ryos MK Glow: Applying InputClass "Keyboard Defaults"
[  5877.987] (II) Using input driver 'libinput' for 'ROCCAT ROCCAT Ryos MK Glow'
[  5877.987] (**) ROCCAT ROCCAT Ryos MK Glow: always reports core events
[  5877.987] (**) Option "Device" "/dev/input/event28"
[  5877.987] (**) Option "_source" "_driver/libinput"
[  5877.987] (II) libinput: ROCCAT ROCCAT Ryos MK Glow: is a virtual subdevice
[  5877.987] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:01.3/0000:03:00.0/usb1/1-2/1-2:1.1/0003:1E7D:31CE.0005/input/input31/event28"
[  5877.987] (II) XINPUT: Adding extended input device "ROCCAT ROCCAT Ryos MK Glow" (type: KEYBOARD, id 15)
[  5877.987] (**) Option "xkb_layout" "de"
[  5877.987] (**) Option "xkb_options" "terminate:ctrl_alt_bksp"
[  5886.049] (EE) client bug: timer event26 debounce: scheduled expiry is in the past (-98ms), your system is too slow
[  5886.049] (EE) client bug: timer event26 debounce: scheduled expiry is in the past (-82ms), your system is too slow
[  5886.049] (EE) client bug: timer event26 debounce short: scheduled expiry is in the past (-95ms), your system is too slow
[  5886.049] (EE) client bug: timer event26 debounce: scheduled expiry is in the past (-10ms), your system is too slow
[  5886.049] (EE) client bug: timer event26 debounce: scheduled expiry is in the past (-10ms), your system is too slow
[  5886.049] (EE) client bug: timer event26 debounce short: scheduled expiry is in the past (-23ms), your system is too slow
[  5896.069] (II) event1  - Power Button: device removed
[  5896.124] (II) event0  - Power Button: device removed
[  5896.151] (II) event24 - ROCCAT ROCCAT Ryos MK Glow: device removed
[  5896.177] (II) event25 - Full HD webcam: Full HD webcam: device removed
[  5896.231] (II) event26 - Logitech MX Master 2S: device removed
[  5896.271] (II) event27 - Logitech MX Master 3: device removed
[  5896.311] (II) event28 - ROCCAT ROCCAT Ryos MK Glow: device removed
[  5896.691] (II) UnloadModule: "libinput"
[  5896.691] (II) UnloadModule: "libinput"
[  5896.691] (II) UnloadModule: "libinput"
[  5896.691] (II) UnloadModule: "libinput"
[  5896.691] (II) UnloadModule: "libinput"
[  5896.691] (II) UnloadModule: "libinput"
[  5896.691] (II) UnloadModule: "libinput"
[  5896.691] (II) UnloadModule: "libinput"
[  5896.691] (II) UnloadModule: "libinput"
[  5896.691] (II) UnloadModule: "libinput"
[  5896.692] (WW) NVIDIA(G0): Failed to set the display configuration
[  5896.692] (WW) NVIDIA(G0):  - Setting a mode on head 0 failed: Insufficient permissions
[  5896.692] (WW) NVIDIA(G0):  - Setting a mode on head 1 failed: Insufficient permissions
[  5896.692] (WW) NVIDIA(G0):  - Setting a mode on head 2 failed: Insufficient permissions
[  5896.692] (WW) NVIDIA(G0):  - Setting a mode on head 3 failed: Insufficient permissions
[  5896.704] (II) NVIDIA(GPU-0): Deleting GPU-0
[  5896.704] (II) NVIDIA(GPU-1): Renaming GPU-1 to GPU-0
[  5896.704] (II) NVIDIA(GPU-0): Deleting GPU-0
[  5896.704] (II) Server terminated successfully (0). Closing log file.

---/var/log/Xorg.1.log.old---
[ 10943.374] 
X.Org X Server 1.20.11
X Protocol Version 11, Revision 0
[ 10943.374] Build Operating System: Linux Manjaro Linux
[ 10943.374] Current Operating System: Linux jonas-ms7b86 5.12.19-1-MANJARO #1 SMP PREEMPT Tue Jul 20 20:57:37 UTC 2021 x86_64
[ 10943.374] Kernel command line: BOOT_IMAGE=/boot/vmlinuz-5.12-x86_64 root=UUID=a27f0baf-14fa-41db-844a-9ff44f8c8f6f rw quiet amd_iommu=on apparmor=1 security=apparmor resume=UUID=d0dac5d0-5548-41e7-8572-14de99a109cc udev.log_priority=3 iommu=pt
[ 10943.374] Build Date: 13 April 2021  04:11:08PM
[ 10943.374]  
[ 10943.374] Current version of pixman: 0.40.0
[ 10943.374] 	Before reporting problems, check http://wiki.x.org
	to make sure that you have the latest version.
[ 10943.374] Markers: (--) probed, (**) from config file, (==) default setting,
	(++) from command line, (!!) notice, (II) informational,
	(WW) warning, (EE) error, (NI) not implemented, (??) unknown.
[ 10943.374] (==) Log file: "/var/log/Xorg.1.log", Time: Tue Aug  3 01:08:06 2021
[ 10943.374] (==) Using config directory: "/etc/X11/xorg.conf.d"
[ 10943.374] (==) Using system config directory "/usr/share/X11/xorg.conf.d"
[ 10943.374] (==) ServerLayout "layout"
[ 10943.374] (**) |-->Screen "Screen0" (0)
[ 10943.374] (**) |   |-->Monitor "Monitor0"
[ 10943.374] (**) |   |-->Device "Device0"
[ 10943.374] (==) Automatically adding devices
[ 10943.374] (==) Automatically enabling devices
[ 10943.374] (==) Automatically adding GPU devices
[ 10943.374] (==) Automatically binding GPU devices
[ 10943.374] (==) Max clients allowed: 256, resource mask: 0x1fffff
[ 10943.374] (WW) The directory "/usr/share/fonts/OTF" does not exist.
[ 10943.374] 	Entry deleted from font path.
[ 10943.374] (WW) The directory "/usr/share/fonts/Type1" does not exist.
[ 10943.374] 	Entry deleted from font path.
[ 10943.374] (WW) The directory "/usr/share/fonts/100dpi" does not exist.
[ 10943.374] 	Entry deleted from font path.
[ 10943.374] (WW) The directory "/usr/share/fonts/75dpi" does not exist.
[ 10943.374] 	Entry deleted from font path.
[ 10943.374] (==) FontPath set to:
	/usr/share/fonts/misc,
	/usr/share/fonts/TTF
[ 10943.374] (==) ModulePath set to "/usr/lib/xorg/modules"
[ 10943.374] (**) Extension "COMPOSITE" is enabled
[ 10943.374] (II) The server relies on udev to provide the list of input devices.
	If no devices become available, reconfigure udev or disable AutoAddDevices.
[ 10943.374] (II) Module ABI versions:
[ 10943.374] 	X.Org ANSI C Emulation: 0.4
[ 10943.374] 	X.Org Video Driver: 24.1
[ 10943.374] 	X.Org XInput driver : 24.1
[ 10943.374] 	X.Org Server Extension : 10.0
[ 10943.375] (++) using VT number 8

[ 10943.375] (II) systemd-logind: logind integration requires -keeptty and -keeptty was not provided, disabling logind integration
[ 10943.375] (II) xfree86: Adding drm device (/dev/dri/card0)
[ 10943.376] (II) xfree86: Adding drm device (/dev/dri/card1)
[ 10943.377] (**) OutputClass "nvidia" ModulePath extended to "/usr/lib/nvidia/xorg,/usr/lib/xorg/modules,/usr/lib/xorg/modules"
[ 10943.377] (**) 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"
[ 10943.377] (**) OutputClass "nvidia" ModulePath extended to "/usr/lib/nvidia/xorg,/usr/lib/xorg/modules,/usr/lib/nvidia/xorg,/usr/lib/xorg/modules,/usr/lib/nvidia/xorg,/usr/lib/xorg/modules,/usr/lib/xorg/modules"
[ 10943.377] (**) OutputClass "nvidia" ModulePath extended to "/usr/lib/nvidia/xorg,/usr/lib/xorg/modules,/usr/lib/nvidia/xorg,/usr/lib/xorg/modules,/usr/lib/nvidia/xorg,/usr/lib/xorg/modules,/usr/lib/nvidia/xorg,/usr/lib/xorg/modules,/usr/lib/xorg/modules"
[ 10943.379] (--) PCI: (37@0:0:0) 10de:1c81:174b:5454 rev 161, Mem @ 0xf9000000/16777216, 0xd0000000/268435456, 0xe0000000/33554432, I/O @ 0x0000d000/128, BIOS @ 0x????????/524288
[ 10943.379] (--) PCI:*(38@0:0:0) 10de:13c2:1458:367b rev 161, Mem @ 0xfb000000/16777216, 0xb0000000/268435456, 0xc0000000/33554432, I/O @ 0x0000f000/128, BIOS @ 0x????????/131072
[ 10943.379] (WW) Open ACPI failed (/var/run/acpid.socket) (No such file or directory)
[ 10943.379] (II) LoadModule: "glx"
[ 10943.379] (II) Loading /usr/lib/xorg/modules/extensions/libglx.so
[ 10943.380] (II) Module glx: vendor="X.Org Foundation"
[ 10943.380] 	compiled for 1.20.11, module version = 1.0.0
[ 10943.380] 	ABI class: X.Org Server Extension, version 10.0
[ 10943.380] (II) LoadModule: "nvidia"
[ 10943.380] (II) Loading /usr/lib/xorg/modules/drivers/nvidia_drv.so
[ 10943.382] (II) Module nvidia: vendor="NVIDIA Corporation"
[ 10943.382] 	compiled for 1.6.99.901, module version = 1.0.0
[ 10943.382] 	Module class: X.Org Video Driver
[ 10943.382] (II) NVIDIA dlloader X Driver  470.57.02  Tue Jul 13 16:13:51 UTC 2021
[ 10943.382] (II) NVIDIA Unified Driver for all Supported NVIDIA GPUs
[ 10944.188] (II) Loading sub module "fb"
[ 10944.188] (II) LoadModule: "fb"
[ 10944.188] (II) Loading /usr/lib/xorg/modules/libfb.so
[ 10944.188] (II) Module fb: vendor="X.Org Foundation"
[ 10944.188] 	compiled for 1.20.11, module version = 1.0.0
[ 10944.188] 	ABI class: X.Org ANSI C Emulation, version 0.4
[ 10944.188] (II) Loading sub module "wfb"
[ 10944.188] (II) LoadModule: "wfb"
[ 10944.188] (II) Loading /usr/lib/xorg/modules/libwfb.so
[ 10944.188] (II) Module wfb: vendor="X.Org Foundation"
[ 10944.188] 	compiled for 1.20.11, module version = 1.0.0
[ 10944.188] 	ABI class: X.Org ANSI C Emulation, version 0.4
[ 10944.188] (II) Loading sub module "ramdac"
[ 10944.188] (II) LoadModule: "ramdac"
[ 10944.188] (II) Module "ramdac" already built-in
[ 10944.189] (**) NVIDIA(0): Depth 24, (--) framebuffer bpp 32
[ 10944.189] (==) NVIDIA(0): RGB weight 888
[ 10944.189] (==) NVIDIA(0): Default visual is TrueColor
[ 10944.189] (==) NVIDIA(0): Using gamma correction (1.0, 1.0, 1.0)
[ 10944.189] (**) Option "AllowNVIDIAGpuScreens"
[ 10944.189] (II) Applying OutputClass "nvidia" options to /dev/dri/card1
[ 10944.189] (II) Applying OutputClass "nvidia" options to /dev/dri/card1
[ 10944.189] (**) NVIDIA(0): Option "AllowEmptyInitialConfiguration"
[ 10944.189] (**) NVIDIA(0): Enabling 2D acceleration
[ 10944.189] (II) Loading sub module "glxserver_nvidia"
[ 10944.189] (II) LoadModule: "glxserver_nvidia"
[ 10944.189] (II) Loading /usr/lib/nvidia/xorg/libglxserver_nvidia.so
[ 10944.193] (II) Module glxserver_nvidia: vendor="NVIDIA Corporation"
[ 10944.193] 	compiled for 1.6.99.901, module version = 1.0.0
[ 10944.193] 	Module class: X.Org Server Extension
[ 10944.193] (II) NVIDIA GLX Module  470.57.02  Tue Jul 13 16:10:58 UTC 2021
[ 10944.193] (II) NVIDIA: The X server supports PRIME Render Offload.
[ 10944.195] (--) NVIDIA(0): Valid display device(s) on GPU-0 at PCI:38:0:0
[ 10944.195] (--) NVIDIA(0):     CRT-0
[ 10944.195] (--) NVIDIA(0):     DFP-0 (boot)
[ 10944.195] (--) NVIDIA(0):     DFP-1
[ 10944.195] (--) NVIDIA(0):     DFP-2
[ 10944.195] (--) NVIDIA(0):     DFP-3
[ 10944.195] (--) NVIDIA(0):     DFP-4 (boot)
[ 10944.196] (II) NVIDIA(0): NVIDIA GPU NVIDIA GeForce GTX 970 (GM204-A) at PCI:38:0:0
[ 10944.196] (II) NVIDIA(0):     (GPU-0)
[ 10944.196] (--) NVIDIA(0): Memory: 4194304 kBytes
[ 10944.196] (--) NVIDIA(0): VideoBIOS: 84.04.36.00.2e
[ 10944.196] (II) NVIDIA(0): Detected PCI Express Link width: 16X
[ 10944.212] (--) NVIDIA(GPU-0): CRT-0: disconnected
[ 10944.212] (--) NVIDIA(GPU-0): CRT-0: 400.0 MHz maximum pixel clock
[ 10944.212] (--) NVIDIA(GPU-0): 
[ 10944.245] (--) NVIDIA(GPU-0): BenQ BL2405 (DFP-0): connected
[ 10944.245] (--) NVIDIA(GPU-0): BenQ BL2405 (DFP-0): Internal TMDS
[ 10944.245] (--) NVIDIA(GPU-0): BenQ BL2405 (DFP-0): 330.0 MHz maximum pixel clock
[ 10944.245] (--) NVIDIA(GPU-0): 
[ 10944.245] (--) NVIDIA(GPU-0): DFP-1: disconnected
[ 10944.245] (--) NVIDIA(GPU-0): DFP-1: Internal TMDS
[ 10944.245] (--) NVIDIA(GPU-0): DFP-1: 165.0 MHz maximum pixel clock
[ 10944.245] (--) NVIDIA(GPU-0): 
[ 10944.245] (--) NVIDIA(GPU-0): DFP-2: disconnected
[ 10944.245] (--) NVIDIA(GPU-0): DFP-2: Internal DisplayPort
[ 10944.245] (--) NVIDIA(GPU-0): DFP-2: 960.0 MHz maximum pixel clock
[ 10944.245] (--) NVIDIA(GPU-0): 
[ 10944.245] (--) NVIDIA(GPU-0): DFP-3: disconnected
[ 10944.245] (--) NVIDIA(GPU-0): DFP-3: Internal TMDS
[ 10944.245] (--) NVIDIA(GPU-0): DFP-3: 165.0 MHz maximum pixel clock
[ 10944.245] (--) NVIDIA(GPU-0): 
[ 10944.261] (--) NVIDIA(GPU-0): Acer G246HL (DFP-4): connected
[ 10944.261] (--) NVIDIA(GPU-0): Acer G246HL (DFP-4): Internal TMDS
[ 10944.261] (--) NVIDIA(GPU-0): Acer G246HL (DFP-4): 330.0 MHz maximum pixel clock
[ 10944.261] (--) NVIDIA(GPU-0): 
[ 10944.268] (==) NVIDIA(0): 
[ 10944.268] (==) NVIDIA(0): No modes were requested; the default mode "nvidia-auto-select"
[ 10944.268] (==) NVIDIA(0):     will be used as the requested mode.
[ 10944.268] (==) NVIDIA(0): 
[ 10944.268] (II) NVIDIA(0): Validated MetaModes:
[ 10944.268] (II) NVIDIA(0):     "DFP-0:nvidia-auto-select,DFP-4:nvidia-auto-select"
[ 10944.268] (II) NVIDIA(0): Virtual screen size determined to be 3840 x 1080
[ 10944.272] (--) NVIDIA(0): DPI set to (92, 91); computed from "UseEdidDpi" X config
[ 10944.272] (--) NVIDIA(0):     option
[ 10944.272] (**) NVIDIA(G0): Depth 24, (--) framebuffer bpp 32
[ 10944.272] (==) NVIDIA(G0): RGB weight 888
[ 10944.272] (==) NVIDIA(G0): Default visual is TrueColor
[ 10944.272] (==) NVIDIA(G0): Using gamma correction (1.0, 1.0, 1.0)
[ 10944.272] (II) Applying OutputClass "nvidia" options to /dev/dri/card0
[ 10944.272] (II) Applying OutputClass "nvidia" options to /dev/dri/card0
[ 10944.272] (**) NVIDIA(G0): Option "AllowEmptyInitialConfiguration"
[ 10944.272] (**) NVIDIA(G0): Enabling 2D acceleration
[ 10944.272] (II) NVIDIA: The X server supports PRIME Render Offload.
[ 10944.274] (--) NVIDIA(0): Valid display device(s) on GPU-1 at PCI:37:0:0
[ 10944.274] (--) NVIDIA(0):     DFP-0
[ 10944.274] (--) NVIDIA(0):     DFP-1
[ 10944.274] (--) NVIDIA(0):     DFP-2
[ 10944.274] (--) NVIDIA(0):     DFP-3
[ 10944.275] (II) NVIDIA(G0): NVIDIA GPU NVIDIA GeForce GTX 1050 (GP107-A) at PCI:37:0:0
[ 10944.275] (II) NVIDIA(G0):     (GPU-1)
[ 10944.275] (--) NVIDIA(G0): Memory: 2097152 kBytes
[ 10944.275] (--) NVIDIA(G0): VideoBIOS: 86.07.39.00.18
[ 10944.275] (II) NVIDIA(G0): Detected PCI Express Link width: 16X
[ 10944.276] (--) NVIDIA(GPU-1): DFP-0: disconnected
[ 10944.276] (--) NVIDIA(GPU-1): DFP-0: Internal TMDS
[ 10944.276] (--) NVIDIA(GPU-1): DFP-0: 330.0 MHz maximum pixel clock
[ 10944.276] (--) NVIDIA(GPU-1): 
[ 10944.276] (--) NVIDIA(GPU-1): DFP-1: disconnected
[ 10944.276] (--) NVIDIA(GPU-1): DFP-1: Internal TMDS
[ 10944.276] (--) NVIDIA(GPU-1): DFP-1: 165.0 MHz maximum pixel clock
[ 10944.276] (--) NVIDIA(GPU-1): 
[ 10944.276] (--) NVIDIA(GPU-1): DFP-2: disconnected
[ 10944.276] (--) NVIDIA(GPU-1): DFP-2: Internal DisplayPort
[ 10944.276] (--) NVIDIA(GPU-1): DFP-2: 1440.0 MHz maximum pixel clock
[ 10944.276] (--) NVIDIA(GPU-1): 
[ 10944.276] (--) NVIDIA(GPU-1): DFP-3: disconnected
[ 10944.276] (--) NVIDIA(GPU-1): DFP-3: Internal TMDS
[ 10944.276] (--) NVIDIA(GPU-1): DFP-3: 165.0 MHz maximum pixel clock
[ 10944.276] (--) NVIDIA(GPU-1): 
[ 10944.276] (II) NVIDIA(G0): Validated MetaModes:
[ 10944.276] (II) NVIDIA(G0):     "NULL"
[ 10944.276] (II) NVIDIA(G0): Virtual screen size determined to be 640 x 480
[ 10944.276] (WW) NVIDIA(G0): Unable to get display device for DPI computation.
[ 10944.276] (==) NVIDIA(G0): DPI set to (75, 75); computed from built-in default
[ 10944.277] (II) NVIDIA: Reserving 24576.00 MB of virtual memory for indirect memory
[ 10944.277] (II) NVIDIA:     access.
[ 10944.280] (II) NVIDIA(0): ACPI: failed to connect to the ACPI event daemon; the daemon
[ 10944.280] (II) NVIDIA(0):     may not be running or the "AcpidSocketPath" X
[ 10944.280] (II) NVIDIA(0):     configuration option may not be set correctly.  When the
[ 10944.280] (II) NVIDIA(0):     ACPI event daemon is available, the NVIDIA X driver will
[ 10944.280] (II) NVIDIA(0):     try to use it to receive ACPI event notifications.  For
[ 10944.280] (II) NVIDIA(0):     details, please see the "ConnectToAcpid" and
[ 10944.280] (II) NVIDIA(0):     "AcpidSocketPath" X configuration options in Appendix B: X
[ 10944.280] (II) NVIDIA(0):     Config Options in the README.
[ 10944.298] (II) NVIDIA(0): Setting mode "DFP-0:nvidia-auto-select,DFP-4:nvidia-auto-select"
[ 10944.490] (==) NVIDIA(0): Disabling shared memory pixmaps
[ 10944.490] (==) NVIDIA(0): Backing store enabled
[ 10944.490] (==) NVIDIA(0): Silken mouse disabled
[ 10944.490] (**) NVIDIA(0): DPMS enabled
[ 10944.490] (WW) NVIDIA(0): Option "NoLogo" is not used
[ 10944.490] (II) Loading sub module "dri2"
[ 10944.490] (II) LoadModule: "dri2"
[ 10944.490] (II) Module "dri2" already built-in
[ 10944.490] (II) NVIDIA(0): [DRI2] Setup complete
[ 10944.490] (II) NVIDIA(0): [DRI2]   VDPAU driver: nvidia
[ 10944.494] (II) NVIDIA(G0): ACPI: failed to connect to the ACPI event daemon; the daemon
[ 10944.494] (II) NVIDIA(G0):     may not be running or the "AcpidSocketPath" X
[ 10944.494] (II) NVIDIA(G0):     configuration option may not be set correctly.  When the
[ 10944.494] (II) NVIDIA(G0):     ACPI event daemon is available, the NVIDIA X driver will
[ 10944.494] (II) NVIDIA(G0):     try to use it to receive ACPI event notifications.  For
[ 10944.494] (II) NVIDIA(G0):     details, please see the "ConnectToAcpid" and
[ 10944.494] (II) NVIDIA(G0):     "AcpidSocketPath" X configuration options in Appendix B: X
[ 10944.494] (II) NVIDIA(G0):     Config Options in the README.
[ 10944.509] (II) NVIDIA(G0): Setting mode "NULL"
[ 10944.517] (==) NVIDIA(G0): Disabling shared memory pixmaps
[ 10944.517] (==) NVIDIA(G0): Backing store enabled
[ 10944.517] (==) NVIDIA(G0): Silken mouse disabled
[ 10944.517] (**) NVIDIA(G0): DPMS enabled
[ 10944.517] (II) Loading sub module "dri2"
[ 10944.517] (II) LoadModule: "dri2"
[ 10944.517] (II) Module "dri2" already built-in
[ 10944.517] (II) NVIDIA(G0): [DRI2] Setup complete
[ 10944.517] (II) NVIDIA(G0): [DRI2]   VDPAU driver: nvidia
[ 10944.517] (II) Initializing extension Generic Event Extension
[ 10944.517] (II) Initializing extension SHAPE
[ 10944.517] (II) Initializing extension MIT-SHM
[ 10944.517] (II) Initializing extension XInputExtension
[ 10944.518] (II) Initializing extension XTEST
[ 10944.518] (II) Initializing extension BIG-REQUESTS
[ 10944.518] (II) Initializing extension SYNC
[ 10944.518] (II) Initializing extension XKEYBOARD
[ 10944.518] (II) Initializing extension XC-MISC
[ 10944.518] (II) Initializing extension SECURITY
[ 10944.518] (II) Initializing extension XFIXES
[ 10944.518] (II) Initializing extension RENDER
[ 10944.518] (II) Initializing extension RANDR
[ 10944.518] (II) Initializing extension COMPOSITE
[ 10944.518] (II) Initializing extension DAMAGE
[ 10944.518] (II) Initializing extension MIT-SCREEN-SAVER
[ 10944.518] (II) Initializing extension DOUBLE-BUFFER
[ 10944.518] (II) Initializing extension RECORD
[ 10944.518] (II) Initializing extension DPMS
[ 10944.518] (II) Initializing extension Present
[ 10944.518] (II) Initializing extension DRI3
[ 10944.518] (II) Initializing extension X-Resource
[ 10944.519] (II) Initializing extension XVideo
[ 10944.519] (II) Initializing extension XVideo-MotionCompensation
[ 10944.519] (II) Initializing extension GLX
[ 10944.519] (II) Initializing extension GLX
[ 10944.519] (II) Indirect GLX disabled.
[ 10944.519] (II) GLX: Another vendor is already registered for screen 0
[ 10944.519] (II) Initializing extension XFree86-VidModeExtension
[ 10944.519] (II) Initializing extension XFree86-DGA
[ 10944.519] (II) Initializing extension XFree86-DRI
[ 10944.519] (II) Initializing extension DRI2
[ 10944.519] (II) Initializing extension NV-GLX
[ 10944.519] (II) Initializing extension NV-CONTROL
[ 10944.519] (II) Initializing extension XINERAMA
[ 10944.549] (II) config/udev: Adding input device Power Button (/dev/input/event1)
[ 10944.549] (**) Power Button: Applying InputClass "evdev keyboard catchall"
[ 10944.549] (**) Power Button: Applying InputClass "libinput keyboard catchall"
[ 10944.549] (**) Power Button: Applying InputClass "system-keyboard"
[ 10944.549] (**) Power Button: Applying InputClass "Keyboard Defaults"
[ 10944.549] (II) LoadModule: "libinput"
[ 10944.549] (II) Loading /usr/lib/xorg/modules/input/libinput_drv.so
[ 10944.550] (II) Module libinput: vendor="X.Org Foundation"
[ 10944.550] 	compiled for 1.20.11, module version = 1.1.0
[ 10944.550] 	Module class: X.Org XInput Driver
[ 10944.550] 	ABI class: X.Org XInput driver, version 24.1
[ 10944.550] (II) Using input driver 'libinput' for 'Power Button'
[ 10944.550] (**) Power Button: always reports core events
[ 10944.550] (**) Option "Device" "/dev/input/event1"
[ 10944.550] (**) Option "_source" "server/udev"
[ 10944.551] (II) event1  - Power Button: is tagged by udev as: Keyboard
[ 10944.551] (II) event1  - Power Button: device is a keyboard
[ 10944.551] (II) event1  - Power Button: device removed
[ 10944.574] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/LNXPWRBN:00/input/input1/event1"
[ 10944.574] (II) XINPUT: Adding extended input device "Power Button" (type: KEYBOARD, id 6)
[ 10944.574] (**) Option "xkb_layout" "de"
[ 10944.574] (**) Option "xkb_options" "terminate:ctrl_alt_bksp"
[ 10944.585] (II) event1  - Power Button: is tagged by udev as: Keyboard
[ 10944.585] (II) event1  - Power Button: device is a keyboard
[ 10944.586] (II) config/udev: Adding input device Power Button (/dev/input/event0)
[ 10944.586] (**) Power Button: Applying InputClass "evdev keyboard catchall"
[ 10944.586] (**) Power Button: Applying InputClass "libinput keyboard catchall"
[ 10944.586] (**) Power Button: Applying InputClass "system-keyboard"
[ 10944.586] (**) Power Button: Applying InputClass "Keyboard Defaults"
[ 10944.586] (II) Using input driver 'libinput' for 'Power Button'
[ 10944.586] (**) Power Button: always reports core events
[ 10944.586] (**) Option "Device" "/dev/input/event0"
[ 10944.586] (**) Option "_source" "server/udev"
[ 10944.586] (II) event0  - Power Button: is tagged by udev as: Keyboard
[ 10944.586] (II) event0  - Power Button: device is a keyboard
[ 10944.586] (II) event0  - Power Button: device removed
[ 10944.607] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0C:00/input/input0/event0"
[ 10944.607] (II) XINPUT: Adding extended input device "Power Button" (type: KEYBOARD, id 7)
[ 10944.607] (**) Option "xkb_layout" "de"
[ 10944.607] (**) Option "xkb_options" "terminate:ctrl_alt_bksp"
[ 10944.608] (II) event0  - Power Button: is tagged by udev as: Keyboard
[ 10944.608] (II) event0  - Power Button: device is a keyboard
[ 10944.609] (II) config/udev: Adding input device Logitech MX Master 2S (/dev/input/event26)
[ 10944.609] (**) Logitech MX Master 2S: Applying InputClass "evdev pointer catchall"
[ 10944.609] (**) Logitech MX Master 2S: Applying InputClass "evdev keyboard catchall"
[ 10944.609] (**) Logitech MX Master 2S: Applying InputClass "libinput pointer catchall"
[ 10944.609] (**) Logitech MX Master 2S: Applying InputClass "libinput keyboard catchall"
[ 10944.609] (**) Logitech MX Master 2S: Applying InputClass "system-keyboard"
[ 10944.609] (**) Logitech MX Master 2S: Applying InputClass "Keyboard Defaults"
[ 10944.609] (II) Using input driver 'libinput' for 'Logitech MX Master 2S'
[ 10944.609] (**) Logitech MX Master 2S: always reports core events
[ 10944.609] (**) Option "Device" "/dev/input/event26"
[ 10944.609] (**) Option "_source" "server/udev"
[ 10944.610] (II) event26 - Logitech MX Master 2S: is tagged by udev as: Keyboard Mouse
[ 10944.610] (II) event26 - Logitech MX Master 2S: device is a pointer
[ 10944.610] (II) event26 - Logitech MX Master 2S: device is a keyboard
[ 10944.611] (II) event26 - Logitech MX Master 2S: device removed
[ 10944.640] (II) libinput: Logitech MX Master 2S: needs a virtual subdevice
[ 10944.640] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:01.3/0000:03:00.0/usb1/1-1/1-1:1.2/0003:046D:C52B.0003/0003:046D:4069.0006/input/input37/event26"
[ 10944.640] (II) XINPUT: Adding extended input device "Logitech MX Master 2S" (type: MOUSE, id 8)
[ 10944.641] (**) Option "AccelerationScheme" "none"
[ 10944.641] (**) Logitech MX Master 2S: (accel) selected scheme none/0
[ 10944.641] (**) Logitech MX Master 2S: (accel) acceleration factor: 2.000
[ 10944.641] (**) Logitech MX Master 2S: (accel) acceleration threshold: 4
[ 10944.642] (II) event26 - Logitech MX Master 2S: is tagged by udev as: Keyboard Mouse
[ 10944.642] (II) event26 - Logitech MX Master 2S: device is a pointer
[ 10944.642] (II) event26 - Logitech MX Master 2S: device is a keyboard
[ 10944.642] (II) config/udev: Adding input device Logitech MX Master 2S (/dev/input/mouse1)
[ 10944.642] (**) Logitech MX Master 2S: Applying InputClass "system-keyboard"
[ 10944.642] (**) Logitech MX Master 2S: Applying InputClass "Keyboard Defaults"
[ 10944.642] (II) No input driver specified, ignoring this device.
[ 10944.642] (II) This device may have been added with another device file.
[ 10944.643] (II) config/udev: Adding input device ROCCAT ROCCAT Ryos MK Glow (/dev/input/event24)
[ 10944.643] (**) ROCCAT ROCCAT Ryos MK Glow: Applying InputClass "evdev keyboard catchall"
[ 10944.643] (**) ROCCAT ROCCAT Ryos MK Glow: Applying InputClass "libinput keyboard catchall"
[ 10944.643] (**) ROCCAT ROCCAT Ryos MK Glow: Applying InputClass "system-keyboard"
[ 10944.643] (**) ROCCAT ROCCAT Ryos MK Glow: Applying InputClass "Keyboard Defaults"
[ 10944.643] (II) Using input driver 'libinput' for 'ROCCAT ROCCAT Ryos MK Glow'
[ 10944.643] (**) ROCCAT ROCCAT Ryos MK Glow: always reports core events
[ 10944.643] (**) Option "Device" "/dev/input/event24"
[ 10944.643] (**) Option "_source" "server/udev"
[ 10944.643] (II) event24 - ROCCAT ROCCAT Ryos MK Glow: is tagged by udev as: Keyboard
[ 10944.643] (II) event24 - ROCCAT ROCCAT Ryos MK Glow: device is a keyboard
[ 10944.643] (II) event24 - ROCCAT ROCCAT Ryos MK Glow: device removed
[ 10944.654] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:01.3/0000:03:00.0/usb1/1-2/1-2:1.0/0003:1E7D:31CE.0004/input/input30/event24"
[ 10944.654] (II) XINPUT: Adding extended input device "ROCCAT ROCCAT Ryos MK Glow" (type: KEYBOARD, id 9)
[ 10944.654] (**) Option "xkb_layout" "de"
[ 10944.654] (**) Option "xkb_options" "terminate:ctrl_alt_bksp"
[ 10944.655] (II) event24 - ROCCAT ROCCAT Ryos MK Glow: is tagged by udev as: Keyboard
[ 10944.655] (II) event24 - ROCCAT ROCCAT Ryos MK Glow: device is a keyboard
[ 10944.655] (II) config/udev: Adding input device ROCCAT ROCCAT Ryos MK Glow (/dev/input/event25)
[ 10944.655] (**) ROCCAT ROCCAT Ryos MK Glow: Applying InputClass "evdev pointer catchall"
[ 10944.655] (**) ROCCAT ROCCAT Ryos MK Glow: Applying InputClass "evdev keyboard catchall"
[ 10944.655] (**) ROCCAT ROCCAT Ryos MK Glow: Applying InputClass "libinput pointer catchall"
[ 10944.655] (**) ROCCAT ROCCAT Ryos MK Glow: Applying InputClass "libinput keyboard catchall"
[ 10944.655] (**) ROCCAT ROCCAT Ryos MK Glow: Applying InputClass "system-keyboard"
[ 10944.655] (**) ROCCAT ROCCAT Ryos MK Glow: Applying InputClass "Keyboard Defaults"
[ 10944.655] (II) Using input driver 'libinput' for 'ROCCAT ROCCAT Ryos MK Glow'
[ 10944.655] (**) ROCCAT ROCCAT Ryos MK Glow: always reports core events
[ 10944.655] (**) Option "Device" "/dev/input/event25"
[ 10944.655] (**) Option "_source" "server/udev"
[ 10944.656] (II) event25 - ROCCAT ROCCAT Ryos MK Glow: is tagged by udev as: Keyboard Mouse
[ 10944.656] (II) event25 - ROCCAT ROCCAT Ryos MK Glow: device is a pointer
[ 10944.656] (II) event25 - ROCCAT ROCCAT Ryos MK Glow: device is a keyboard
[ 10944.656] (II) event25 - ROCCAT ROCCAT Ryos MK Glow: device removed
[ 10944.694] (II) libinput: ROCCAT ROCCAT Ryos MK Glow: needs a virtual subdevice
[ 10944.694] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:01.3/0000:03:00.0/usb1/1-2/1-2:1.1/0003:1E7D:31CE.0005/input/input31/event25"
[ 10944.694] (II) XINPUT: Adding extended input device "ROCCAT ROCCAT Ryos MK Glow" (type: MOUSE, id 10)
[ 10944.694] (**) Option "AccelerationScheme" "none"
[ 10944.694] (**) ROCCAT ROCCAT Ryos MK Glow: (accel) selected scheme none/0
[ 10944.694] (**) ROCCAT ROCCAT Ryos MK Glow: (accel) acceleration factor: 2.000
[ 10944.694] (**) ROCCAT ROCCAT Ryos MK Glow: (accel) acceleration threshold: 4
[ 10944.695] (II) event25 - ROCCAT ROCCAT Ryos MK Glow: is tagged by udev as: Keyboard Mouse
[ 10944.695] (II) event25 - ROCCAT ROCCAT Ryos MK Glow: device is a pointer
[ 10944.695] (II) event25 - ROCCAT ROCCAT Ryos MK Glow: device is a keyboard
[ 10944.696] (II) config/udev: Adding input device ROCCAT ROCCAT Ryos MK Glow (/dev/input/mouse0)
[ 10944.696] (**) ROCCAT ROCCAT Ryos MK Glow: Applying InputClass "system-keyboard"
[ 10944.696] (**) ROCCAT ROCCAT Ryos MK Glow: Applying InputClass "Keyboard Defaults"
[ 10944.696] (II) No input driver specified, ignoring this device.
[ 10944.696] (II) This device may have been added with another device file.
[ 10944.696] (II) config/udev: Adding input device Full HD webcam: Full HD webcam (/dev/input/event28)
[ 10944.696] (**) Full HD webcam: Full HD webcam: Applying InputClass "evdev keyboard catchall"
[ 10944.696] (**) Full HD webcam: Full HD webcam: Applying InputClass "libinput keyboard catchall"
[ 10944.696] (**) Full HD webcam: Full HD webcam: Applying InputClass "system-keyboard"
[ 10944.696] (**) Full HD webcam: Full HD webcam: Applying InputClass "Keyboard Defaults"
[ 10944.696] (II) Using input driver 'libinput' for 'Full HD webcam: Full HD webcam'
[ 10944.696] (**) Full HD webcam: Full HD webcam: always reports core events
[ 10944.696] (**) Option "Device" "/dev/input/event28"
[ 10944.696] (**) Option "_source" "server/udev"
[ 10944.697] (II) event28 - Full HD webcam: Full HD webcam: is tagged by udev as: Keyboard
[ 10944.697] (II) event28 - Full HD webcam: Full HD webcam: device is a keyboard
[ 10944.697] (II) event28 - Full HD webcam: Full HD webcam: device removed
[ 10944.750] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:01.3/0000:03:00.0/usb1/1-9/1-9:1.0/input/input29/event28"
[ 10944.750] (II) XINPUT: Adding extended input device "Full HD webcam: Full HD webcam" (type: KEYBOARD, id 11)
[ 10944.750] (**) Option "xkb_layout" "de"
[ 10944.750] (**) Option "xkb_options" "terminate:ctrl_alt_bksp"
[ 10944.751] (II) event28 - Full HD webcam: Full HD webcam: is tagged by udev as: Keyboard
[ 10944.751] (II) event28 - Full HD webcam: Full HD webcam: device is a keyboard
[ 10944.752] (II) config/udev: Adding input device HDA NVidia HDMI/DP,pcm=3 (/dev/input/event3)
[ 10944.752] (II) No input driver specified, ignoring this device.
[ 10944.752] (II) This device may have been added with another device file.
[ 10944.752] (II) config/udev: Adding input device HDA NVidia HDMI/DP,pcm=7 (/dev/input/event4)
[ 10944.752] (II) No input driver specified, ignoring this device.
[ 10944.752] (II) This device may have been added with another device file.
[ 10944.752] (II) config/udev: Adding input device HDA NVidia HDMI/DP,pcm=8 (/dev/input/event5)
[ 10944.752] (II) No input driver specified, ignoring this device.
[ 10944.752] (II) This device may have been added with another device file.
[ 10944.752] (II) config/udev: Adding input device HDA NVidia HDMI/DP,pcm=9 (/dev/input/event6)
[ 10944.752] (II) No input driver specified, ignoring this device.
[ 10944.752] (II) This device may have been added with another device file.
[ 10944.752] (II) config/udev: Adding input device HDA NVidia HDMI/DP,pcm=10 (/dev/input/event7)
[ 10944.752] (II) No input driver specified, ignoring this device.
[ 10944.752] (II) This device may have been added with another device file.
[ 10944.753] (II) config/udev: Adding input device HDA NVidia HDMI/DP,pcm=11 (/dev/input/event8)
[ 10944.753] (II) No input driver specified, ignoring this device.
[ 10944.753] (II) This device may have been added with another device file.
[ 10944.753] (II) config/udev: Adding input device HDA NVidia HDMI/DP,pcm=3 (/dev/input/event9)
[ 10944.753] (II) No input driver specified, ignoring this device.
[ 10944.753] (II) This device may have been added with another device file.
[ 10944.753] (II) config/udev: Adding input device HDA NVidia HDMI/DP,pcm=7 (/dev/input/event10)
[ 10944.753] (II) No input driver specified, ignoring this device.
[ 10944.753] (II) This device may have been added with another device file.
[ 10944.753] (II) config/udev: Adding input device HDA NVidia HDMI/DP,pcm=8 (/dev/input/event11)
[ 10944.753] (II) No input driver specified, ignoring this device.
[ 10944.753] (II) This device may have been added with another device file.
[ 10944.753] (II) config/udev: Adding input device HDA NVidia HDMI/DP,pcm=9 (/dev/input/event12)
[ 10944.753] (II) No input driver specified, ignoring this device.
[ 10944.753] (II) This device may have been added with another device file.
[ 10944.754] (II) config/udev: Adding input device HDA NVidia HDMI/DP,pcm=10 (/dev/input/event13)
[ 10944.754] (II) No input driver specified, ignoring this device.
[ 10944.754] (II) This device may have been added with another device file.
[ 10944.754] (II) config/udev: Adding input device HDA NVidia HDMI/DP,pcm=11 (/dev/input/event14)
[ 10944.754] (II) No input driver specified, ignoring this device.
[ 10944.754] (II) This device may have been added with another device file.
[ 10944.754] (II) config/udev: Adding input device HDA NVidia HDMI/DP,pcm=12 (/dev/input/event15)
[ 10944.754] (II) No input driver specified, ignoring this device.
[ 10944.754] (II) This device may have been added with another device file.
[ 10944.754] (II) config/udev: Adding input device HD-Audio Generic Front Mic (/dev/input/event16)
[ 10944.754] (II) No input driver specified, ignoring this device.
[ 10944.754] (II) This device may have been added with another device file.
[ 10944.754] (II) config/udev: Adding input device HD-Audio Generic Rear Mic (/dev/input/event17)
[ 10944.754] (II) No input driver specified, ignoring this device.
[ 10944.754] (II) This device may have been added with another device file.
[ 10944.754] (II) config/udev: Adding input device HD-Audio Generic Line (/dev/input/event18)
[ 10944.754] (II) No input driver specified, ignoring this device.
[ 10944.754] (II) This device may have been added with another device file.
[ 10944.755] (II) config/udev: Adding input device HD-Audio Generic Line Out Front (/dev/input/event19)
[ 10944.755] (II) No input driver specified, ignoring this device.
[ 10944.755] (II) This device may have been added with another device file.
[ 10944.755] (II) config/udev: Adding input device HD-Audio Generic Line Out Surround (/dev/input/event20)
[ 10944.755] (II) No input driver specified, ignoring this device.
[ 10944.755] (II) This device may have been added with another device file.
[ 10944.755] (II) config/udev: Adding input device HD-Audio Generic Line Out CLFE (/dev/input/event21)
[ 10944.755] (II) No input driver specified, ignoring this device.
[ 10944.755] (II) This device may have been added with another device file.
[ 10944.755] (II) config/udev: Adding input device HD-Audio Generic Line Out Side (/dev/input/event22)
[ 10944.755] (II) No input driver specified, ignoring this device.
[ 10944.755] (II) This device may have been added with another device file.
[ 10944.755] (II) config/udev: Adding input device HD-Audio Generic Front Headphone (/dev/input/event23)
[ 10944.755] (II) No input driver specified, ignoring this device.
[ 10944.755] (II) This device may have been added with another device file.
[ 10944.755] (II) config/udev: Adding input device PC Speaker (/dev/input/event2)
[ 10944.755] (II) No input driver specified, ignoring this device.
[ 10944.755] (II) This device may have been added with another device file.
[ 10944.759] (**) Logitech MX Master 2S: Applying InputClass "evdev pointer catchall"
[ 10944.759] (**) Logitech MX Master 2S: Applying InputClass "evdev keyboard catchall"
[ 10944.759] (**) Logitech MX Master 2S: Applying InputClass "libinput pointer catchall"
[ 10944.759] (**) Logitech MX Master 2S: Applying InputClass "libinput keyboard catchall"
[ 10944.760] (**) Logitech MX Master 2S: Applying InputClass "system-keyboard"
[ 10944.760] (**) Logitech MX Master 2S: Applying InputClass "Keyboard Defaults"
[ 10944.760] (II) Using input driver 'libinput' for 'Logitech MX Master 2S'
[ 10944.760] (**) Logitech MX Master 2S: always reports core events
[ 10944.760] (**) Option "Device" "/dev/input/event26"
[ 10944.760] (**) Option "_source" "_driver/libinput"
[ 10944.760] (II) libinput: Logitech MX Master 2S: is a virtual subdevice
[ 10944.760] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:01.3/0000:03:00.0/usb1/1-1/1-1:1.2/0003:046D:C52B.0003/0003:046D:4069.0006/input/input37/event26"
[ 10944.760] (II) XINPUT: Adding extended input device "Logitech MX Master 2S" (type: KEYBOARD, id 12)
[ 10944.760] (**) Option "xkb_layout" "de"
[ 10944.760] (**) Option "xkb_options" "terminate:ctrl_alt_bksp"
[ 10944.760] (**) ROCCAT ROCCAT Ryos MK Glow: Applying InputClass "evdev pointer catchall"
[ 10944.760] (**) ROCCAT ROCCAT Ryos MK Glow: Applying InputClass "evdev keyboard catchall"
[ 10944.760] (**) ROCCAT ROCCAT Ryos MK Glow: Applying InputClass "libinput pointer catchall"
[ 10944.760] (**) ROCCAT ROCCAT Ryos MK Glow: Applying InputClass "libinput keyboard catchall"
[ 10944.760] (**) ROCCAT ROCCAT Ryos MK Glow: Applying InputClass "system-keyboard"
[ 10944.760] (**) ROCCAT ROCCAT Ryos MK Glow: Applying InputClass "Keyboard Defaults"
[ 10944.760] (II) Using input driver 'libinput' for 'ROCCAT ROCCAT Ryos MK Glow'
[ 10944.760] (**) ROCCAT ROCCAT Ryos MK Glow: always reports core events
[ 10944.760] (**) Option "Device" "/dev/input/event25"
[ 10944.760] (**) Option "_source" "_driver/libinput"
[ 10944.760] (II) libinput: ROCCAT ROCCAT Ryos MK Glow: is a virtual subdevice
[ 10944.760] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:01.3/0000:03:00.0/usb1/1-2/1-2:1.1/0003:1E7D:31CE.0005/input/input31/event25"
[ 10944.760] (II) XINPUT: Adding extended input device "ROCCAT ROCCAT Ryos MK Glow" (type: KEYBOARD, id 13)
[ 10944.760] (**) Option "xkb_layout" "de"
[ 10944.760] (**) Option "xkb_options" "terminate:ctrl_alt_bksp"
[ 10960.768] (II) event1  - Power Button: device removed
[ 10960.790] (II) event0  - Power Button: device removed
[ 10960.817] (II) event24 - ROCCAT ROCCAT Ryos MK Glow: device removed
[ 10960.844] (II) event28 - Full HD webcam: Full HD webcam: device removed
[ 10960.910] (II) event26 - Logitech MX Master 2S: device removed
[ 10960.937] (II) event25 - ROCCAT ROCCAT Ryos MK Glow: device removed
[ 10961.318] (II) UnloadModule: "libinput"
[ 10961.318] (II) UnloadModule: "libinput"
[ 10961.318] (II) UnloadModule: "libinput"
[ 10961.318] (II) UnloadModule: "libinput"
[ 10961.318] (II) UnloadModule: "libinput"
[ 10961.318] (II) UnloadModule: "libinput"
[ 10961.318] (II) UnloadModule: "libinput"
[ 10961.318] (II) UnloadModule: "libinput"
[ 10961.318] (WW) NVIDIA(G0): Failed to set the display configuration
[ 10961.318] (WW) NVIDIA(G0):  - Setting a mode on head 0 failed: Insufficient permissions
[ 10961.318] (WW) NVIDIA(G0):  - Setting a mode on head 1 failed: Insufficient permissions
[ 10961.318] (WW) NVIDIA(G0):  - Setting a mode on head 2 failed: Insufficient permissions
[ 10961.318] (WW) NVIDIA(G0):  - Setting a mode on head 3 failed: Insufficient permissions
[ 10961.329] (II) NVIDIA(GPU-0): Deleting GPU-0
[ 10961.329] (II) NVIDIA(GPU-1): Renaming GPU-1 to GPU-0
[ 10961.329] (II) NVIDIA(GPU-0): Deleting GPU-0
[ 10961.329] (II) Server terminated successfully (0). Closing log file.

or i can just split it up :man_shrugging:

Ok first thing is this:

file: /etc/X11/xorg.conf

This one will be loaded first and priorized over the file /etc/X11/xorg.conf.d/90-mhwd.conf. So delete the file completely, since you want to use 1050 to display and not GTX970. Then xorg should completely ignore it.

On the same file: /etc/X11/xorg.conf.d/90-mhwd.conf you need to adjuste this section to target exactly the GTX 1050 with a BusID (like GTX970 before):

Otherwise it autoselect it and set also

    Option "PrimaryGPU" "yes"

In this section.

Outputclass is not needed then.

Please do it and report back with the same command… but please just upload it somewhere else, since we don’t need everything, and post the link here you can do it for example like this:

<command> | curl -F'file=@-' https://0x0.st

:arrow_down:

for x in ${txt[@]}; do echo -e "\n---$x---\n$(cat $x)"; done | curl -F'file=@-' https://0x0.st

or just use pastebin or similiar…

If you have problems to post links, then post them as code…

2 Likes

is the file name what comes after the “/” in the url when accessing my file?

Yes it is the full path.