You are not logged in.

#1 2023-10-06 19:44:21

felipescotti
Member
Registered: 2023-04-22
Posts: 87

Help to setup multi-monitor with touchscreen

Hello,

I have been trying to setup 6 monitors on a virtual display using discrete and integrated GPU's at the same time.

Xorg is loading them automatically and it's running fine but it can be a bit buggy sometimes, I guess I that I will have to setup the xorg.conf further.

First, I'm trying to setup the touchscreen for 2 monitors following the wiki:

https://wiki.archlinux.org/title/Touchs … head_setup

But because the 2 monitors are identical I'm getting this return:

# xinput --map-to-output "ILITEK ILITEK-TP" HDMI3
Warning: There are multiple devices matching 'ILITEK ILITEK-TP'.
To ensure the correct one is selected, please use the device ID, or prefix the
device name with 'pointer:' or 'keyboard:' as appropriate.

# xinput --map-to-output 'id=17' HDMI1
unable to find device 'id=17'

# xinput --map-to-output 'ILITEK ILITEK-TP id=17' HDMI1
unable to find device 'ILITEK ILITEK-TP id=17'

# xinput --map-to-output touchscreen:'ILITEK ILITEK-TP' HDMI3
unable to find device 'touchscreen:ILITEK ILITEK-TP'

# xinput --map-to-output 'touchscreen:ILITEK ILITEK-TP' HDMI3
unable to find device 'touchscreen:ILITEK ILITEK-TP'

# xinput --map-to-output "ILITEK ILITEK-TP" "id=18" HDMI3
Warning: There are multiple devices matching 'ILITEK ILITEK-TP'.
To ensure the correct one is selected, please use the device ID, or prefix the
device name with 'pointer:' or 'keyboard:' as appropriate.

I'm not sure how to proceed:
https://man.archlinux.org/man/xinput.1:
"set-pointer device
    Switch device in core pointer. This option does nothing on X servers 1.5 and later."
or:
"create-master prefix [sendCore] [enable]
    Create a new pair of master devices on an XI2-enabled server with the given prefix. The server will create one master pointer named "prefix pointer" and one master keyboard named "prefix keyboard".
or:
https://wiki.archlinux.org/title/Xinput … properties

I managed to setup one of the monitors just disconnecting the second one, but obviously there's no way to set the second one this way.

Thanks!

Last edited by felipescotti (2025-11-14 14:22:00)

Offline

#2 2023-10-06 19:48:50

progandy
Member
Registered: 2012-05-17
Posts: 5,317

Re: Help to setup multi-monitor with touchscreen

You should simply give the ID without the id= prefix, then it should work:

xinput --map-to-output 17 HDMI1

| alias CUTF='LANG=en_XX.UTF-8@POSIX ' | alias ENGLISH='LANG=C.UTF-8 ' |

Offline

#3 2023-10-06 20:04:43

felipescotti
Member
Registered: 2023-04-22
Posts: 87

Re: Help to setup multi-monitor with touchscreen

progandy wrote:

You should simply give the ID without the id= prefix, then it should work:

xinput --map-to-output 17 HDMI1

Awesome! That worked for the touchscreens, thank you!

Offline

#4 2023-10-15 17:51:07

felipescotti
Member
Registered: 2023-04-22
Posts: 87

Re: Help to setup multi-monitor with touchscreen

I don't know exactly what I did, but after installing and uninstalling Lutris, Wine and Steam a few times in order to make a game from EA to work again I started to have issues to logout and login to KDE.

Info: I didn't managed to create the "xorg.conf" yet, than for now it still detecting the monitors automatically.

I also cannot find where the log for this errors are being generated:
They are not included on the logs from ".local/share/xorg/", /var/log/xorg.2.log nor "journal -b -1"

It starts when I logout from KDE and I can see this on BASH just after the normal logout info:

"xf86EnableIO: failed to enable I/O ports 0000-03ff (Operation not permitted)"
"MESA-LOADER: failed to open simpledrm: /usr/lib/dri/simpledrm_dri.so"
Fallowed by many warnings.

After that If I "startx" I will randomly get a small white window on the bash top corner that says:
"startkde: Could not start Plasma session." with an "ok" button that I didn't managed to click on it.
The only way I managed to go around is if I switch to a different tty and "startx" from there or "reboot"

I tried to reinstall:
libdrm
mesa
lib32-mesa
xf86-video-intel
vulkan-intel
lib32-vulkan-intel
libgl
lib32-libgl
nvidia
nvidia-utils
sudo pacman -S xf86-video-intel
xf86-video-fbdev
xf86-video-nouveau
Tried also to blacklist: sudo nano /etc/modprobe.d/nouveau_blacklist.conf

mkinitcpio.conf:

HOOKS=(base udev autodetect modconf keyboard keymap block filesystems fsck) #consolefont kms

xinitrc is default (end set to start from console):

#twm &
#xclock -geometry 50x50-1+1 &
#xterm -geometry 80x50+494+51 &
#xterm -geometry 80x20+494-0 &
#exec xterm -geometry 80x66+0+0 -name login
export DESKTOP_SESSION=plasma
exec startplasma-x11

Thanks!

Last edited by felipescotti (2023-10-15 18:22:33)

Offline

#5 2023-10-15 19:05:21

seth
Member
From: Won't reply 2 private help req
Registered: 2012-09-03
Posts: 76,074

Re: Help to setup multi-monitor with touchscreen

How is that related to your OP?

Get rid of every single xf86-video-* package, enable https://wiki.archlinux.org/title/NVIDIA … de_setting and in doubt add "initcall_blacklist=simpledrm_platform_driver_init" to the https://wiki.archlinux.org/title/Kernel_parameters and post your Xorg log, https://wiki.archlinux.org/title/Xorg#General and complete system journal for the boot:

sudo journalctl -b | curl -F 'file=@-' 0x0.st

Online

#6 2023-10-18 19:18:38

felipescotti
Member
Registered: 2023-04-22
Posts: 87

Re: Help to setup multi-monitor with touchscreen

seth wrote:

How is that related to your OP?

Hi, I believe that these errors are related with the fact I didn't setup the GPU driver display/screens/monitors properly. Am I supposed to open a new thread?

seth wrote:

Get rid of every single xf86-video-* package, enable https://wiki.archlinux.org/title/NVIDIA … de_setting and in doubt add "initcall_blacklist=simpledrm_platform_driver_init" to the https://wiki.archlinux.org/title/Kernel_parameters and post your Xorg log, https://wiki.archlinux.org/title/Xorg#General and complete system journal for the boot:

sudo journalctl -b | curl -F 'file=@-' 0x0.st

Done:

sudo pacman -R xf86-video-intel xf86-video-fbdev xf86-video-vesa xf86-video-nouveau

I had already an "nvidia_drm.modeset=1" on a file in "/etc/modeprobe.d" which wasn't working, probably because I didn't proper set the file name on "mkinitcpio".

Now instead I set:
"initrd=\initramfs-linux.img root=/dev/nvme0n1p2 rw initcall_blacklist=simpledrm_platform_driver_init nvidia nvidia_modeset nvidia_uvm nvidia_drm nvidia_drm.modeset=1"

$ sudo cat /sys/module/nvidia_drm/parameters/modeset
Y 

and I'm not getting the "MESA-LOADER: failed to open simpledrm: /usr/lib/dri/simpledrm_dri.so" anymore.
Though I'm still having the multiple keysym warnings from xkbcomp when logoff from kde (which are apparently not included on the logs) and the ramdom small white window on the bash top corner when startx after a logoff from kde.

[    88.218] 
X.Org X Server 1.21.1.8
X Protocol Version 11, Revision 0
[    88.230] Current Operating System: Linux 6.5.7-arch1-1 #1 SMP PREEMPT_DYNAMIC Tue, 10 Oct 2023 21:10:21 +0000 x86_64
[    88.230] Kernel command line: initrd=\initramfs-linux.img root=/dev/nvme0n1p2 rw initcall_blacklist=simpledrm_platform_driver_init nvidia nvidia_modeset nvidia_uvm nvidia_drm nvidia_drm.modeset=1 splash
[    88.238]  
[    88.242] Current version of pixman: 0.42.2
[    88.250] 	Before reporting problems, check http://wiki.x.org
	to make sure that you have the latest version.
[    88.250] Markers: (--) probed, (**) from config file, (==) default setting,
	(++) from command line, (!!) notice, (II) informational,
	(WW) warning, (EE) error, (NI) not implemented, (??) unknown.
[    88.266] (==) Log file: "/home/User/.local/share/xorg/Xorg.0.log", Time: Wed Oct 18 21:03:40 2023
[    88.270] (==) Using system config directory "/usr/share/X11/xorg.conf.d"
[    88.270] (==) No Layout section.  Using the first Screen section.
[    88.270] (==) No screen section available. Using defaults.
[    88.270] (**) |-->Screen "Default Screen Section" (0)
[    88.270] (**) |   |-->Monitor "<default monitor>"
[    88.271] (==) No monitor specified for screen "Default Screen Section".
	Using a default monitor configuration.
[    88.271] (==) Automatically adding devices
[    88.271] (==) Automatically enabling devices
[    88.271] (==) Automatically adding GPU devices
[    88.271] (==) Automatically binding GPU devices
[    88.271] (==) Max clients allowed: 256, resource mask: 0x1fffff
[    88.271] (WW) The directory "/usr/share/fonts/misc" does not exist.
[    88.271] 	Entry deleted from font path.
[    88.271] (WW) The directory "/usr/share/fonts/OTF" does not exist.
[    88.271] 	Entry deleted from font path.
[    88.271] (WW) The directory "/usr/share/fonts/Type1" does not exist.
[    88.271] 	Entry deleted from font path.
[    88.271] (==) FontPath set to:
	/usr/share/fonts/TTF,
	/usr/share/fonts/100dpi,
	/usr/share/fonts/75dpi
[    88.271] (==) ModulePath set to "/usr/lib/xorg/modules"
[    88.271] (II) The server relies on udev to provide the list of input devices.
	If no devices become available, reconfigure udev or disable AutoAddDevices.
[    88.271] (II) Module ABI versions:
[    88.271] 	X.Org ANSI C Emulation: 0.4
[    88.271] 	X.Org Video Driver: 25.2
[    88.271] 	X.Org XInput driver : 24.4
[    88.271] 	X.Org Server Extension : 10.0
[    88.271] (++) using VT number 1

[    88.272] (II) systemd-logind: took control of session /org/freedesktop/login1/session/_31
[    88.273] (II) xfree86: Adding drm device (/dev/dri/card1)
[    88.273] (II) Platform probe for /sys/devices/pci0000:00/0000:00:01.0/0000:01:00.0/drm/card1
[    88.273] (II) systemd-logind: got fd for /dev/dri/card1 226:1 fd 13 paused 0
[    88.274] (II) xfree86: Adding drm device (/dev/dri/card0)
[    88.274] (II) Platform probe for /sys/devices/pci0000:00/0000:00:02.0/drm/card0
[    88.274] (II) systemd-logind: got fd for /dev/dri/card0 226:0 fd 14 paused 0
[    88.275] (**) OutputClass "nvidia" ModulePath extended to "/usr/lib/nvidia/xorg,/usr/lib/xorg/modules,/usr/lib/xorg/modules"
[    88.275] (--) PCI: (0@0:2:0) 8086:3e98:1462:7b17 rev 2, Mem @ 0x2d000000/16777216, 0x30000000/268435456, I/O @ 0x00004000/64
[    88.275] (--) PCI:*(1@0:0:0) 10de:1e81:1458:3ff9 rev 161, Mem @ 0x2e000000/16777216, 0x40000000/268435456, 0x50000000/33554432, I/O @ 0x00003000/128, BIOS @ 0x????????/131072
[    88.275] (WW) Open ACPI failed (/var/run/acpid.socket) (No such file or directory)
[    88.275] (II) LoadModule: "glx"
[    88.275] (II) Loading /usr/lib/xorg/modules/extensions/libglx.so
[    88.276] (II) Module glx: vendor="X.Org Foundation"
[    88.276] 	compiled for 1.21.1.8, module version = 1.0.0
[    88.276] 	ABI class: X.Org Server Extension, version 10.0
[    88.276] (II) Applying OutputClass "nvidia" to /dev/dri/card1
[    88.276] 	loading driver: nvidia
[    88.276] (==) Matched nvidia as autoconfigured driver 0
[    88.276] (==) Matched nouveau as autoconfigured driver 1
[    88.276] (==) Matched nv as autoconfigured driver 2
[    88.276] (==) Matched intel as autoconfigured driver 3
[    88.276] (==) Matched modesetting as autoconfigured driver 4
[    88.276] (==) Matched fbdev as autoconfigured driver 5
[    88.276] (==) Matched vesa as autoconfigured driver 6
[    88.276] (==) Assigned the driver to the xf86ConfigLayout
[    88.276] (II) LoadModule: "nvidia"
[    88.276] (II) Loading /usr/lib/xorg/modules/drivers/nvidia_drv.so
[    88.276] (II) Module nvidia: vendor="NVIDIA Corporation"
[    88.276] 	compiled for 1.6.99.901, module version = 1.0.0
[    88.276] 	Module class: X.Org Video Driver
[    88.276] (II) LoadModule: "nouveau"
[    88.277] (WW) Warning, couldn't open module nouveau
[    88.277] (EE) Failed to load module "nouveau" (module does not exist, 0)
[    88.277] (II) LoadModule: "nv"
[    88.277] (WW) Warning, couldn't open module nv
[    88.277] (EE) Failed to load module "nv" (module does not exist, 0)
[    88.277] (II) LoadModule: "intel"
[    88.277] (WW) Warning, couldn't open module intel
[    88.277] (EE) Failed to load module "intel" (module does not exist, 0)
[    88.277] (II) LoadModule: "modesetting"
[    88.277] (II) Loading /usr/lib/xorg/modules/drivers/modesetting_drv.so
[    88.277] (II) Module modesetting: vendor="X.Org Foundation"
[    88.277] 	compiled for 1.21.1.8, module version = 1.21.1
[    88.277] 	Module class: X.Org Video Driver
[    88.277] 	ABI class: X.Org Video Driver, version 25.2
[    88.277] (II) LoadModule: "fbdev"
[    88.277] (WW) Warning, couldn't open module fbdev
[    88.277] (EE) Failed to load module "fbdev" (module does not exist, 0)
[    88.277] (II) LoadModule: "vesa"
[    88.277] (WW) Warning, couldn't open module vesa
[    88.277] (EE) Failed to load module "vesa" (module does not exist, 0)
[    88.277] (II) NVIDIA dlloader X Driver  535.113.01  Tue Sep 12 19:49:52 UTC 2023
[    88.277] (II) NVIDIA Unified Driver for all Supported NVIDIA GPUs
[    88.277] (II) modesetting: Driver for Modesetting Kernel Drivers: kms
[    88.277] (II) systemd-logind: releasing fd for 226:1
[    88.278] (II) Loading sub module "fb"
[    88.278] (II) LoadModule: "fb"
[    88.278] (II) Module "fb" already built-in
[    88.278] (II) Loading sub module "wfb"
[    88.278] (II) LoadModule: "wfb"
[    88.278] (II) Loading /usr/lib/xorg/modules/libwfb.so
[    88.278] (II) Module wfb: vendor="X.Org Foundation"
[    88.278] 	compiled for 1.21.1.8, module version = 1.0.0
[    88.278] 	ABI class: X.Org ANSI C Emulation, version 0.4
[    88.278] (WW) Falling back to old probe method for modesetting
[    88.278] (II) modeset(G0): using drv /dev/dri/card0
[    88.278] (WW) VGA arbiter: cannot open kernel arbiter, no multi-card support
[    88.278] (II) NVIDIA(0): Creating default Display subsection in Screen section
	"Default Screen Section" for depth/fbbpp 24/32
[    88.278] (==) NVIDIA(0): Depth 24, (==) framebuffer bpp 32
[    88.278] (==) NVIDIA(0): RGB weight 888
[    88.278] (==) NVIDIA(0): Default visual is TrueColor
[    88.278] (==) NVIDIA(0): Using gamma correction (1.0, 1.0, 1.0)
[    88.278] (II) Applying OutputClass "nvidia" options to /dev/dri/card1
[    88.278] (**) NVIDIA(0): Option "AllowEmptyInitialConfiguration"
[    88.278] (**) NVIDIA(0): Enabling 2D acceleration
[    88.278] (II) Loading sub module "glxserver_nvidia"
[    88.278] (II) LoadModule: "glxserver_nvidia"
[    88.278] (II) Loading /usr/lib/nvidia/xorg/libglxserver_nvidia.so
[    88.282] (II) Module glxserver_nvidia: vendor="NVIDIA Corporation"
[    88.282] 	compiled for 1.6.99.901, module version = 1.0.0
[    88.282] 	Module class: X.Org Server Extension
[    88.282] (II) NVIDIA GLX Module  535.113.01  Tue Sep 12 19:51:54 UTC 2023
[    88.282] (II) NVIDIA: The X server supports PRIME Render Offload.
[    88.282] (--) NVIDIA(0): Valid display device(s) on GPU-0 at PCI:1:0:0
[    88.282] (--) NVIDIA(0):     DFP-0
[    88.282] (--) NVIDIA(0):     DFP-1
[    88.282] (--) NVIDIA(0):     DFP-2
[    88.282] (--) NVIDIA(0):     DFP-3
[    88.282] (--) NVIDIA(0):     DFP-4 (boot)
[    88.282] (--) NVIDIA(0):     DFP-5
[    88.282] (--) NVIDIA(0):     DFP-6
[    88.283] (II) NVIDIA(0): NVIDIA GPU NVIDIA GeForce RTX 2080 SUPER (TU104-A) at
[    88.283] (II) NVIDIA(0):     PCI:1:0:0 (GPU-0)
[    88.283] (--) NVIDIA(0): Memory: 8388608 kBytes
[    88.283] (--) NVIDIA(0): VideoBIOS: 90.04.7a.80.55
[    88.283] (II) NVIDIA(0): Detected PCI Express Link width: 16X
[    88.283] (--) NVIDIA(GPU-0): DFP-0: disconnected
[    88.283] (--) NVIDIA(GPU-0): DFP-0: Internal DisplayPort
[    88.283] (--) NVIDIA(GPU-0): DFP-0: 2660.0 MHz maximum pixel clock
[    88.283] (--) NVIDIA(GPU-0): 
[    88.374] (--) NVIDIA(GPU-0): LG Electronics LG TV (DFP-1): connected
[    88.374] (--) NVIDIA(GPU-0): LG Electronics LG TV (DFP-1): Internal TMDS
[    88.374] (--) NVIDIA(GPU-0): LG Electronics LG TV (DFP-1): 300.0 MHz maximum pixel clock
[    88.374] (--) NVIDIA(GPU-0): 
[    88.417] (--) NVIDIA(GPU-0): AGO (DFP-2): connected
[    88.417] (--) NVIDIA(GPU-0): AGO (DFP-2): Internal TMDS
[    88.417] (--) NVIDIA(GPU-0): AGO (DFP-2): 600.0 MHz maximum pixel clock
[    88.417] (--) NVIDIA(GPU-0): 
[    88.417] (--) NVIDIA(GPU-0): DFP-3: disconnected
[    88.417] (--) NVIDIA(GPU-0): DFP-3: Internal DisplayPort
[    88.417] (--) NVIDIA(GPU-0): DFP-3: 2660.0 MHz maximum pixel clock
[    88.417] (--) NVIDIA(GPU-0): 
[    88.507] (--) NVIDIA(GPU-0): LG Electronics LG TV (DFP-4): connected
[    88.507] (--) NVIDIA(GPU-0): LG Electronics LG TV (DFP-4): Internal TMDS
[    88.507] (--) NVIDIA(GPU-0): LG Electronics LG TV (DFP-4): 300.0 MHz maximum pixel clock
[    88.507] (--) NVIDIA(GPU-0): 
[    88.507] (--) NVIDIA(GPU-0): DFP-5: disconnected
[    88.507] (--) NVIDIA(GPU-0): DFP-5: Internal DisplayPort
[    88.507] (--) NVIDIA(GPU-0): DFP-5: 2660.0 MHz maximum pixel clock
[    88.507] (--) NVIDIA(GPU-0): 
[    88.507] (--) NVIDIA(GPU-0): DFP-6: disconnected
[    88.507] (--) NVIDIA(GPU-0): DFP-6: Internal TMDS
[    88.507] (--) NVIDIA(GPU-0): DFP-6: 165.0 MHz maximum pixel clock
[    88.507] (--) NVIDIA(GPU-0): 
[    88.613] (==) NVIDIA(0): 
[    88.613] (==) NVIDIA(0): No modes were requested; the default mode "nvidia-auto-select"
[    88.613] (==) NVIDIA(0):     will be used as the requested mode.
[    88.613] (==) NVIDIA(0): 
[    88.614] (II) NVIDIA(0): Validated MetaModes:
[    88.614] (II) NVIDIA(0):    
[    88.614] (II) NVIDIA(0):     "DFP-4:nvidia-auto-select,DFP-1:nvidia-auto-select,DFP-2:nvidia-auto-select"
[    88.614] (II) NVIDIA(0): Virtual screen size determined to be 8704 x 2160
[    88.671] (--) NVIDIA(0): DPI set to (60, 60); computed from "UseEdidDpi" X config
[    88.671] (--) NVIDIA(0):     option
[    88.671] (==) modeset(G0): Depth 24, (==) framebuffer bpp 32
[    88.671] (==) modeset(G0): RGB weight 888
[    88.671] (==) modeset(G0): Default visual is TrueColor
[    88.671] (II) Loading sub module "glamoregl"
[    88.671] (II) LoadModule: "glamoregl"
[    88.671] (II) Loading /usr/lib/xorg/modules/libglamoregl.so
[    88.673] (II) Module glamoregl: vendor="X.Org Foundation"
[    88.673] 	compiled for 1.21.1.8, module version = 1.0.1
[    88.673] 	ABI class: X.Org ANSI C Emulation, version 0.4
[    88.697] (II) modeset(G0): glamor X acceleration enabled on Mesa Intel(R) UHD Graphics 630 (CFL GT2)
[    88.697] (II) modeset(G0): glamor initialized
[    88.724] (II) modeset(G0): Output HDMI-1-1 has no monitor section
[    88.758] (II) modeset(G0): Output HDMI-1-2 has no monitor section
[    89.158] (II) modeset(G0): Output DP-1-1 has no monitor section
[    89.193] (II) modeset(G0): Output HDMI-1-3 has no monitor section
[    89.221] (WW) EDID timing clock 148.50 exceeds claimed max 115MHz, fixing
[    89.221] (II) modeset(G0): EDID for output HDMI-1-1
[    89.221] (II) modeset(G0): Manufacturer: HSG  Model: 4e49  Serial#: 0
[    89.221] (II) modeset(G0): Year: 2016  Week: 30
[    89.221] (II) modeset(G0): EDID Version: 1.3
[    89.221] (II) modeset(G0): Digital Display Input
[    89.221] (II) modeset(G0): Max Image Size [cm]: horiz.: 34  vert.: 19
[    89.221] (II) modeset(G0): Gamma: 2.20
[    89.221] (II) modeset(G0): DPMS capabilities: StandBy Suspend Off
[    89.221] (II) modeset(G0): Supported color encodings: RGB 4:4:4 YCrCb 4:4:4 
[    89.221] (II) modeset(G0): First detailed timing is preferred mode
[    89.221] (II) modeset(G0): redX: 0.585 redY: 0.347   greenX: 0.334 greenY: 0.565
[    89.221] (II) modeset(G0): blueX: 0.164 blueY: 0.117   whiteX: 0.312 whiteY: 0.328
[    89.221] (II) modeset(G0): Supported established timings:
[    89.221] (II) modeset(G0): 720x400@70Hz
[    89.221] (II) modeset(G0): 640x480@60Hz
[    89.221] (II) modeset(G0): 640x480@67Hz
[    89.221] (II) modeset(G0): 640x480@72Hz
[    89.221] (II) modeset(G0): 640x480@75Hz
[    89.221] (II) modeset(G0): 800x600@56Hz
[    89.221] (II) modeset(G0): 800x600@60Hz
[    89.221] (II) modeset(G0): 800x600@72Hz
[    89.221] (II) modeset(G0): 800x600@75Hz
[    89.221] (II) modeset(G0): 832x624@75Hz
[    89.221] (II) modeset(G0): 1024x768@60Hz
[    89.221] (II) modeset(G0): 1024x768@70Hz
[    89.221] (II) modeset(G0): 1024x768@75Hz
[    89.221] (II) modeset(G0): Manufacturer's mask: 0
[    89.221] (II) modeset(G0): Supported standard timings:
[    89.221] (II) modeset(G0): #0: hsize: 1280  vsize 800  refresh: 60  vid: 129
[    89.221] (II) modeset(G0): #1: hsize: 1280  vsize 720  refresh: 60  vid: 49281
[    89.221] (II) modeset(G0): #2: hsize: 1024  vsize 768  refresh: 66  vid: 18017
[    89.221] (II) modeset(G0): Supported detailed timing:
[    89.221] (II) modeset(G0): clock: 85.5 MHz   Image Size:  344 x 193 mm
[    89.221] (II) modeset(G0): h_active: 1366  h_sync: 1436  h_sync_end 1579 h_blank_end 1792 h_border: 0
[    89.221] (II) modeset(G0): v_active: 768  v_sync: 771  v_sync_end 774 v_blanking: 798 v_border: 0
[    89.221] (II) modeset(G0): Serial No: 1234567890123
[    89.221] (II) modeset(G0): Ranges: V min: 56 V max: 75 Hz, H min: 30 H max: 61 kHz, PixClock max 149 MHz
[    89.221] (II) modeset(G0): Monitor name: HT161HNB
[    89.221] (II) modeset(G0): Supported detailed timing:
[    89.221] (II) modeset(G0): clock: 27.0 MHz   Image Size:  344 x 193 mm
[    89.221] (II) modeset(G0): h_active: 720  h_sync: 736  h_sync_end 798 h_blank_end 858 h_border: 0
[    89.221] (II) modeset(G0): v_active: 480  v_sync: 489  v_sync_end 495 v_blanking: 525 v_border: 0
[    89.221] (II) modeset(G0): Supported detailed timing:
[    89.221] (II) modeset(G0): clock: 74.2 MHz   Image Size:  344 x 193 mm
[    89.221] (II) modeset(G0): h_active: 1920  h_sync: 2008  h_sync_end 2052 h_blank_end 2200 h_border: 0
[    89.221] (II) modeset(G0): v_active: 540  v_sync: 542  v_sync_end 547 v_blanking: 562 v_border: 0
[    89.221] (II) modeset(G0): Supported detailed timing:
[    89.221] (II) modeset(G0): clock: 148.5 MHz   Image Size:  344 x 193 mm
[    89.221] (II) modeset(G0): h_active: 1920  h_sync: 2008  h_sync_end 2052 h_blank_end 2200 h_border: 0
[    89.221] (II) modeset(G0): v_active: 1080  v_sync: 1084  v_sync_end 1089 v_blanking: 1125 v_border: 0
[    89.221] (II) modeset(G0): Supported detailed timing:
[    89.221] (II) modeset(G0): clock: 74.2 MHz   Image Size:  344 x 193 mm
[    89.221] (II) modeset(G0): h_active: 1920  h_sync: 2448  h_sync_end 2492 h_blank_end 2640 h_border: 0
[    89.221] (II) modeset(G0): v_active: 540  v_sync: 542  v_sync_end 547 v_blanking: 562 v_border: 0
[    89.221] (II) modeset(G0): Supported detailed timing:
[    89.221] (II) modeset(G0): clock: 148.5 MHz   Image Size:  344 x 193 mm
[    89.221] (II) modeset(G0): h_active: 1920  h_sync: 2448  h_sync_end 2492 h_blank_end 2640 h_border: 0
[    89.221] (II) modeset(G0): v_active: 1080  v_sync: 1084  v_sync_end 1089 v_blanking: 1125 v_border: 0
[    89.221] (II) modeset(G0): Number of EDID sections to follow: 1
[    89.221] (II) modeset(G0): EDID (in hex):
[    89.221] (II) modeset(G0): 	00ffffffffffff002267494e00000000
[    89.221] (II) modeset(G0): 	1e1a010380221378eafb00955855902a
[    89.221] (II) modeset(G0): 	1e5054bfee00810081c0614601010101
[    89.221] (II) modeset(G0): 	010101010101662156aa51001e30468f
[    89.221] (II) modeset(G0): 	330058c11000001e000000ff00313233
[    89.221] (II) modeset(G0): 	34353637383930313233000000fd0038
[    89.221] (II) modeset(G0): 	4b1e3d0b000a202020202020000000fc
[    89.221] (II) modeset(G0): 	004854313631484e420a202020200160
[    89.221] (II) modeset(G0): 	020323f24b1f10141312160184050703
[    89.221] (II) modeset(G0): 	230907078301000067030c001000382d
[    89.221] (II) modeset(G0): 	e2004f8c0ad08a20e02d10103e960058
[    89.221] (II) modeset(G0): 	c110000018011d8018711c1620582c25
[    89.221] (II) modeset(G0): 	0058c11000009e023a801871382d4058
[    89.221] (II) modeset(G0): 	2c450058c11000001e011d80d0721c16
[    89.221] (II) modeset(G0): 	20102c258058c11000009e023a80d072
[    89.221] (II) modeset(G0): 	382d40102c458058c11000001e0000b5
[    89.221] (--) modeset(G0): HDMI max TMDS frequency 225000KHz
[    89.221] (II) modeset(G0): Printing probed modes for output HDMI-1-1
[    89.221] (II) modeset(G0): Modeline "1366x768"x59.8   85.50  1366 1436 1579 1792  768 771 774 798 +hsync +vsync (47.7 kHz eP)
[    89.221] (II) modeset(G0): Modeline "1920x1080"x60.0  148.50  1920 2008 2052 2200  1080 1084 1089 1125 +hsync +vsync (67.5 kHz e)
[    89.221] (II) modeset(G0): Modeline "1920x1080"x50.0  148.50  1920 2448 2492 2640  1080 1084 1089 1125 +hsync +vsync (56.2 kHz e)
[    89.221] (II) modeset(G0): Modeline "1920x1080"x59.9  148.35  1920 2008 2052 2200  1080 1084 1089 1125 +hsync +vsync (67.4 kHz e)
[    89.221] (II) modeset(G0): Modeline "1920x1080i"x60.0   74.25  1920 2008 2052 2200  1080 1084 1094 1125 interlace +hsync +vsync (33.8 kHz e)
[    89.221] (II) modeset(G0): Modeline "1920x1080i"x50.0   74.25  1920 2448 2492 2640  1080 1084 1094 1125 interlace +hsync +vsync (28.1 kHz e)
[    89.221] (II) modeset(G0): Modeline "1920x1080i"x59.9   74.18  1920 2008 2052 2200  1080 1084 1094 1125 interlace +hsync +vsync (33.7 kHz e)
[    89.221] (II) modeset(G0): Modeline "1280x800"x59.9   71.00  1280 1328 1360 1440  800 803 809 823 +hsync -vsync (49.3 kHz e)
[    89.221] (II) modeset(G0): Modeline "1280x720"x60.0   74.25  1280 1390 1430 1650  720 725 730 750 +hsync +vsync (45.0 kHz e)
[    89.221] (II) modeset(G0): Modeline "1280x720"x50.0   74.25  1280 1720 1760 1980  720 725 730 750 +hsync +vsync (37.5 kHz e)
[    89.221] (II) modeset(G0): Modeline "1280x720"x59.9   74.18  1280 1390 1430 1650  720 725 730 750 +hsync +vsync (45.0 kHz e)
[    89.221] (II) modeset(G0): Modeline "1024x768"x75.0   78.75  1024 1040 1136 1312  768 769 772 800 +hsync +vsync (60.0 kHz e)
[    89.221] (II) modeset(G0): Modeline "1024x768"x70.1   75.00  1024 1048 1184 1328  768 771 777 806 -hsync -vsync (56.5 kHz e)
[    89.221] (II) modeset(G0): Modeline "1024x768"x66.0   71.64  1024 1080 1192 1360  768 769 772 798 -hsync +vsync (52.7 kHz)
[    89.221] (II) modeset(G0): Modeline "1024x768"x60.0   65.00  1024 1048 1184 1344  768 771 777 806 -hsync -vsync (48.4 kHz e)
[    89.221] (II) modeset(G0): Modeline "832x624"x74.6   57.28  832 864 928 1152  624 625 628 667 -hsync -vsync (49.7 kHz e)
[    89.221] (II) modeset(G0): Modeline "800x600"x72.2   50.00  800 856 976 1040  600 637 643 666 +hsync +vsync (48.1 kHz e)
[    89.221] (II) modeset(G0): Modeline "800x600"x75.0   49.50  800 816 896 1056  600 601 604 625 +hsync +vsync (46.9 kHz e)
[    89.221] (II) modeset(G0): Modeline "800x600"x60.3   40.00  800 840 968 1056  600 601 605 628 +hsync +vsync (37.9 kHz e)
[    89.221] (II) modeset(G0): Modeline "800x600"x56.2   36.00  800 824 896 1024  600 601 603 625 +hsync +vsync (35.2 kHz e)
[    89.221] (II) modeset(G0): Modeline "720x576"x50.0   27.00  720 732 796 864  576 581 586 625 -hsync -vsync (31.2 kHz e)
[    89.221] (II) modeset(G0): Modeline "720x576i"x50.0   13.50  720 732 795 864  576 580 586 625 interlace -hsync -vsync (15.6 kHz e)
[    89.221] (II) modeset(G0): Modeline "720x480"x60.0   27.03  720 736 798 858  480 489 495 525 -hsync -vsync (31.5 kHz e)
[    89.221] (II) modeset(G0): Modeline "720x480"x59.9   27.00  720 736 798 858  480 489 495 525 -hsync -vsync (31.5 kHz e)
[    89.221] (II) modeset(G0): Modeline "720x480i"x60.0   13.51  720 739 801 858  480 488 494 525 interlace -hsync -vsync (15.8 kHz e)
[    89.221] (II) modeset(G0): Modeline "720x480i"x59.9   13.50  720 739 801 858  480 488 494 525 interlace -hsync -vsync (15.7 kHz e)
[    89.221] (II) modeset(G0): Modeline "640x480"x75.0   31.50  640 656 720 840  480 481 484 500 -hsync -vsync (37.5 kHz e)
[    89.221] (II) modeset(G0): Modeline "640x480"x72.8   31.50  640 664 704 832  480 489 492 520 -hsync -vsync (37.9 kHz e)
[    89.221] (II) modeset(G0): Modeline "640x480"x66.7   30.24  640 704 768 864  480 483 486 525 -hsync -vsync (35.0 kHz e)
[    89.221] (II) modeset(G0): Modeline "640x480"x60.0   25.20  640 656 752 800  480 490 492 525 -hsync -vsync (31.5 kHz e)
[    89.221] (II) modeset(G0): Modeline "640x480"x59.9   25.18  640 656 752 800  480 490 492 525 -hsync -vsync (31.5 kHz e)
[    89.221] (II) modeset(G0): Modeline "720x400"x70.1   28.32  720 738 846 900  400 412 414 449 -hsync +vsync (31.5 kHz e)
[    89.254] (II) modeset(G0): EDID for output HDMI-1-2
[    89.655] (II) modeset(G0): EDID for output DP-1-1
[    89.690] (WW) EDID timing clock 148.50 exceeds claimed max 115MHz, fixing
[    89.690] (II) modeset(G0): EDID for output HDMI-1-3
[    89.690] (II) modeset(G0): Manufacturer: HSG  Model: 4e49  Serial#: 0
[    89.690] (II) modeset(G0): Year: 2016  Week: 30
[    89.690] (II) modeset(G0): EDID Version: 1.3
[    89.690] (II) modeset(G0): Digital Display Input
[    89.690] (II) modeset(G0): Max Image Size [cm]: horiz.: 34  vert.: 19
[    89.690] (II) modeset(G0): Gamma: 2.20
[    89.690] (II) modeset(G0): DPMS capabilities: StandBy Suspend Off
[    89.690] (II) modeset(G0): Supported color encodings: RGB 4:4:4 YCrCb 4:4:4 
[    89.690] (II) modeset(G0): First detailed timing is preferred mode
[    89.690] (II) modeset(G0): redX: 0.585 redY: 0.347   greenX: 0.334 greenY: 0.565
[    89.690] (II) modeset(G0): blueX: 0.164 blueY: 0.117   whiteX: 0.312 whiteY: 0.328
[    89.690] (II) modeset(G0): Supported established timings:
[    89.690] (II) modeset(G0): 720x400@70Hz
[    89.690] (II) modeset(G0): 640x480@60Hz
[    89.690] (II) modeset(G0): 640x480@67Hz
[    89.690] (II) modeset(G0): 640x480@72Hz
[    89.690] (II) modeset(G0): 640x480@75Hz
[    89.690] (II) modeset(G0): 800x600@56Hz
[    89.690] (II) modeset(G0): 800x600@60Hz
[    89.690] (II) modeset(G0): 800x600@72Hz
[    89.690] (II) modeset(G0): 800x600@75Hz
[    89.690] (II) modeset(G0): 832x624@75Hz
[    89.690] (II) modeset(G0): 1024x768@60Hz
[    89.690] (II) modeset(G0): 1024x768@70Hz
[    89.690] (II) modeset(G0): 1024x768@75Hz
[    89.690] (II) modeset(G0): Manufacturer's mask: 0
[    89.690] (II) modeset(G0): Supported standard timings:
[    89.690] (II) modeset(G0): #0: hsize: 1280  vsize 800  refresh: 60  vid: 129
[    89.690] (II) modeset(G0): #1: hsize: 1280  vsize 720  refresh: 60  vid: 49281
[    89.690] (II) modeset(G0): #2: hsize: 1024  vsize 768  refresh: 66  vid: 18017
[    89.690] (II) modeset(G0): Supported detailed timing:
[    89.690] (II) modeset(G0): clock: 85.5 MHz   Image Size:  344 x 193 mm
[    89.690] (II) modeset(G0): h_active: 1366  h_sync: 1436  h_sync_end 1579 h_blank_end 1792 h_border: 0
[    89.690] (II) modeset(G0): v_active: 768  v_sync: 771  v_sync_end 774 v_blanking: 798 v_border: 0
[    89.690] (II) modeset(G0): Serial No: 1234567890123
[    89.690] (II) modeset(G0): Ranges: V min: 56 V max: 75 Hz, H min: 30 H max: 61 kHz, PixClock max 149 MHz
[    89.690] (II) modeset(G0): Monitor name: HT161HNB
[    89.690] (II) modeset(G0): Supported detailed timing:
[    89.690] (II) modeset(G0): clock: 27.0 MHz   Image Size:  344 x 193 mm
[    89.690] (II) modeset(G0): h_active: 720  h_sync: 736  h_sync_end 798 h_blank_end 858 h_border: 0
[    89.690] (II) modeset(G0): v_active: 480  v_sync: 489  v_sync_end 495 v_blanking: 525 v_border: 0
[    89.690] (II) modeset(G0): Supported detailed timing:
[    89.690] (II) modeset(G0): clock: 74.2 MHz   Image Size:  344 x 193 mm
[    89.690] (II) modeset(G0): h_active: 1920  h_sync: 2008  h_sync_end 2052 h_blank_end 2200 h_border: 0
[    89.690] (II) modeset(G0): v_active: 540  v_sync: 542  v_sync_end 547 v_blanking: 562 v_border: 0
[    89.690] (II) modeset(G0): Supported detailed timing:
[    89.690] (II) modeset(G0): clock: 148.5 MHz   Image Size:  344 x 193 mm
[    89.690] (II) modeset(G0): h_active: 1920  h_sync: 2008  h_sync_end 2052 h_blank_end 2200 h_border: 0
[    89.690] (II) modeset(G0): v_active: 1080  v_sync: 1084  v_sync_end 1089 v_blanking: 1125 v_border: 0
[    89.690] (II) modeset(G0): Supported detailed timing:
[    89.690] (II) modeset(G0): clock: 74.2 MHz   Image Size:  344 x 193 mm
[    89.690] (II) modeset(G0): h_active: 1920  h_sync: 2448  h_sync_end 2492 h_blank_end 2640 h_border: 0
[    89.690] (II) modeset(G0): v_active: 540  v_sync: 542  v_sync_end 547 v_blanking: 562 v_border: 0
[    89.690] (II) modeset(G0): Supported detailed timing:
[    89.690] (II) modeset(G0): clock: 148.5 MHz   Image Size:  344 x 193 mm
[    89.690] (II) modeset(G0): h_active: 1920  h_sync: 2448  h_sync_end 2492 h_blank_end 2640 h_border: 0
[    89.690] (II) modeset(G0): v_active: 1080  v_sync: 1084  v_sync_end 1089 v_blanking: 1125 v_border: 0
[    89.690] (II) modeset(G0): Number of EDID sections to follow: 1
[    89.690] (II) modeset(G0): EDID (in hex):
[    89.690] (II) modeset(G0): 	00ffffffffffff002267494e00000000
[    89.690] (II) modeset(G0): 	1e1a010380221378eafb00955855902a
[    89.690] (II) modeset(G0): 	1e5054bfee00810081c0614601010101
[    89.690] (II) modeset(G0): 	010101010101662156aa51001e30468f
[    89.690] (II) modeset(G0): 	330058c11000001e000000ff00313233
[    89.690] (II) modeset(G0): 	34353637383930313233000000fd0038
[    89.690] (II) modeset(G0): 	4b1e3d0b000a202020202020000000fc
[    89.690] (II) modeset(G0): 	004854313631484e420a202020200160
[    89.690] (II) modeset(G0): 	020323f24b1f10141312160184050703
[    89.690] (II) modeset(G0): 	230907078301000067030c001000382d
[    89.690] (II) modeset(G0): 	e2004f8c0ad08a20e02d10103e960058
[    89.690] (II) modeset(G0): 	c110000018011d8018711c1620582c25
[    89.690] (II) modeset(G0): 	0058c11000009e023a801871382d4058
[    89.690] (II) modeset(G0): 	2c450058c11000001e011d80d0721c16
[    89.690] (II) modeset(G0): 	20102c258058c11000009e023a80d072
[    89.690] (II) modeset(G0): 	382d40102c458058c11000001e0000b5
[    89.690] (--) modeset(G0): HDMI max TMDS frequency 225000KHz
[    89.690] (II) modeset(G0): Printing probed modes for output HDMI-1-3
[    89.690] (II) modeset(G0): Modeline "1366x768"x59.8   85.50  1366 1436 1579 1792  768 771 774 798 +hsync +vsync (47.7 kHz eP)
[    89.690] (II) modeset(G0): Modeline "1920x1080"x60.0  148.50  1920 2008 2052 2200  1080 1084 1089 1125 +hsync +vsync (67.5 kHz e)
[    89.690] (II) modeset(G0): Modeline "1920x1080"x50.0  148.50  1920 2448 2492 2640  1080 1084 1089 1125 +hsync +vsync (56.2 kHz e)
[    89.690] (II) modeset(G0): Modeline "1920x1080"x59.9  148.35  1920 2008 2052 2200  1080 1084 1089 1125 +hsync +vsync (67.4 kHz e)
[    89.690] (II) modeset(G0): Modeline "1920x1080i"x60.0   74.25  1920 2008 2052 2200  1080 1084 1094 1125 interlace +hsync +vsync (33.8 kHz e)
[    89.690] (II) modeset(G0): Modeline "1920x1080i"x50.0   74.25  1920 2448 2492 2640  1080 1084 1094 1125 interlace +hsync +vsync (28.1 kHz e)
[    89.690] (II) modeset(G0): Modeline "1920x1080i"x59.9   74.18  1920 2008 2052 2200  1080 1084 1094 1125 interlace +hsync +vsync (33.7 kHz e)
[    89.690] (II) modeset(G0): Modeline "1280x800"x59.9   71.00  1280 1328 1360 1440  800 803 809 823 +hsync -vsync (49.3 kHz e)
[    89.690] (II) modeset(G0): Modeline "1280x720"x60.0   74.25  1280 1390 1430 1650  720 725 730 750 +hsync +vsync (45.0 kHz e)
[    89.690] (II) modeset(G0): Modeline "1280x720"x50.0   74.25  1280 1720 1760 1980  720 725 730 750 +hsync +vsync (37.5 kHz e)
[    89.690] (II) modeset(G0): Modeline "1280x720"x59.9   74.18  1280 1390 1430 1650  720 725 730 750 +hsync +vsync (45.0 kHz e)
[    89.690] (II) modeset(G0): Modeline "1024x768"x75.0   78.75  1024 1040 1136 1312  768 769 772 800 +hsync +vsync (60.0 kHz e)
[    89.690] (II) modeset(G0): Modeline "1024x768"x70.1   75.00  1024 1048 1184 1328  768 771 777 806 -hsync -vsync (56.5 kHz e)
[    89.690] (II) modeset(G0): Modeline "1024x768"x66.0   71.64  1024 1080 1192 1360  768 769 772 798 -hsync +vsync (52.7 kHz)
[    89.690] (II) modeset(G0): Modeline "1024x768"x60.0   65.00  1024 1048 1184 1344  768 771 777 806 -hsync -vsync (48.4 kHz e)
[    89.690] (II) modeset(G0): Modeline "832x624"x74.6   57.28  832 864 928 1152  624 625 628 667 -hsync -vsync (49.7 kHz e)
[    89.690] (II) modeset(G0): Modeline "800x600"x72.2   50.00  800 856 976 1040  600 637 643 666 +hsync +vsync (48.1 kHz e)
[    89.690] (II) modeset(G0): Modeline "800x600"x75.0   49.50  800 816 896 1056  600 601 604 625 +hsync +vsync (46.9 kHz e)
[    89.690] (II) modeset(G0): Modeline "800x600"x60.3   40.00  800 840 968 1056  600 601 605 628 +hsync +vsync (37.9 kHz e)
[    89.690] (II) modeset(G0): Modeline "800x600"x56.2   36.00  800 824 896 1024  600 601 603 625 +hsync +vsync (35.2 kHz e)
[    89.690] (II) modeset(G0): Modeline "720x576"x50.0   27.00  720 732 796 864  576 581 586 625 -hsync -vsync (31.2 kHz e)
[    89.690] (II) modeset(G0): Modeline "720x576i"x50.0   13.50  720 732 795 864  576 580 586 625 interlace -hsync -vsync (15.6 kHz e)
[    89.690] (II) modeset(G0): Modeline "720x480"x60.0   27.03  720 736 798 858  480 489 495 525 -hsync -vsync (31.5 kHz e)
[    89.690] (II) modeset(G0): Modeline "720x480"x59.9   27.00  720 736 798 858  480 489 495 525 -hsync -vsync (31.5 kHz e)
[    89.690] (II) modeset(G0): Modeline "720x480i"x60.0   13.51  720 739 801 858  480 488 494 525 interlace -hsync -vsync (15.8 kHz e)
[    89.690] (II) modeset(G0): Modeline "720x480i"x59.9   13.50  720 739 801 858  480 488 494 525 interlace -hsync -vsync (15.7 kHz e)
[    89.690] (II) modeset(G0): Modeline "640x480"x75.0   31.50  640 656 720 840  480 481 484 500 -hsync -vsync (37.5 kHz e)
[    89.690] (II) modeset(G0): Modeline "640x480"x72.8   31.50  640 664 704 832  480 489 492 520 -hsync -vsync (37.9 kHz e)
[    89.690] (II) modeset(G0): Modeline "640x480"x66.7   30.24  640 704 768 864  480 483 486 525 -hsync -vsync (35.0 kHz e)
[    89.690] (II) modeset(G0): Modeline "640x480"x60.0   25.20  640 656 752 800  480 490 492 525 -hsync -vsync (31.5 kHz e)
[    89.690] (II) modeset(G0): Modeline "640x480"x59.9   25.18  640 656 752 800  480 490 492 525 -hsync -vsync (31.5 kHz e)
[    89.690] (II) modeset(G0): Modeline "720x400"x70.1   28.32  720 738 846 900  400 412 414 449 -hsync +vsync (31.5 kHz e)
[    89.690] (==) modeset(G0): Using gamma correction (1.0, 1.0, 1.0)
[    89.690] (==) modeset(G0): DPI set to (96, 96)
[    89.690] (II) Loading sub module "fb"
[    89.690] (II) LoadModule: "fb"
[    89.690] (II) Module "fb" already built-in
[    89.690] (WW) NVIDIA: Failed to bind sideband socket to
[    89.690] (WW) NVIDIA:     '/var/run/nvidia-xdriver-04923a9a' Permission denied
[    89.690] (II) NVIDIA: Reserving 24576.00 MB of virtual memory for indirect memory
[    89.690] (II) NVIDIA:     access.
[    89.693] (II) NVIDIA(0): ACPI: failed to connect to the ACPI event daemon; the daemon
[    89.693] (II) NVIDIA(0):     may not be running or the "AcpidSocketPath" X
[    89.693] (II) NVIDIA(0):     configuration option may not be set correctly.  When the
[    89.693] (II) NVIDIA(0):     ACPI event daemon is available, the NVIDIA X driver will
[    89.693] (II) NVIDIA(0):     try to use it to receive ACPI event notifications.  For
[    89.693] (II) NVIDIA(0):     details, please see the "ConnectToAcpid" and
[    89.693] (II) NVIDIA(0):     "AcpidSocketPath" X configuration options in Appendix B: X
[    89.693] (II) NVIDIA(0):     Config Options in the README.
[    89.711] (II) NVIDIA(0): Setting mode "DFP-4:nvidia-auto-select,DFP-1:nvidia-auto-select,DFP-2:nvidia-auto-select"
[    89.764] (==) NVIDIA(0): Disabling shared memory pixmaps
[    89.764] (==) NVIDIA(0): Backing store enabled
[    89.764] (==) NVIDIA(0): Silken mouse enabled
[    89.764] (==) NVIDIA(0): DPMS enabled
[    89.764] (II) Loading sub module "dri2"
[    89.764] (II) LoadModule: "dri2"
[    89.764] (II) Module "dri2" already built-in
[    89.764] (II) NVIDIA(0): [DRI2] Setup complete
[    89.764] (II) NVIDIA(0): [DRI2]   VDPAU driver: nvidia
[    89.769] (==) modeset(G0): Backing store enabled
[    89.769] (==) modeset(G0): Silken mouse enabled
[    90.065] (II) modeset(G0): Initializing kms color map for depth 24, 8 bpc.
[    90.065] (==) modeset(G0): DPMS enabled
[    90.065] (II) modeset(G0): [DRI2] Setup complete
[    90.065] (II) modeset(G0): [DRI2]   DRI driver: iris
[    90.065] (II) modeset(G0): [DRI2]   VDPAU driver: va_gl
[    90.065] (II) modeset(G0): Disable reverse prime offload mode for i915.
[    90.065] (II) Initializing extension Generic Event Extension
[    90.066] (II) Initializing extension SHAPE
[    90.066] (II) Initializing extension MIT-SHM
[    90.066] (II) Initializing extension XInputExtension
[    90.066] (II) Initializing extension XTEST
[    90.066] (II) Initializing extension BIG-REQUESTS
[    90.066] (II) Initializing extension SYNC
[    90.066] (II) Initializing extension XKEYBOARD
[    90.066] (II) Initializing extension XC-MISC
[    90.066] (II) Initializing extension SECURITY
[    90.066] (II) Initializing extension XFIXES
[    90.066] (II) Initializing extension RENDER
[    90.066] (II) Initializing extension RANDR
[    90.066] (II) Initializing extension COMPOSITE
[    90.066] (II) Initializing extension DAMAGE
[    90.066] (II) Initializing extension MIT-SCREEN-SAVER
[    90.066] (II) Initializing extension DOUBLE-BUFFER
[    90.066] (II) Initializing extension RECORD
[    90.066] (II) Initializing extension DPMS
[    90.067] (II) Initializing extension Present
[    90.067] (II) Initializing extension DRI3
[    90.067] (II) Initializing extension X-Resource
[    90.067] (II) Initializing extension XVideo
[    90.067] (II) Initializing extension XVideo-MotionCompensation
[    90.067] (II) Initializing extension GLX
[    90.067] (II) Initializing extension GLX
[    90.067] (II) Indirect GLX disabled.
[    90.067] (II) GLX: Another vendor is already registered for screen 0
[    90.067] (II) Initializing extension XFree86-VidModeExtension
[    90.067] (II) Initializing extension XFree86-DGA
[    90.067] (II) Initializing extension XFree86-DRI
[    90.067] (II) Initializing extension DRI2
[    90.067] (II) Initializing extension NV-GLX
[    90.067] (II) Initializing extension NV-CONTROL
[    90.067] (II) Initializing extension XINERAMA
[    90.171] (II) modeset(G0): Damage tracking initialized
[    90.217] (II) config/udev: Adding input device Power Button (/dev/input/event2)
[    90.218] (**) Power Button: Applying InputClass "evdev keyboard catchall"
[    90.218] (**) Power Button: Applying InputClass "libinput keyboard catchall"
[    90.218] (II) LoadModule: "libinput"
[    90.218] (II) Loading /usr/lib/xorg/modules/input/libinput_drv.so
[    90.218] (II) Module libinput: vendor="X.Org Foundation"
[    90.218] 	compiled for 1.21.1.8, module version = 1.4.0
[    90.218] 	Module class: X.Org XInput Driver
[    90.218] 	ABI class: X.Org XInput driver, version 24.4
[    90.218] (II) Using input driver 'libinput' for 'Power Button'
[    90.219] (II) systemd-logind: got fd for /dev/input/event2 13:66 fd 46 paused 0
[    90.219] (**) Power Button: always reports core events
[    90.219] (**) Option "Device" "/dev/input/event2"
[    90.220] (II) event2  - Power Button: is tagged by udev as: Keyboard
[    90.220] (II) event2  - Power Button: device is a keyboard
[    90.220] (II) event2  - Power Button: device removed
[    90.220] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/LNXPWRBN:00/input/input2/event2"
[    90.220] (II) XINPUT: Adding extended input device "Power Button" (type: KEYBOARD, id 6)
[    90.220] (II) event2  - Power Button: is tagged by udev as: Keyboard
[    90.220] (II) event2  - Power Button: device is a keyboard
[    90.221] (II) config/udev: Adding input device Video Bus (/dev/input/event3)
[    90.221] (**) Video Bus: Applying InputClass "evdev keyboard catchall"
[    90.221] (**) Video Bus: Applying InputClass "libinput keyboard catchall"
[    90.221] (II) Using input driver 'libinput' for 'Video Bus'
[    90.221] (II) systemd-logind: got fd for /dev/input/event3 13:67 fd 49 paused 0
[    90.221] (**) Video Bus: always reports core events
[    90.221] (**) Option "Device" "/dev/input/event3"
[    90.222] (II) event3  - Video Bus: is tagged by udev as: Keyboard
[    90.222] (II) event3  - Video Bus: device is a keyboard
[    90.222] (II) event3  - Video Bus: device removed
[    90.222] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/LNXVIDEO:00/input/input3/event3"
[    90.222] (II) XINPUT: Adding extended input device "Video Bus" (type: KEYBOARD, id 7)
[    90.222] (II) event3  - Video Bus: is tagged by udev as: Keyboard
[    90.222] (II) event3  - Video Bus: device is a keyboard
[    90.223] (II) config/udev: Adding input device Power Button (/dev/input/event1)
[    90.223] (**) Power Button: Applying InputClass "evdev keyboard catchall"
[    90.223] (**) Power Button: Applying InputClass "libinput keyboard catchall"
[    90.223] (II) Using input driver 'libinput' for 'Power Button'
[    90.223] (II) systemd-logind: got fd for /dev/input/event1 13:65 fd 50 paused 0
[    90.223] (**) Power Button: always reports core events
[    90.223] (**) Option "Device" "/dev/input/event1"
[    90.223] (II) event1  - Power Button: is tagged by udev as: Keyboard
[    90.223] (II) event1  - Power Button: device is a keyboard
[    90.223] (II) event1  - Power Button: device removed
[    90.223] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0C:00/input/input1/event1"
[    90.223] (II) XINPUT: Adding extended input device "Power Button" (type: KEYBOARD, id 8)
[    90.224] (II) event1  - Power Button: is tagged by udev as: Keyboard
[    90.224] (II) event1  - Power Button: device is a keyboard
[    90.224] (II) config/udev: Adding input device Sleep Button (/dev/input/event0)
[    90.224] (**) Sleep Button: Applying InputClass "evdev keyboard catchall"
[    90.224] (**) Sleep Button: Applying InputClass "libinput keyboard catchall"
[    90.224] (II) Using input driver 'libinput' for 'Sleep Button'
[    90.225] (II) systemd-logind: got fd for /dev/input/event0 13:64 fd 51 paused 0
[    90.225] (**) Sleep Button: always reports core events
[    90.225] (**) Option "Device" "/dev/input/event0"
[    90.225] (II) event0  - Sleep Button: is tagged by udev as: Keyboard
[    90.225] (II) event0  - Sleep Button: device is a keyboard
[    90.225] (II) event0  - Sleep Button: device removed
[    90.225] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0E:00/input/input0/event0"
[    90.225] (II) XINPUT: Adding extended input device "Sleep Button" (type: KEYBOARD, id 9)
[    90.226] (II) event0  - Sleep Button: is tagged by udev as: Keyboard
[    90.226] (II) event0  - Sleep Button: device is a keyboard
[    90.226] (II) config/udev: Adding input device HDA NVidia HDMI/DP,pcm=3 (/dev/input/event17)
[    90.226] (II) No input driver specified, ignoring this device.
[    90.226] (II) This device may have been added with another device file.
[    90.226] (II) config/udev: Adding input device HDA NVidia HDMI/DP,pcm=7 (/dev/input/event18)
[    90.226] (II) No input driver specified, ignoring this device.
[    90.226] (II) This device may have been added with another device file.
[    90.226] (II) config/udev: Adding input device HDA NVidia HDMI/DP,pcm=8 (/dev/input/event19)
[    90.226] (II) No input driver specified, ignoring this device.
[    90.226] (II) This device may have been added with another device file.
[    90.227] (II) config/udev: Adding input device HDA NVidia HDMI/DP,pcm=9 (/dev/input/event20)
[    90.227] (II) No input driver specified, ignoring this device.
[    90.227] (II) This device may have been added with another device file.
[    90.227] (II) config/udev: Adding input device SteelSeries SteelSeries Apex 3 TKL (/dev/input/event5)
[    90.227] (**) SteelSeries SteelSeries Apex 3 TKL: Applying InputClass "evdev keyboard catchall"
[    90.227] (**) SteelSeries SteelSeries Apex 3 TKL: Applying InputClass "libinput keyboard catchall"
[    90.227] (II) Using input driver 'libinput' for 'SteelSeries SteelSeries Apex 3 TKL'
[    90.227] (II) systemd-logind: got fd for /dev/input/event5 13:69 fd 52 paused 0
[    90.227] (**) SteelSeries SteelSeries Apex 3 TKL: always reports core events
[    90.227] (**) Option "Device" "/dev/input/event5"
[    90.228] (II) event5  - SteelSeries SteelSeries Apex 3 TKL: is tagged by udev as: Keyboard
[    90.228] (II) event5  - SteelSeries SteelSeries Apex 3 TKL: device is a keyboard
[    90.228] (II) event5  - SteelSeries SteelSeries Apex 3 TKL: device removed
[    90.228] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:14.0/usb1/1-2/1-2:1.0/0003:1038:1622.0001/input/input5/event5"
[    90.228] (II) XINPUT: Adding extended input device "SteelSeries SteelSeries Apex 3 TKL" (type: KEYBOARD, id 10)
[    90.229] (II) event5  - SteelSeries SteelSeries Apex 3 TKL: is tagged by udev as: Keyboard
[    90.229] (II) event5  - SteelSeries SteelSeries Apex 3 TKL: device is a keyboard
[    90.230] (II) config/udev: Adding input device SteelSeries SteelSeries Apex 3 TKL (/dev/input/event6)
[    90.230] (**) SteelSeries SteelSeries Apex 3 TKL: Applying InputClass "evdev keyboard catchall"
[    90.230] (**) SteelSeries SteelSeries Apex 3 TKL: Applying InputClass "libinput keyboard catchall"
[    90.230] (II) Using input driver 'libinput' for 'SteelSeries SteelSeries Apex 3 TKL'
[    90.230] (II) systemd-logind: got fd for /dev/input/event6 13:70 fd 53 paused 0
[    90.230] (**) SteelSeries SteelSeries Apex 3 TKL: always reports core events
[    90.230] (**) Option "Device" "/dev/input/event6"
[    90.231] (II) event6  - SteelSeries SteelSeries Apex 3 TKL: is tagged by udev as: Keyboard
[    90.231] (II) event6  - SteelSeries SteelSeries Apex 3 TKL: device is a keyboard
[    90.231] (II) event6  - SteelSeries SteelSeries Apex 3 TKL: device removed
[    90.231] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:14.0/usb1/1-2/1-2:1.2/0003:1038:1622.0003/input/input6/event6"
[    90.231] (II) XINPUT: Adding extended input device "SteelSeries SteelSeries Apex 3 TKL" (type: KEYBOARD, id 11)
[    90.232] (II) event6  - SteelSeries SteelSeries Apex 3 TKL: is tagged by udev as: Keyboard
[    90.232] (II) event6  - SteelSeries SteelSeries Apex 3 TKL: device is a keyboard
[    90.232] (II) config/udev: Adding input device SteelSeries SteelSeries Apex 3 TKL Consumer Control (/dev/input/event7)
[    90.232] (**) SteelSeries SteelSeries Apex 3 TKL Consumer Control: Applying InputClass "evdev keyboard catchall"
[    90.232] (**) SteelSeries SteelSeries Apex 3 TKL Consumer Control: Applying InputClass "libinput keyboard catchall"
[    90.232] (II) Using input driver 'libinput' for 'SteelSeries SteelSeries Apex 3 TKL Consumer Control'
[    90.233] (II) systemd-logind: got fd for /dev/input/event7 13:71 fd 54 paused 0
[    90.233] (**) SteelSeries SteelSeries Apex 3 TKL Consumer Control: always reports core events
[    90.233] (**) Option "Device" "/dev/input/event7"
[    90.233] (II) event7  - SteelSeries SteelSeries Apex 3 TKL Consumer Control: is tagged by udev as: Keyboard
[    90.233] (II) event7  - SteelSeries SteelSeries Apex 3 TKL Consumer Control: device is a keyboard
[    90.234] (II) event7  - SteelSeries SteelSeries Apex 3 TKL Consumer Control: device removed
[    90.234] (II) libinput: SteelSeries SteelSeries Apex 3 TKL Consumer Control: needs a virtual subdevice
[    90.234] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:14.0/usb1/1-2/1-2:1.3/0003:1038:1622.0004/input/input7/event7"
[    90.234] (II) XINPUT: Adding extended input device "SteelSeries SteelSeries Apex 3 TKL Consumer Control" (type: MOUSE, id 12)
[    90.234] (**) Option "AccelerationScheme" "none"
[    90.234] (**) SteelSeries SteelSeries Apex 3 TKL Consumer Control: (accel) selected scheme none/0
[    90.234] (**) SteelSeries SteelSeries Apex 3 TKL Consumer Control: (accel) acceleration factor: 2.000
[    90.234] (**) SteelSeries SteelSeries Apex 3 TKL Consumer Control: (accel) acceleration threshold: 4
[    90.234] (II) event7  - SteelSeries SteelSeries Apex 3 TKL Consumer Control: is tagged by udev as: Keyboard
[    90.234] (II) event7  - SteelSeries SteelSeries Apex 3 TKL Consumer Control: device is a keyboard
[    90.235] (II) config/udev: Adding input device SteelSeries SteelSeries Apex 3 TKL Mouse (/dev/input/event8)
[    90.235] (**) SteelSeries SteelSeries Apex 3 TKL Mouse: Applying InputClass "evdev pointer catchall"
[    90.235] (**) SteelSeries SteelSeries Apex 3 TKL Mouse: Applying InputClass "libinput pointer catchall"
[    90.235] (II) Using input driver 'libinput' for 'SteelSeries SteelSeries Apex 3 TKL Mouse'
[    90.235] (II) systemd-logind: got fd for /dev/input/event8 13:72 fd 55 paused 0
[    90.235] (**) SteelSeries SteelSeries Apex 3 TKL Mouse: always reports core events
[    90.235] (**) Option "Device" "/dev/input/event8"
[    90.236] (II) event8  - SteelSeries SteelSeries Apex 3 TKL Mouse: is tagged by udev as: Mouse
[    90.236] (II) event8  - SteelSeries SteelSeries Apex 3 TKL Mouse: device is a pointer
[    90.236] (II) event8  - SteelSeries SteelSeries Apex 3 TKL Mouse: device removed
[    90.236] (II) libinput: SteelSeries SteelSeries Apex 3 TKL Mouse: Step value 0 was provided, libinput Fallback acceleration function is used.
[    90.236] (II) libinput: SteelSeries SteelSeries Apex 3 TKL Mouse: Step value 0 was provided, libinput Fallback acceleration function is used.
[    90.236] (II) libinput: SteelSeries SteelSeries Apex 3 TKL Mouse: Step value 0 was provided, libinput Fallback acceleration function is used.
[    90.236] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:14.0/usb1/1-2/1-2:1.3/0003:1038:1622.0004/input/input8/event8"
[    90.236] (II) XINPUT: Adding extended input device "SteelSeries SteelSeries Apex 3 TKL Mouse" (type: MOUSE, id 13)
[    90.236] (**) Option "AccelerationScheme" "none"
[    90.236] (**) SteelSeries SteelSeries Apex 3 TKL Mouse: (accel) selected scheme none/0
[    90.236] (**) SteelSeries SteelSeries Apex 3 TKL Mouse: (accel) acceleration factor: 2.000
[    90.236] (**) SteelSeries SteelSeries Apex 3 TKL Mouse: (accel) acceleration threshold: 4
[    90.237] (II) event8  - SteelSeries SteelSeries Apex 3 TKL Mouse: is tagged by udev as: Mouse
[    90.237] (II) event8  - SteelSeries SteelSeries Apex 3 TKL Mouse: device is a pointer
[    90.237] (II) config/udev: Adding input device SteelSeries SteelSeries Apex 3 TKL Mouse (/dev/input/mouse0)
[    90.237] (II) No input driver specified, ignoring this device.
[    90.237] (II) This device may have been added with another device file.
[    90.238] (II) config/udev: Adding input device Logitech Gaming Mouse G502 (/dev/input/event14)
[    90.238] (**) Logitech Gaming Mouse G502: Applying InputClass "evdev pointer catchall"
[    90.238] (**) Logitech Gaming Mouse G502: Applying InputClass "libinput pointer catchall"
[    90.238] (II) Using input driver 'libinput' for 'Logitech Gaming Mouse G502'
[    90.293] (II) systemd-logind: got fd for /dev/input/event14 13:78 fd 56 paused 0
[    90.293] (**) Logitech Gaming Mouse G502: always reports core events
[    90.293] (**) Option "Device" "/dev/input/event14"
[    90.294] (II) event14 - Logitech Gaming Mouse G502: is tagged by udev as: Mouse
[    90.294] (II) event14 - Logitech Gaming Mouse G502: device set to 2400 DPI
[    90.294] (II) event14 - Logitech Gaming Mouse G502: device is a pointer
[    90.294] (II) event14 - Logitech Gaming Mouse G502: device removed
[    90.294] (II) libinput: Logitech Gaming Mouse G502: Step value 0 was provided, libinput Fallback acceleration function is used.
[    90.294] (II) libinput: Logitech Gaming Mouse G502: Step value 0 was provided, libinput Fallback acceleration function is used.
[    90.294] (II) libinput: Logitech Gaming Mouse G502: Step value 0 was provided, libinput Fallback acceleration function is used.
[    90.294] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:14.0/usb1/1-5/1-5:1.0/0003:046D:C332.000B/input/input16/event14"
[    90.294] (II) XINPUT: Adding extended input device "Logitech Gaming Mouse G502" (type: MOUSE, id 14)
[    90.294] (**) Option "AccelerationScheme" "none"
[    90.294] (**) Logitech Gaming Mouse G502: (accel) selected scheme none/0
[    90.294] (**) Logitech Gaming Mouse G502: (accel) acceleration factor: 2.000
[    90.294] (**) Logitech Gaming Mouse G502: (accel) acceleration threshold: 4
[    90.295] (II) event14 - Logitech Gaming Mouse G502: is tagged by udev as: Mouse
[    90.295] (II) event14 - Logitech Gaming Mouse G502: device set to 2400 DPI
[    90.295] (II) event14 - Logitech Gaming Mouse G502: device is a pointer
[    90.295] (II) config/udev: Adding input device Logitech Gaming Mouse G502 (/dev/input/mouse1)
[    90.295] (II) No input driver specified, ignoring this device.
[    90.295] (II) This device may have been added with another device file.
[    90.295] (II) config/udev: Adding input device Logitech Gaming Mouse G502 Keyboard (/dev/input/event15)
[    90.295] (**) Logitech Gaming Mouse G502 Keyboard: Applying InputClass "evdev keyboard catchall"
[    90.295] (**) Logitech Gaming Mouse G502 Keyboard: Applying InputClass "libinput keyboard catchall"
[    90.295] (II) Using input driver 'libinput' for 'Logitech Gaming Mouse G502 Keyboard'
[    90.296] (II) systemd-logind: got fd for /dev/input/event15 13:79 fd 57 paused 0
[    90.296] (**) Logitech Gaming Mouse G502 Keyboard: always reports core events
[    90.296] (**) Option "Device" "/dev/input/event15"
[    90.296] (II) event15 - Logitech Gaming Mouse G502 Keyboard: is tagged by udev as: Keyboard
[    90.296] (II) event15 - Logitech Gaming Mouse G502 Keyboard: device is a keyboard
[    90.297] (II) event15 - Logitech Gaming Mouse G502 Keyboard: device removed
[    90.297] (II) libinput: Logitech Gaming Mouse G502 Keyboard: needs a virtual subdevice
[    90.297] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:14.0/usb1/1-5/1-5:1.1/0003:046D:C332.000C/input/input17/event15"
[    90.297] (II) XINPUT: Adding extended input device "Logitech Gaming Mouse G502 Keyboard" (type: MOUSE, id 15)
[    90.297] (**) Option "AccelerationScheme" "none"
[    90.297] (**) Logitech Gaming Mouse G502 Keyboard: (accel) selected scheme none/0
[    90.297] (**) Logitech Gaming Mouse G502 Keyboard: (accel) acceleration factor: 2.000
[    90.297] (**) Logitech Gaming Mouse G502 Keyboard: (accel) acceleration threshold: 4
[    90.297] (II) event15 - Logitech Gaming Mouse G502 Keyboard: is tagged by udev as: Keyboard
[    90.297] (II) event15 - Logitech Gaming Mouse G502 Keyboard: device is a keyboard
[    90.298] (II) config/udev: Adding input device MSI MYSTIC LIGHT  (/dev/input/event9)
[    90.298] (II) No input driver specified, ignoring this device.
[    90.298] (II) This device may have been added with another device file.
[    90.298] (II) config/udev: Adding input device Saitek Saitek Pro Flight Quadrant (/dev/input/event12)
[    90.298] (II) No input driver specified, ignoring this device.
[    90.298] (II) This device may have been added with another device file.
[    90.299] (II) config/udev: Adding input device Saitek Saitek Pro Flight Quadrant (/dev/input/js0)
[    90.299] (II) No input driver specified, ignoring this device.
[    90.299] (II) This device may have been added with another device file.
[    90.299] (II) config/udev: Adding input device Thrustmaster T-Pendular-Rudder (/dev/input/event13)
[    90.299] (II) No input driver specified, ignoring this device.
[    90.299] (II) This device may have been added with another device file.
[    90.299] (II) config/udev: Adding input device Thrustmaster T-Pendular-Rudder (/dev/input/js1)
[    90.299] (II) No input driver specified, ignoring this device.
[    90.299] (II) This device may have been added with another device file.
[    90.300] (II) config/udev: Adding input device SteelSeries SteelSeries Arctis 5 (/dev/input/event16)
[    90.300] (**) SteelSeries SteelSeries Arctis 5: Applying InputClass "evdev keyboard catchall"
[    90.300] (**) SteelSeries SteelSeries Arctis 5: Applying InputClass "libinput keyboard catchall"
[    90.300] (II) Using input driver 'libinput' for 'SteelSeries SteelSeries Arctis 5'
[    90.300] (II) systemd-logind: got fd for /dev/input/event16 13:80 fd 58 paused 0
[    90.300] (**) SteelSeries SteelSeries Arctis 5: always reports core events
[    90.300] (**) Option "Device" "/dev/input/event16"
[    90.301] (II) event16 - SteelSeries SteelSeries Arctis 5: is tagged by udev as: Keyboard
[    90.301] (II) event16 - SteelSeries SteelSeries Arctis 5: device is a keyboard
[    90.301] (II) event16 - SteelSeries SteelSeries Arctis 5: device removed
[    90.301] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:1b.4/0000:03:00.0/usb5/5-1/5-1.4/5-1.4:1.5/0003:1038:12AA.000D/input/input20/event16"
[    90.301] (II) XINPUT: Adding extended input device "SteelSeries SteelSeries Arctis 5" (type: KEYBOARD, id 16)
[    90.302] (II) event16 - SteelSeries SteelSeries Arctis 5: is tagged by udev as: Keyboard
[    90.302] (II) event16 - SteelSeries SteelSeries Arctis 5: device is a keyboard
[    90.302] (II) config/udev: Adding input device ILITEK ILITEK-TP (/dev/input/event10)
[    90.302] (**) ILITEK ILITEK-TP: Applying InputClass "evdev touchscreen catchall"
[    90.302] (**) ILITEK ILITEK-TP: Applying InputClass "libinput touchscreen catchall"
[    90.302] (II) Using input driver 'libinput' for 'ILITEK ILITEK-TP'
[    90.356] (II) systemd-logind: got fd for /dev/input/event10 13:74 fd 59 paused 0
[    90.356] (**) ILITEK ILITEK-TP: always reports core events
[    90.356] (**) Option "Device" "/dev/input/event10"
[    90.357] (II) event10 - ILITEK ILITEK-TP: is tagged by udev as: Touchscreen
[    90.357] (II) event10 - ILITEK ILITEK-TP: device is a touch device
[    90.357] (II) event10 - ILITEK ILITEK-TP: device removed
[    90.357] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:1c.6/0000:05:00.0/usb7/7-1/7-1:1.0/0003:222A:0001.0007/input/input25/event10"
[    90.357] (II) XINPUT: Adding extended input device "ILITEK ILITEK-TP" (type: TOUCHSCREEN, id 17)
[    90.357] (**) Option "AccelerationScheme" "none"
[    90.357] (**) ILITEK ILITEK-TP: (accel) selected scheme none/0
[    90.357] (**) ILITEK ILITEK-TP: (accel) acceleration factor: 2.000
[    90.357] (**) ILITEK ILITEK-TP: (accel) acceleration threshold: 4
[    90.358] (II) event10 - ILITEK ILITEK-TP: is tagged by udev as: Touchscreen
[    90.358] (II) event10 - ILITEK ILITEK-TP: device is a touch device
[    90.358] (II) config/udev: Adding input device ILITEK ILITEK-TP (/dev/input/mouse2)
[    90.358] (II) No input driver specified, ignoring this device.
[    90.358] (II) This device may have been added with another device file.
[    90.359] (II) config/udev: Adding input device ILITEK ILITEK-TP (/dev/input/event11)
[    90.359] (**) ILITEK ILITEK-TP: Applying InputClass "evdev touchscreen catchall"
[    90.359] (**) ILITEK ILITEK-TP: Applying InputClass "libinput touchscreen catchall"
[    90.359] (II) Using input driver 'libinput' for 'ILITEK ILITEK-TP'
[    90.413] (II) systemd-logind: got fd for /dev/input/event11 13:75 fd 60 paused 0
[    90.413] (**) ILITEK ILITEK-TP: always reports core events
[    90.413] (**) Option "Device" "/dev/input/event11"
[    90.414] (II) event11 - ILITEK ILITEK-TP: is tagged by udev as: Touchscreen
[    90.414] (II) event11 - ILITEK ILITEK-TP: device is a touch device
[    90.414] (II) event11 - ILITEK ILITEK-TP: device removed
[    90.414] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:1c.6/0000:05:00.0/usb7/7-2/7-2:1.0/0003:222A:0001.0008/input/input27/event11"
[    90.414] (II) XINPUT: Adding extended input device "ILITEK ILITEK-TP" (type: TOUCHSCREEN, id 18)
[    90.414] (**) Option "AccelerationScheme" "none"
[    90.414] (**) ILITEK ILITEK-TP: (accel) selected scheme none/0
[    90.414] (**) ILITEK ILITEK-TP: (accel) acceleration factor: 2.000
[    90.414] (**) ILITEK ILITEK-TP: (accel) acceleration threshold: 4
[    90.415] (II) event11 - ILITEK ILITEK-TP: is tagged by udev as: Touchscreen
[    90.415] (II) event11 - ILITEK ILITEK-TP: device is a touch device
[    90.415] (II) config/udev: Adding input device ILITEK ILITEK-TP (/dev/input/mouse3)
[    90.415] (II) No input driver specified, ignoring this device.
[    90.415] (II) This device may have been added with another device file.
[    90.415] (II) config/udev: Adding input device HDA Intel PCH Front Mic (/dev/input/event21)
[    90.415] (II) No input driver specified, ignoring this device.
[    90.415] (II) This device may have been added with another device file.
[    90.415] (II) config/udev: Adding input device HDA Intel PCH Rear Mic (/dev/input/event22)
[    90.415] (II) No input driver specified, ignoring this device.
[    90.415] (II) This device may have been added with another device file.
[    90.416] (II) config/udev: Adding input device HDA Intel PCH Line (/dev/input/event23)
[    90.416] (II) No input driver specified, ignoring this device.
[    90.416] (II) This device may have been added with another device file.
[    90.416] (II) config/udev: Adding input device HDA Intel PCH Line Out Front (/dev/input/event24)
[    90.416] (II) No input driver specified, ignoring this device.
[    90.416] (II) This device may have been added with another device file.
[    90.416] (II) config/udev: Adding input device HDA Intel PCH Line Out Surround (/dev/input/event25)
[    90.416] (II) No input driver specified, ignoring this device.
[    90.416] (II) This device may have been added with another device file.
[    90.416] (II) config/udev: Adding input device HDA Intel PCH Line Out CLFE (/dev/input/event26)
[    90.416] (II) No input driver specified, ignoring this device.
[    90.416] (II) This device may have been added with another device file.
[    90.416] (II) config/udev: Adding input device HDA Intel PCH Front Headphone (/dev/input/event27)
[    90.416] (II) No input driver specified, ignoring this device.
[    90.416] (II) This device may have been added with another device file.
[    90.417] (II) config/udev: Adding input device HDA Intel PCH HDMI/DP,pcm=3 (/dev/input/event28)
[    90.417] (II) No input driver specified, ignoring this device.
[    90.417] (II) This device may have been added with another device file.
[    90.417] (II) config/udev: Adding input device HDA Intel PCH HDMI/DP,pcm=7 (/dev/input/event29)
[    90.417] (II) No input driver specified, ignoring this device.
[    90.417] (II) This device may have been added with another device file.
[    90.417] (II) config/udev: Adding input device HDA Intel PCH HDMI/DP,pcm=8 (/dev/input/event30)
[    90.417] (II) No input driver specified, ignoring this device.
[    90.417] (II) This device may have been added with another device file.
[    90.417] (II) config/udev: Adding input device PC Speaker (/dev/input/event4)
[    90.417] (II) No input driver specified, ignoring this device.
[    90.417] (II) This device may have been added with another device file.
[    90.420] (**) SteelSeries SteelSeries Apex 3 TKL Consumer Control: Applying InputClass "evdev keyboard catchall"
[    90.420] (**) SteelSeries SteelSeries Apex 3 TKL Consumer Control: Applying InputClass "libinput keyboard catchall"
[    90.420] (II) Using input driver 'libinput' for 'SteelSeries SteelSeries Apex 3 TKL Consumer Control'
[    90.420] (II) systemd-logind: returning pre-existing fd for /dev/input/event7 13:71
[    90.420] (**) SteelSeries SteelSeries Apex 3 TKL Consumer Control: always reports core events
[    90.420] (**) Option "Device" "/dev/input/event7"
[    90.420] (II) libinput: SteelSeries SteelSeries Apex 3 TKL Consumer Control: is a virtual subdevice
[    90.420] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:14.0/usb1/1-2/1-2:1.3/0003:1038:1622.0004/input/input7/event7"
[    90.420] (II) XINPUT: Adding extended input device "SteelSeries SteelSeries Apex 3 TKL Consumer Control" (type: KEYBOARD, id 19)
[    90.420] (**) Logitech Gaming Mouse G502 Keyboard: Applying InputClass "evdev keyboard catchall"
[    90.420] (**) Logitech Gaming Mouse G502 Keyboard: Applying InputClass "libinput keyboard catchall"
[    90.420] (II) Using input driver 'libinput' for 'Logitech Gaming Mouse G502 Keyboard'
[    90.420] (II) systemd-logind: returning pre-existing fd for /dev/input/event15 13:79
[    90.420] (**) Logitech Gaming Mouse G502 Keyboard: always reports core events
[    90.420] (**) Option "Device" "/dev/input/event15"
[    90.420] (II) libinput: Logitech Gaming Mouse G502 Keyboard: is a virtual subdevice
[    90.420] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:14.0/usb1/1-5/1-5:1.1/0003:046D:C332.000C/input/input17/event15"
[    90.420] (II) XINPUT: Adding extended input device "Logitech Gaming Mouse G502 Keyboard" (type: KEYBOARD, id 20)
[    90.951] (--) NVIDIA(GPU-0): DFP-0: disconnected
[    90.951] (--) NVIDIA(GPU-0): DFP-0: Internal DisplayPort
[    90.951] (--) NVIDIA(GPU-0): DFP-0: 2660.0 MHz maximum pixel clock
[    90.951] (--) NVIDIA(GPU-0): 
[    91.043] (--) NVIDIA(GPU-0): LG Electronics LG TV (DFP-1): connected
[    91.043] (--) NVIDIA(GPU-0): LG Electronics LG TV (DFP-1): Internal TMDS
[    91.043] (--) NVIDIA(GPU-0): LG Electronics LG TV (DFP-1): 300.0 MHz maximum pixel clock
[    91.043] (--) NVIDIA(GPU-0): 
[    91.086] (--) NVIDIA(GPU-0): AGO (DFP-2): connected
[    91.086] (--) NVIDIA(GPU-0): AGO (DFP-2): Internal TMDS
[    91.086] (--) NVIDIA(GPU-0): AGO (DFP-2): 600.0 MHz maximum pixel clock
[    91.086] (--) NVIDIA(GPU-0): 
[    91.086] (--) NVIDIA(GPU-0): DFP-3: disconnected
[    91.086] (--) NVIDIA(GPU-0): DFP-3: Internal DisplayPort
[    91.086] (--) NVIDIA(GPU-0): DFP-3: 2660.0 MHz maximum pixel clock
[    91.086] (--) NVIDIA(GPU-0): 
[    91.177] (--) NVIDIA(GPU-0): LG Electronics LG TV (DFP-4): connected
[    91.177] (--) NVIDIA(GPU-0): LG Electronics LG TV (DFP-4): Internal TMDS
[    91.177] (--) NVIDIA(GPU-0): LG Electronics LG TV (DFP-4): 300.0 MHz maximum pixel clock
[    91.177] (--) NVIDIA(GPU-0): 
[    91.177] (--) NVIDIA(GPU-0): DFP-5: disconnected
[    91.177] (--) NVIDIA(GPU-0): DFP-5: Internal DisplayPort
[    91.177] (--) NVIDIA(GPU-0): DFP-5: 2660.0 MHz maximum pixel clock
[    91.177] (--) NVIDIA(GPU-0): 
[    91.177] (--) NVIDIA(GPU-0): DFP-6: disconnected
[    91.177] (--) NVIDIA(GPU-0): DFP-6: Internal TMDS
[    91.177] (--) NVIDIA(GPU-0): DFP-6: 165.0 MHz maximum pixel clock
[    91.177] (--) NVIDIA(GPU-0): 
[    91.177] (--) NVIDIA(GPU-0): DFP-0: disconnected
[    91.177] (--) NVIDIA(GPU-0): DFP-0: Internal DisplayPort
[    91.177] (--) NVIDIA(GPU-0): DFP-0: 2660.0 MHz maximum pixel clock
[    91.177] (--) NVIDIA(GPU-0): 
[    91.269] (--) NVIDIA(GPU-0): LG Electronics LG TV (DFP-1): connected
[    91.269] (--) NVIDIA(GPU-0): LG Electronics LG TV (DFP-1): Internal TMDS
[    91.269] (--) NVIDIA(GPU-0): LG Electronics LG TV (DFP-1): 300.0 MHz maximum pixel clock
[    91.269] (--) NVIDIA(GPU-0): 
[    91.312] (--) NVIDIA(GPU-0): AGO (DFP-2): connected
[    91.312] (--) NVIDIA(GPU-0): AGO (DFP-2): Internal TMDS
[    91.312] (--) NVIDIA(GPU-0): AGO (DFP-2): 600.0 MHz maximum pixel clock
[    91.312] (--) NVIDIA(GPU-0): 
[    91.312] (--) NVIDIA(GPU-0): DFP-3: disconnected
[    91.312] (--) NVIDIA(GPU-0): DFP-3: Internal DisplayPort
[    91.312] (--) NVIDIA(GPU-0): DFP-3: 2660.0 MHz maximum pixel clock
[    91.312] (--) NVIDIA(GPU-0): 
[    91.404] (--) NVIDIA(GPU-0): LG Electronics LG TV (DFP-4): connected
[    91.404] (--) NVIDIA(GPU-0): LG Electronics LG TV (DFP-4): Internal TMDS
[    91.404] (--) NVIDIA(GPU-0): LG Electronics LG TV (DFP-4): 300.0 MHz maximum pixel clock
[    91.404] (--) NVIDIA(GPU-0): 
[    91.404] (--) NVIDIA(GPU-0): DFP-5: disconnected
[    91.404] (--) NVIDIA(GPU-0): DFP-5: Internal DisplayPort
[    91.404] (--) NVIDIA(GPU-0): DFP-5: 2660.0 MHz maximum pixel clock
[    91.404] (--) NVIDIA(GPU-0): 
[    91.404] (--) NVIDIA(GPU-0): DFP-6: disconnected
[    91.404] (--) NVIDIA(GPU-0): DFP-6: Internal TMDS
[    91.404] (--) NVIDIA(GPU-0): DFP-6: 165.0 MHz maximum pixel clock
[    91.404] (--) NVIDIA(GPU-0): 
[    91.432] (WW) EDID timing clock 148.50 exceeds claimed max 115MHz, fixing
[    91.432] (--) modeset(G0): HDMI max TMDS frequency 225000KHz
[    91.900] (WW) EDID timing clock 148.50 exceeds claimed max 115MHz, fixing
[    91.900] (--) modeset(G0): HDMI max TMDS frequency 225000KHz
[    91.926] (--) NVIDIA(GPU-0): DFP-0: disconnected
[    91.926] (--) NVIDIA(GPU-0): DFP-0: Internal DisplayPort
[    91.926] (--) NVIDIA(GPU-0): DFP-0: 2660.0 MHz maximum pixel clock
[    91.926] (--) NVIDIA(GPU-0): 
[    92.018] (--) NVIDIA(GPU-0): LG Electronics LG TV (DFP-1): connected
[    92.018] (--) NVIDIA(GPU-0): LG Electronics LG TV (DFP-1): Internal TMDS
[    92.018] (--) NVIDIA(GPU-0): LG Electronics LG TV (DFP-1): 300.0 MHz maximum pixel clock
[    92.018] (--) NVIDIA(GPU-0): 
[    92.162] (--) NVIDIA(GPU-0): AGO (DFP-2): connected
[    92.162] (--) NVIDIA(GPU-0): AGO (DFP-2): Internal TMDS
[    92.162] (--) NVIDIA(GPU-0): AGO (DFP-2): 600.0 MHz maximum pixel clock
[    92.162] (--) NVIDIA(GPU-0): 
[    92.162] (--) NVIDIA(GPU-0): DFP-3: disconnected
[    92.162] (--) NVIDIA(GPU-0): DFP-3: Internal DisplayPort
[    92.162] (--) NVIDIA(GPU-0): DFP-3: 2660.0 MHz maximum pixel clock
[    92.162] (--) NVIDIA(GPU-0): 
[    92.254] (--) NVIDIA(GPU-0): LG Electronics LG TV (DFP-4): connected
[    92.254] (--) NVIDIA(GPU-0): LG Electronics LG TV (DFP-4): Internal TMDS
[    92.254] (--) NVIDIA(GPU-0): LG Electronics LG TV (DFP-4): 300.0 MHz maximum pixel clock
[    92.254] (--) NVIDIA(GPU-0): 
[    92.254] (--) NVIDIA(GPU-0): DFP-5: disconnected
[    92.254] (--) NVIDIA(GPU-0): DFP-5: Internal DisplayPort
[    92.254] (--) NVIDIA(GPU-0): DFP-5: 2660.0 MHz maximum pixel clock
[    92.254] (--) NVIDIA(GPU-0): 
[    92.254] (--) NVIDIA(GPU-0): DFP-6: disconnected
[    92.254] (--) NVIDIA(GPU-0): DFP-6: Internal TMDS
[    92.254] (--) NVIDIA(GPU-0): DFP-6: 165.0 MHz maximum pixel clock
[    92.254] (--) NVIDIA(GPU-0): 
[    92.254] (--) NVIDIA(GPU-0): DFP-0: disconnected
[    92.254] (--) NVIDIA(GPU-0): DFP-0: Internal DisplayPort
[    92.254] (--) NVIDIA(GPU-0): DFP-0: 2660.0 MHz maximum pixel clock
[    92.254] (--) NVIDIA(GPU-0): 
[    92.346] (--) NVIDIA(GPU-0): LG Electronics LG TV (DFP-1): connected
[    92.346] (--) NVIDIA(GPU-0): LG Electronics LG TV (DFP-1): Internal TMDS
[    92.346] (--) NVIDIA(GPU-0): LG Electronics LG TV (DFP-1): 300.0 MHz maximum pixel clock
[    92.346] (--) NVIDIA(GPU-0): 
[    92.477] (--) NVIDIA(GPU-0): AGO (DFP-2): connected
[    92.477] (--) NVIDIA(GPU-0): AGO (DFP-2): Internal TMDS
[    92.477] (--) NVIDIA(GPU-0): AGO (DFP-2): 600.0 MHz maximum pixel clock
[    92.477] (--) NVIDIA(GPU-0): 
[    92.477] (--) NVIDIA(GPU-0): DFP-3: disconnected
[    92.477] (--) NVIDIA(GPU-0): DFP-3: Internal DisplayPort
[    92.477] (--) NVIDIA(GPU-0): DFP-3: 2660.0 MHz maximum pixel clock
[    92.477] (--) NVIDIA(GPU-0): 
[    92.568] (--) NVIDIA(GPU-0): LG Electronics LG TV (DFP-4): connected
[    92.568] (--) NVIDIA(GPU-0): LG Electronics LG TV (DFP-4): Internal TMDS
[    92.568] (--) NVIDIA(GPU-0): LG Electronics LG TV (DFP-4): 300.0 MHz maximum pixel clock
[    92.569] (--) NVIDIA(GPU-0): 
[    92.569] (--) NVIDIA(GPU-0): DFP-5: disconnected
[    92.569] (--) NVIDIA(GPU-0): DFP-5: Internal DisplayPort
[    92.569] (--) NVIDIA(GPU-0): DFP-5: 2660.0 MHz maximum pixel clock
[    92.569] (--) NVIDIA(GPU-0): 
[    92.569] (--) NVIDIA(GPU-0): DFP-6: disconnected
[    92.569] (--) NVIDIA(GPU-0): DFP-6: Internal TMDS
[    92.569] (--) NVIDIA(GPU-0): DFP-6: 165.0 MHz maximum pixel clock
[    92.569] (--) NVIDIA(GPU-0): 
[    92.596] (WW) EDID timing clock 148.50 exceeds claimed max 115MHz, fixing
[    92.596] (--) modeset(G0): HDMI max TMDS frequency 225000KHz
[    93.065] (WW) EDID timing clock 148.50 exceeds claimed max 115MHz, fixing
[    93.065] (--) modeset(G0): HDMI max TMDS frequency 225000KHz
[    93.805] (--) NVIDIA(GPU-0): DFP-0: disconnected
[    93.805] (--) NVIDIA(GPU-0): DFP-0: Internal DisplayPort
[    93.805] (--) NVIDIA(GPU-0): DFP-0: 2660.0 MHz maximum pixel clock
[    93.805] (--) NVIDIA(GPU-0): 
[    93.897] (--) NVIDIA(GPU-0): LG Electronics LG TV (DFP-1): connected
[    93.897] (--) NVIDIA(GPU-0): LG Electronics LG TV (DFP-1): Internal TMDS
[    93.897] (--) NVIDIA(GPU-0): LG Electronics LG TV (DFP-1): 300.0 MHz maximum pixel clock
[    93.897] (--) NVIDIA(GPU-0): 
[    94.029] (--) NVIDIA(GPU-0): AGO (DFP-2): connected
[    94.029] (--) NVIDIA(GPU-0): AGO (DFP-2): Internal TMDS
[    94.029] (--) NVIDIA(GPU-0): AGO (DFP-2): 600.0 MHz maximum pixel clock
[    94.029] (--) NVIDIA(GPU-0): 
[    94.029] (--) NVIDIA(GPU-0): DFP-3: disconnected
[    94.029] (--) NVIDIA(GPU-0): DFP-3: Internal DisplayPort
[    94.029] (--) NVIDIA(GPU-0): DFP-3: 2660.0 MHz maximum pixel clock
[    94.029] (--) NVIDIA(GPU-0): 
[    94.121] (--) NVIDIA(GPU-0): LG Electronics LG TV (DFP-4): connected
[    94.121] (--) NVIDIA(GPU-0): LG Electronics LG TV (DFP-4): Internal TMDS
[    94.121] (--) NVIDIA(GPU-0): LG Electronics LG TV (DFP-4): 300.0 MHz maximum pixel clock
[    94.121] (--) NVIDIA(GPU-0): 
[    94.121] (--) NVIDIA(GPU-0): DFP-5: disconnected
[    94.121] (--) NVIDIA(GPU-0): DFP-5: Internal DisplayPort
[    94.121] (--) NVIDIA(GPU-0): DFP-5: 2660.0 MHz maximum pixel clock
[    94.121] (--) NVIDIA(GPU-0): 
[    94.121] (--) NVIDIA(GPU-0): DFP-6: disconnected
[    94.121] (--) NVIDIA(GPU-0): DFP-6: Internal TMDS
[    94.121] (--) NVIDIA(GPU-0): DFP-6: 165.0 MHz maximum pixel clock
[    94.121] (--) NVIDIA(GPU-0): 
[    94.121] (--) NVIDIA(GPU-0): DFP-0: disconnected
[    94.121] (--) NVIDIA(GPU-0): DFP-0: Internal DisplayPort
[    94.121] (--) NVIDIA(GPU-0): DFP-0: 2660.0 MHz maximum pixel clock
[    94.121] (--) NVIDIA(GPU-0): 
[    94.218] (--) NVIDIA(GPU-0): LG Electronics LG TV (DFP-1): connected
[    94.218] (--) NVIDIA(GPU-0): LG Electronics LG TV (DFP-1): Internal TMDS
[    94.218] (--) NVIDIA(GPU-0): LG Electronics LG TV (DFP-1): 300.0 MHz maximum pixel clock
[    94.218] (--) NVIDIA(GPU-0): 
[    94.349] (--) NVIDIA(GPU-0): AGO (DFP-2): connected
[    94.349] (--) NVIDIA(GPU-0): AGO (DFP-2): Internal TMDS
[    94.349] (--) NVIDIA(GPU-0): AGO (DFP-2): 600.0 MHz maximum pixel clock
[    94.349] (--) NVIDIA(GPU-0): 
[    94.349] (--) NVIDIA(GPU-0): DFP-3: disconnected
[    94.349] (--) NVIDIA(GPU-0): DFP-3: Internal DisplayPort
[    94.349] (--) NVIDIA(GPU-0): DFP-3: 2660.0 MHz maximum pixel clock
[    94.349] (--) NVIDIA(GPU-0): 
[    94.444] (--) NVIDIA(GPU-0): LG Electronics LG TV (DFP-4): connected
[    94.444] (--) NVIDIA(GPU-0): LG Electronics LG TV (DFP-4): Internal TMDS
[    94.444] (--) NVIDIA(GPU-0): LG Electronics LG TV (DFP-4): 300.0 MHz maximum pixel clock
[    94.444] (--) NVIDIA(GPU-0): 
[    94.444] (--) NVIDIA(GPU-0): DFP-5: disconnected
[    94.444] (--) NVIDIA(GPU-0): DFP-5: Internal DisplayPort
[    94.444] (--) NVIDIA(GPU-0): DFP-5: 2660.0 MHz maximum pixel clock
[    94.444] (--) NVIDIA(GPU-0): 
[    94.444] (--) NVIDIA(GPU-0): DFP-6: disconnected
[    94.444] (--) NVIDIA(GPU-0): DFP-6: Internal TMDS
[    94.444] (--) NVIDIA(GPU-0): DFP-6: 165.0 MHz maximum pixel clock
[    94.444] (--) NVIDIA(GPU-0): 
[    94.473] (WW) EDID timing clock 148.50 exceeds claimed max 115MHz, fixing
[    94.473] (--) modeset(G0): HDMI max TMDS frequency 225000KHz
[    94.941] (WW) EDID timing clock 148.50 exceeds claimed max 115MHz, fixing
[    94.941] (--) modeset(G0): HDMI max TMDS frequency 225000KHz
[    95.357] (--) NVIDIA(GPU-0): DFP-0: disconnected
[    95.357] (--) NVIDIA(GPU-0): DFP-0: Internal DisplayPort
[    95.357] (--) NVIDIA(GPU-0): DFP-0: 2660.0 MHz maximum pixel clock
[    95.357] (--) NVIDIA(GPU-0): 
[    95.451] (--) NVIDIA(GPU-0): LG Electronics LG TV (DFP-1): connected
[    95.451] (--) NVIDIA(GPU-0): LG Electronics LG TV (DFP-1): Internal TMDS
[    95.451] (--) NVIDIA(GPU-0): LG Electronics LG TV (DFP-1): 300.0 MHz maximum pixel clock
[    95.451] (--) NVIDIA(GPU-0): 
[    95.582] (--) NVIDIA(GPU-0): AGO (DFP-2): connected
[    95.582] (--) NVIDIA(GPU-0): AGO (DFP-2): Internal TMDS
[    95.582] (--) NVIDIA(GPU-0): AGO (DFP-2): 600.0 MHz maximum pixel clock
[    95.582] (--) NVIDIA(GPU-0): 
[    95.582] (--) NVIDIA(GPU-0): DFP-3: disconnected
[    95.582] (--) NVIDIA(GPU-0): DFP-3: Internal DisplayPort
[    95.582] (--) NVIDIA(GPU-0): DFP-3: 2660.0 MHz maximum pixel clock
[    95.582] (--) NVIDIA(GPU-0): 
[    95.673] (--) NVIDIA(GPU-0): LG Electronics LG TV (DFP-4): connected
[    95.673] (--) NVIDIA(GPU-0): LG Electronics LG TV (DFP-4): Internal TMDS
[    95.673] (--) NVIDIA(GPU-0): LG Electronics LG TV (DFP-4): 300.0 MHz maximum pixel clock
[    95.673] (--) NVIDIA(GPU-0): 
[    95.673] (--) NVIDIA(GPU-0): DFP-5: disconnected
[    95.673] (--) NVIDIA(GPU-0): DFP-5: Internal DisplayPort
[    95.673] (--) NVIDIA(GPU-0): DFP-5: 2660.0 MHz maximum pixel clock
[    95.673] (--) NVIDIA(GPU-0): 
[    95.674] (--) NVIDIA(GPU-0): DFP-6: disconnected
[    95.674] (--) NVIDIA(GPU-0): DFP-6: Internal TMDS
[    95.674] (--) NVIDIA(GPU-0): DFP-6: 165.0 MHz maximum pixel clock
[    95.674] (--) NVIDIA(GPU-0): 
[    95.674] (--) NVIDIA(GPU-0): DFP-0: disconnected
[    95.674] (--) NVIDIA(GPU-0): DFP-0: Internal DisplayPort
[    95.674] (--) NVIDIA(GPU-0): DFP-0: 2660.0 MHz maximum pixel clock
[    95.674] (--) NVIDIA(GPU-0): 
[    95.765] (--) NVIDIA(GPU-0): LG Electronics LG TV (DFP-1): connected
[    95.765] (--) NVIDIA(GPU-0): LG Electronics LG TV (DFP-1): Internal TMDS
[    95.765] (--) NVIDIA(GPU-0): LG Electronics LG TV (DFP-1): 300.0 MHz maximum pixel clock
[    95.765] (--) NVIDIA(GPU-0): 
[    95.896] (--) NVIDIA(GPU-0): AGO (DFP-2): connected
[    95.896] (--) NVIDIA(GPU-0): AGO (DFP-2): Internal TMDS
[    95.896] (--) NVIDIA(GPU-0): AGO (DFP-2): 600.0 MHz maximum pixel clock
[    95.896] (--) NVIDIA(GPU-0): 
[    95.896] (--) NVIDIA(GPU-0): DFP-3: disconnected
[    95.896] (--) NVIDIA(GPU-0): DFP-3: Internal DisplayPort
[    95.896] (--) NVIDIA(GPU-0): DFP-3: 2660.0 MHz maximum pixel clock
[    95.896] (--) NVIDIA(GPU-0): 
[    95.990] (--) NVIDIA(GPU-0): LG Electronics LG TV (DFP-4): connected
[    95.990] (--) NVIDIA(GPU-0): LG Electronics LG TV (DFP-4): Internal TMDS
[    95.990] (--) NVIDIA(GPU-0): LG Electronics LG TV (DFP-4): 300.0 MHz maximum pixel clock
[    95.990] (--) NVIDIA(GPU-0): 
[    95.990] (--) NVIDIA(GPU-0): DFP-5: disconnected
[    95.990] (--) NVIDIA(GPU-0): DFP-5: Internal DisplayPort
[    95.990] (--) NVIDIA(GPU-0): DFP-5: 2660.0 MHz maximum pixel clock
[    95.990] (--) NVIDIA(GPU-0): 
[    95.990] (--) NVIDIA(GPU-0): DFP-6: disconnected
[    95.990] (--) NVIDIA(GPU-0): DFP-6: Internal TMDS
[    95.990] (--) NVIDIA(GPU-0): DFP-6: 165.0 MHz maximum pixel clock
[    95.990] (--) NVIDIA(GPU-0): 
[    96.018] (WW) EDID timing clock 148.50 exceeds claimed max 115MHz, fixing
[    96.018] (--) modeset(G0): HDMI max TMDS frequency 225000KHz
[    96.486] (WW) EDID timing clock 148.50 exceeds claimed max 115MHz, fixing
[    96.486] (--) modeset(G0): HDMI max TMDS frequency 225000KHz
[    96.487] (--) NVIDIA(GPU-0): DFP-0: disconnected
[    96.487] (--) NVIDIA(GPU-0): DFP-0: Internal DisplayPort
[    96.487] (--) NVIDIA(GPU-0): DFP-0: 2660.0 MHz maximum pixel clock
[    96.487] (--) NVIDIA(GPU-0): 
[    96.579] (--) NVIDIA(GPU-0): LG Electronics LG TV (DFP-1): connected
[    96.579] (--) NVIDIA(GPU-0): LG Electronics LG TV (DFP-1): Internal TMDS
[    96.579] (--) NVIDIA(GPU-0): LG Electronics LG TV (DFP-1): 300.0 MHz maximum pixel clock
[    96.579] (--) NVIDIA(GPU-0): 
[    96.709] (--) NVIDIA(GPU-0): AGO (DFP-2): connected
[    96.709] (--) NVIDIA(GPU-0): AGO (DFP-2): Internal TMDS
[    96.709] (--) NVIDIA(GPU-0): AGO (DFP-2): 600.0 MHz maximum pixel clock
[    96.709] (--) NVIDIA(GPU-0): 
[    96.709] (--) NVIDIA(GPU-0): DFP-3: disconnected
[    96.709] (--) NVIDIA(GPU-0): DFP-3: Internal DisplayPort
[    96.709] (--) NVIDIA(GPU-0): DFP-3: 2660.0 MHz maximum pixel clock
[    96.709] (--) NVIDIA(GPU-0): 
[    96.804] (--) NVIDIA(GPU-0): LG Electronics LG TV (DFP-4): connected
[    96.804] (--) NVIDIA(GPU-0): LG Electronics LG TV (DFP-4): Internal TMDS
[    96.804] (--) NVIDIA(GPU-0): LG Electronics LG TV (DFP-4): 300.0 MHz maximum pixel clock
[    96.804] (--) NVIDIA(GPU-0): 
[    96.804] (--) NVIDIA(GPU-0): DFP-5: disconnected
[    96.804] (--) NVIDIA(GPU-0): DFP-5: Internal DisplayPort
[    96.804] (--) NVIDIA(GPU-0): DFP-5: 2660.0 MHz maximum pixel clock
[    96.804] (--) NVIDIA(GPU-0): 
[    96.804] (--) NVIDIA(GPU-0): DFP-6: disconnected
[    96.804] (--) NVIDIA(GPU-0): DFP-6: Internal TMDS
[    96.804] (--) NVIDIA(GPU-0): DFP-6: 165.0 MHz maximum pixel clock
[    96.804] (--) NVIDIA(GPU-0): 
[    96.804] (--) NVIDIA(GPU-0): DFP-0: disconnected
[    96.804] (--) NVIDIA(GPU-0): DFP-0: Internal DisplayPort
[    96.804] (--) NVIDIA(GPU-0): DFP-0: 2660.0 MHz maximum pixel clock
[    96.804] (--) NVIDIA(GPU-0): 
[    96.895] (--) NVIDIA(GPU-0): LG Electronics LG TV (DFP-1): connected
[    96.895] (--) NVIDIA(GPU-0): LG Electronics LG TV (DFP-1): Internal TMDS
[    96.895] (--) NVIDIA(GPU-0): LG Electronics LG TV (DFP-1): 300.0 MHz maximum pixel clock
[    96.895] (--) NVIDIA(GPU-0): 
[    97.026] (--) NVIDIA(GPU-0): AGO (DFP-2): connected
[    97.026] (--) NVIDIA(GPU-0): AGO (DFP-2): Internal TMDS
[    97.026] (--) NVIDIA(GPU-0): AGO (DFP-2): 600.0 MHz maximum pixel clock
[    97.026] (--) NVIDIA(GPU-0): 
[    97.026] (--) NVIDIA(GPU-0): DFP-3: disconnected
[    97.026] (--) NVIDIA(GPU-0): DFP-3: Internal DisplayPort
[    97.026] (--) NVIDIA(GPU-0): DFP-3: 2660.0 MHz maximum pixel clock
[    97.026] (--) NVIDIA(GPU-0): 
[    97.117] (--) NVIDIA(GPU-0): LG Electronics LG TV (DFP-4): connected
[    97.117] (--) NVIDIA(GPU-0): LG Electronics LG TV (DFP-4): Internal TMDS
[    97.117] (--) NVIDIA(GPU-0): LG Electronics LG TV (DFP-4): 300.0 MHz maximum pixel clock
[    97.117] (--) NVIDIA(GPU-0): 
[    97.117] (--) NVIDIA(GPU-0): DFP-5: disconnected
[    97.117] (--) NVIDIA(GPU-0): DFP-5: Internal DisplayPort
[    97.117] (--) NVIDIA(GPU-0): DFP-5: 2660.0 MHz maximum pixel clock
[    97.117] (--) NVIDIA(GPU-0): 
[    97.117] (--) NVIDIA(GPU-0): DFP-6: disconnected
[    97.117] (--) NVIDIA(GPU-0): DFP-6: Internal TMDS
[    97.117] (--) NVIDIA(GPU-0): DFP-6: 165.0 MHz maximum pixel clock
[    97.117] (--) NVIDIA(GPU-0): 
[    97.145] (WW) EDID timing clock 148.50 exceeds claimed max 115MHz, fixing
[    97.145] (--) modeset(G0): HDMI max TMDS frequency 225000KHz
[    97.613] (WW) EDID timing clock 148.50 exceeds claimed max 115MHz, fixing
[    97.613] (--) modeset(G0): HDMI max TMDS frequency 225000KHz
[    97.634] (II) NVIDIA(0): Setting mode "DP-3: nvidia-auto-select @3840x2160 +0+0 {ViewPortIn=3840x2160, ViewPortOut=3840x2160+0+0}, DP-1: nvidia-auto-select @3840x2160 +3840+0 {ViewPortIn=3840x2160, ViewPortOut=3840x2160+0+0}"
[    97.925] (II) NVIDIA(0): Setting mode "DP-3: nvidia-auto-select @3840x2160 +0+0 {ViewPortIn=3840x2160, ViewPortOut=3840x2160+0+0}, DP-1: 1920x1080 @1920x1080 +1920+0 {ViewPortIn=1920x1080, ViewPortOut=1920x1080+0+0}"
[    98.126] (II) NVIDIA(0): Setting mode "DP-3: 1920x1080 @1920x1080 +0+0 {ViewPortIn=1920x1080, ViewPortOut=1920x1080+0+0}, DP-1: 1920x1080 @1920x1080 +1920+0 {ViewPortIn=1920x1080, ViewPortOut=1920x1080+0+0}"

Last edited by felipescotti (2025-11-24 01:54:27)

Offline

#7 2023-10-18 21:05:04

seth
Member
From: Won't reply 2 private help req
Registered: 2012-09-03
Posts: 76,074

Re: Help to setup multi-monitor with touchscreen

Though I'm still having the multiple keysym warnings from xkbcomp when logoff from kde (which are apparently not included on the logs)

They proabaly also say that they're not critical?

If the thing in #5 is your entire xinitrc, it's broken - see the last link below.

The "nvidia nvidia_modeset nvidia_uvm nvidia_drm" kernel parameters are nonsense.
Fyi, it seems you added the nvidia modules to the initramfs, but not i915 and (now?) X11 runs on the nvidia chip w/ the intel available in a reverse prime setup.

Hi, I believe that these errors are related with the fact I didn't setup the GPU driver display/screens/monitors properly.

xkb is about the keyboard and plasma most likely refuses to start b/c the broken xinitrc desintegrates it from logind. We'll see…

Online

#8 2023-10-19 20:55:07

felipescotti
Member
Registered: 2023-04-22
Posts: 87

Re: Help to setup multi-monitor with touchscreen

Did I posted the previous "journalctl -b" in a wrong way before? I'm thinking it was supposed to be a link only instead of the whole code, isn't it? My bad, only now I realised that I have to read your first profile link: "How to upload text".

seth wrote:
Though I'm still having the multiple keysym warnings from xkbcomp when logoff from kde (which are apparently not included on the logs)

They proabaly also say that they're not critical?

Yes, they are shown as "non critical for the x server".
Wasn't them supposed to be shown on the "journalctl -b" logs?
I checked this link:
https://bugzilla.redhat.com/show_bug.cgi?id=1615700
I found it on an answer of yours on this topic (which contains similar warnings):
https://bbs.archlinux.org/viewtopic.php?id=267893

I probably can conclude that they are harmless and are just happening because I recently installed the plasma-wayland-session package.

seth wrote:

If the thing in #5 is your entire xinitrc, it's broken - see the last link below.

That was only the modified lines by me accordingly with the wiki to be able to startx from the console, being default all the other file lines.
https://wiki.archlinux.org/title/KDE#From_the_console
*I copied just now "xinitrc" to the "~/" as it was only on the "/etc/X11/xinit/" before.

Entire xinitrc:

#!/bin/sh

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

# merge in defaults and keymaps

if [ -f $sysresources ]; then







    xrdb -merge $sysresources

fi

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

if [ -f "$userresources" ]; then







    xrdb -merge "$userresources"

fi

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

# start some nice programs

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

#twm &
#xclock -geometry 50x50-1+1 &
#xterm -geometry 80x50+494+51 &
#xterm -geometry 80x20+494-0 &
#exec xterm -geometry 80x66+0+0 -name login
export DESKTOP_SESSION=plasma
exec startplasma-x11
seth wrote:

The "nvidia nvidia_modeset nvidia_uvm nvidia_drm" kernel parameters are nonsense.
Fyi, it seems you added the nvidia modules to the initramfs, but not i915 and (now?) X11 runs on the nvidia chip w/ the intel available in a reverse prime setup.

I included those parameters because they are here:
https://wiki.archlinux.org/title/NVIDIA#Early_loading
But I probably misunderstood, now leaving ir like this:
"options root=/dev/nvme0n1p2 rw initcall_blacklist=simpledrm_platform_driver_init nvidia_drm.modeset=1"
Is that correct?

Despite that I have being reading the wiki, still I didn't understand if I should Aim to use just Nvidia driver or set NVIDIA Optimus as I have both graphics Intel/Nvidia, 3 TV's and 1 small screen connected to the RTX and 2 monitors connected to the MOBO.

If my thoughts are correct:

The 2 monitors connected to the mobo will use the intel graphics and needs the "iris" instead of i915 (as it is a gen 9th) included in Mesa package than I don't need the already uninstalled "xf86-video-intel".

Should I include either "iris" or "i915" in the "initramfs" ?

I also wondering if I should keep the nvidia package or install nvidia-dkms package instead.
(I have the 6.5.7-arch1-1 (64-bit) kernel but "pacman -S dkms").

kms is removed from the HOOKS array in /etc/mkinitcpio.conf as states step 5 from:
https://wiki.archlinux.org/title/NVIDIA#Installation

Loading the monitors automatically as it is now, works well apart from when I logoff from kde to console and "startx" again or after wake up from sleep, depending on the situation the screens will not load as I left, and I need to rearrange them on KDE display settings but it will usually keep the settings if I turn on the monitors before turn on the ATX.

I think that I have to create an xorg.conf /nvidia.conf /monitor.conf on the /etc/X11/xorg.conf.d/
...once I understand how to do it from the wiki

Last edited by felipescotti (2023-10-19 21:02:13)

Offline

#9 2023-10-19 21:31:07

seth
Member
From: Won't reply 2 private help req
Registered: 2012-09-03
Posts: 76,074

Re: Help to setup multi-monitor with touchscreen

I'm thinking it was supposed to be a link only instead of the whole code, isn't it?

Yes. Next time wink

I probably can conclude that they are harmless

In general yes and they won't cause the session to fail.

*I copied just now "xinitrc" to the "~/" as it was only on the "/etc/X11/xinit/" before.

Your new xinitrc looks better, does the problem remain?

But I probably misunderstood

Yes, that is not how modules are added to the initramfs.

Should I include either "iris" or "i915" in the "initramfs" ?

The only intel kernel module is i915, "iris" replaces "i965" and is a mesa driver.
Adding i915 to the initramfs *might* restore the normal order, leading to the server being run on the intel chip ("regular prime")

I also wondering if I should keep the nvidia package or install nvidia-dkms package instead.

dkms is required for kernels which don't have a precompiled nvidia module in the repos (everything but linux and linux-lts)

the screens will not load as I left, and I need to rearrange them on KDE display settings

The kscreen daemon is supposed to re/store them and will get in the way of/override https://wiki.archlinux.org/title/Multih … _xorg.conf

Online

#10 2023-10-24 22:36:55

felipescotti
Member
Registered: 2023-04-22
Posts: 87

Re: Help to setup multi-monitor with touchscreen

seth wrote:

*I copied just now "xinitrc" to the "~/" as it was only on the "/etc/X11/xinit/" before.

Your new xinitrc looks better, does the problem remain?

I got rid of some tearing and the white window that was showing on the bash top corner saying:
"startkde: Could not start Plasma session."

Apparently I'm also getting a more stable wireless connection on ch100 20-40-80 and a better RSSI.

But I'm still getting the random black screen when "startx" after a logoff.
It's nothing that important though.
Crtl + Alt + Del will show the logoff screen probably in TV's native 4k resolution (I use 1080p), click on logoff and "startx" again will proper start the DE.
Maybe the daemon is not loading fast enough, not sure I'm still reading around about it...

seth wrote:

Should I include either "iris" or "i915" in the "initramfs" ?

The only intel kernel module is i915, "iris" replaces "i965" and is a mesa driver.
Adding i915 to the initramfs *might* restore the normal order, leading to the server being run on the intel chip ("regular prime")

Unfortunately including the i915 didn't change anything that I could notice.

Wondering if this 2 lines could be related:

(WW) Open ACPI failed (/var/run/acpid.socket) (No such file or directory)

NVIDIA(0): ACPI: failed to connect to the ACPI event daemon; the daemon

Thanks for that again @seth

Offline

#11 2023-10-25 21:27:36

seth
Member
From: Won't reply 2 private help req
Registered: 2012-09-03
Posts: 76,074

Re: Help to setup multi-monitor with touchscreen

You can nudge the server w/ a configlet to run on the intel chip, https://wiki.archlinux.org/title/PRIME#Configuration (use "modesetting", not "intel")
The acpid warning is "normal" and usually harmless.

An alternative approach would be to simply disable kscreen and rely on the xserver config, https://wiki.archlinux.org/title/Multih … _xorg.conf

Online

Board footer

Powered by FluxBB