You are not logged in.

#1 2025-08-05 11:08:25

Hacksign
Member
Registered: 2012-07-30
Posts: 137

Set position offset with config file in /etc/X11/xorg.conf.d/ failed

Hi there,

I have 3 monitors: 2 external monitors (HDMI-0 and DisplayPort-1-0) and laptop monitor(eDP-1-0).

Because the resolution of these 3 monitors are all different, so I need to setup an offset value when Xorg initializing the graphic interface.

I want do this by Xorg's config file:

>> cat /etc/X11/xorg.conf.d/10-monitor.conf 
Section "Monitor"
	Identifier "Laptop"
	DisplaySize 406 229
	Option "DPMS" "on"
	Option "Position" "0 0"
	#165Hz
	Modeline "2560x1440"  704.26  2560 2608 2640 2736  1440 1443 1449 1560 -hsync -vsync
	Option "PreferredMode"  "2560x1440"
EndSection
Section "Monitor"
	Identifier "Lenovo"
	#DisplaySize 406 229
	Option "DPMS" "on"
	Option "Primary" "true"
	Option "Position" "-1080 290"
	Option "Rotate" "right"
	# 1920x1080 @ 60.00 Hz (GTF) hsync: 67.08 kHz; pclk: 172.80 MHz
        Modeline "1920x1080_60.00"  172.80  1920 2040 2248 2576  1080 1081 1084 1118  -HSync +Vsync
	Option "PreferredMode"  "1920x1080_60.00"
EndSection
Section "Monitor"
	Identifier "Xiaomi"
	#DisplaySize 406 229
	Option "DPMS" "on"
	Option "Position" "-4520 0"
	Modeline "3440x1440_144.00"  1085.33  3440 3744 4128 4816  1440 1441 1444 1565  -HSync +Vsync
	Modeline "3440x1440_99.99"  729.49  3440 3728 4112 4784  1440 1441 1444 1525  -HSync +Vsync
	Modeline "3440x1440_60.00"  419.11  3440 3688 4064 4688  1440 1441 1444 1490  -hSync +vsync
	Modeline "3440x1440_50.00"  344.00  3440 3672 4040 4640  1440 1443 1453 1484  -hsync +vsync
	Option "PreferredMode"  "3440x1440_99.99"
EndSection

Section "Device"
	Identifier "AMD-GPU-DEVICE"
	Driver "amdgpu"
	BusId "PCI:64:0:0"
	Option "Monitor-eDP-1-0" "Laptop"
	Option "Monitor-DisplayPort-1-0" "Lenovo"
        Option "EnablePageFlip" "off"
        Option "TearFree" "false"
	Option "VariableRefresh" "false"
EndSection
Section "Device"
	Identifier "NVIDIA-GPU-DEVICE"
	Driver "nvidia"
	BusId "PCI:1:0:0"
	Option "PrimaryGPU" "1"
	Option "AllowEmptyInitialConfiguration"
	Option "AllowNVIDIAGPUScreens"
	Option "Monitor-HDMI-0" "Xiaomi"
EndSection

Section "Screen"
	Identifier "AMD-GPU-SCREEN"
	Device "AMD-GPU-DEVICE"
	Monitor "Laptop"
	Monitor "Lenovo"
        SubSection "Display"
            Depth       24
            Modes       "2560x1440" "1920x1080"
        EndSubSection
EndSection
Section "Screen"
	Identifier "NVIDIA-GPU-SCREEN"
	Device "NVIDIA-GPU-DEVICE"
        DefaultDepth    24
	Monitor "Xiaomi"
        SubSection "Display"
            Depth       24
            Modes       "3440x1440" "2560x1080" "1920x1080"
        EndSubSection
EndSection

Section "ServerLayout"
	Identifier "NVIDIALayout"
	Screen "NVIDIA-GPU-SCREEN"
	Screen "AMD-GPU-SCREEN"
EndSection

Section "ServerFlags"
	Option "DefaultServerLayout" "NVIDIALayout"
	# in minutes
	Option "StandbyTime" "20"
	Option "SuspendTime" "30"
	Option "OffTime" "50"
	Option "BlankTime" "20"
EndSection

But the "Position" option seems no working by Xorg.0.log:

>> cat /var/log/Xorg.0.log
[     8.523] 
X.Org X Server 1.21.1.18
X Protocol Version 11, Revision 0
[     8.523] Current Operating System: Linux XSignBlade 6.15.4-arch2-1 #1 SMP PREEMPT_DYNAMIC Fri, 27 Jun 2025 16:35:07 +0000 x86_64
[     8.523] Kernel command line: initrd=\amd-ucode.img initrd=\initramfs-linux.img root="UUID=cf0707f7-f08f-4b58-a42f-2e2fc676368c" rw
[     8.523]  
[     8.523] Current version of pixman: 0.46.2
[     8.523] 	Before reporting problems, check http://wiki.x.org
	to make sure that you have the latest version.
[     8.523] Markers: (--) probed, (**) from config file, (==) default setting,
	(++) from command line, (!!) notice, (II) informational,
	(WW) warning, (EE) error, (NI) not implemented, (??) unknown.
[     8.523] (==) Log file: "/var/log/Xorg.0.log", Time: Tue Aug  5 18:59:54 2025
[     8.524] (==) Using config directory: "/etc/X11/xorg.conf.d"
[     8.524] (==) Using system config directory "/usr/share/X11/xorg.conf.d"
[     8.525] (**) Option "defaultserverlayout" "NVIDIALayout"
[     8.525] (**) ServerLayout "NVIDIALayout"
[     8.525] (**) |-->Screen "NVIDIA-GPU-SCREEN" (0)
[     8.525] (**) |   |-->Monitor "Xiaomi"
[     8.525] (**) |   |-->Device "NVIDIA-GPU-DEVICE"
[     8.525] (**) |-->Screen "AMD-GPU-SCREEN" (1)
[     8.525] (**) |   |-->Monitor "Lenovo"
[     8.525] (**) |   |-->Device "AMD-GPU-DEVICE"
[     8.525] (**) Option "BlankTime" "20"
[     8.525] (**) Option "StandbyTime" "20"
[     8.525] (**) Option "SuspendTime" "30"
[     8.525] (**) Option "OffTime" "50"
[     8.525] (**) Allowing byte-swapped clients
[     8.525] (==) Automatically adding devices
[     8.525] (==) Automatically enabling devices
[     8.525] (==) Automatically adding GPU devices
[     8.525] (==) Automatically binding GPU devices
[     8.525] (==) Max clients allowed: 256, resource mask: 0x1fffff
[     8.525] (WW) The directory "/usr/share/fonts/OTF" does not exist.
[     8.525] 	Entry deleted from font path.
[     8.525] (WW) The directory "/usr/share/fonts/Type1" does not exist.
[     8.525] 	Entry deleted from font path.
[     8.525] (WW) `fonts.dir' not found (or not valid) in "/usr/share/fonts/100dpi".
[     8.525] 	Entry deleted from font path.
[     8.525] 	(Run 'mkfontdir' on "/usr/share/fonts/100dpi").
[     8.525] (WW) `fonts.dir' not found (or not valid) in "/usr/share/fonts/75dpi".
[     8.525] 	Entry deleted from font path.
[     8.525] 	(Run 'mkfontdir' on "/usr/share/fonts/75dpi").
[     8.525] (==) FontPath set to:
	/usr/share/fonts/misc,
	/usr/share/fonts/TTF
[     8.525] (==) ModulePath set to "/usr/lib/xorg/modules"
[     8.525] (II) The server relies on udev to provide the list of input devices.
	If no devices become available, reconfigure udev or disable AutoAddDevices.
[     8.525] (II) Module ABI versions:
[     8.525] 	X.Org ANSI C Emulation: 0.4
[     8.525] 	X.Org Video Driver: 25.2
[     8.525] 	X.Org XInput driver : 24.4
[     8.525] 	X.Org Server Extension : 10.0
[     8.526] (++) using VT number 7

[     8.526] (II) systemd-logind: logind integration requires -keeptty and -keeptty was not provided, disabling logind integration
[     8.527] (II) xfree86: Adding drm device (/dev/dri/card0)
[     8.527] (II) Platform probe for /sys/devices/pci0000:00/0000:00:01.1/0000:01:00.0/drm/card0
[     8.536] (II) xfree86: Adding drm device (/dev/dri/card1)
[     8.536] (II) Platform probe for /sys/devices/pci0000:00/0000:00:08.1/0000:64:00.0/drm/card1
[     8.547] (**) OutputClass "nvidia" ModulePath extended to "/usr/lib/nvidia/xorg,/usr/lib/xorg/modules,/usr/lib/xorg/modules"
[     8.549] (--) PCI: (1@0:0:0) 10de:24a0:1a58:201c rev 161, Mem @ 0xdc000000/16777216, 0x7c00000000/8589934592, 0x7e00000000/33554432, I/O @ 0x0000f000/128, BIOS @ 0x????????/524288
[     8.549] (--) PCI:*(100@0:0:0) 1002:1681:1a58:201c rev 199, Mem @ 0x7e70000000/268435456, 0x7e80000000/2097152, 0xddb00000/524288, I/O @ 0x0000e000/256
[     8.549] (II) LoadModule: "glx"
[     8.553] (II) Loading /usr/lib/xorg/modules/extensions/libglx.so
[     8.556] (II) Module glx: vendor="X.Org Foundation"
[     8.556] 	compiled for 1.21.1.18, module version = 1.0.0
[     8.556] 	ABI class: X.Org Server Extension, version 10.0
[     8.556] (II) LoadModule: "nvidia"
[     8.556] (II) Loading /usr/lib/xorg/modules/drivers/nvidia_drv.so
[     8.558] (II) Module nvidia: vendor="NVIDIA Corporation"
[     8.558] 	compiled for 1.6.99.901, module version = 1.0.0
[     8.558] 	Module class: X.Org Video Driver
[     8.558] (II) LoadModule: "amdgpu"
[     8.558] (II) Loading /usr/lib/xorg/modules/drivers/amdgpu_drv.so
[     8.560] (II) Module amdgpu: vendor="X.Org Foundation"
[     8.560] 	compiled for 1.21.1.11, module version = 23.0.0
[     8.560] 	Module class: X.Org Video Driver
[     8.560] 	ABI class: X.Org Video Driver, version 25.2
[     8.560] (II) NVIDIA dlloader X Driver  575.64  Tue Jun 10 18:43:38 UTC 2025
[     8.560] (II) NVIDIA Unified Driver for all Supported NVIDIA GPUs
[     8.560] (II) AMDGPU: Driver for AMD Radeon:
	All GPUs supported by the amdgpu kernel driver
[     8.580] (II) Loading sub module "fb"
[     8.580] (II) LoadModule: "fb"
[     8.580] (II) Module "fb" already built-in
[     8.580] (II) Loading sub module "wfb"
[     8.580] (II) LoadModule: "wfb"
[     8.581] (II) Loading /usr/lib/xorg/modules/libwfb.so
[     8.581] (II) Module wfb: vendor="X.Org Foundation"
[     8.581] 	compiled for 1.21.1.18, module version = 1.0.0
[     8.581] 	ABI class: X.Org ANSI C Emulation, version 0.4
[     8.587] (**) NVIDIA(0): Depth 24, (--) framebuffer bpp 32
[     8.587] (==) NVIDIA(0): RGB weight 888
[     8.587] (==) NVIDIA(0): Default visual is TrueColor
[     8.587] (==) NVIDIA(0): Using gamma correction (1.0, 1.0, 1.0)
[     8.587] (II) Applying OutputClass "nvidia" options to /dev/dri/card0
[     8.587] (**) NVIDIA(0): Option "AllowEmptyInitialConfiguration"
[     8.587] (**) NVIDIA(0): Enabling 2D acceleration
[     8.587] (II) Loading sub module "glxserver_nvidia"
[     8.587] (II) LoadModule: "glxserver_nvidia"
[     8.588] (II) Loading /usr/lib/nvidia/xorg/libglxserver_nvidia.so
[     8.635] (II) Module glxserver_nvidia: vendor="NVIDIA Corporation"
[     8.635] 	compiled for 1.6.99.901, module version = 1.0.0
[     8.635] 	Module class: X.Org Server Extension
[     8.635] (II) NVIDIA GLX Module  575.64  Tue Jun 10 18:47:53 UTC 2025
[     8.635] (II) NVIDIA: The X server supports PRIME Render Offload.
[     8.638] (--) NVIDIA(0): Valid display device(s) on GPU-0 at PCI:1:0:0
[     8.638] (--) NVIDIA(0):     DFP-0 (boot)
[     8.665] (II) NVIDIA(0): NVIDIA GPU NVIDIA GeForce RTX 3070 Ti Laptop GPU (GA104-A) at
[     8.665] (II) NVIDIA(0):     PCI:1:0:0 (GPU-0)
[     8.665] (--) NVIDIA(0): Memory: 8388608 kBytes
[     8.665] (--) NVIDIA(0): VideoBIOS: 94.04.7f.40.3f
[     8.665] (II) NVIDIA(0): Detected PCI Express Link width: 16X
[     8.751] (--) NVIDIA(GPU-0): XMI Mi Monitor (DFP-0): connected
[     8.751] (--) NVIDIA(GPU-0): XMI Mi Monitor (DFP-0): Internal TMDS
[     8.751] (--) NVIDIA(GPU-0): XMI Mi Monitor (DFP-0): 600.0 MHz maximum pixel clock
[     8.751] (--) NVIDIA(GPU-0): 
[     8.789] (WW) NVIDIA(0): No valid modes for "DFP-0:2560x1080"; removing.
[     8.793] (II) NVIDIA(0): Validated MetaModes:
[     8.793] (II) NVIDIA(0):     "DFP-0:3440x1440"
[     8.793] (II) NVIDIA(0):     "DFP-0:1920x1080"
[     8.793] (II) NVIDIA(0): Virtual screen size determined to be 3440 x 1440
[     9.021] (--) NVIDIA(0): DPI set to (109, 110); computed from "UseEdidDpi" X config
[     9.021] (--) NVIDIA(0):     option
[     9.021] (**) AMDGPU(G0): Depth 24, (--) framebuffer bpp 32
[     9.021] (II) AMDGPU(G0): Pixel depth = 24 bits stored in 4 bytes (32 bpp pixmaps)
[     9.021] (==) AMDGPU(G0): Default visual is TrueColor
[     9.021] (II) Applying OutputClass "AMDgpu" options to /dev/dri/card1
[     9.021] (**) AMDGPU(G0): Option "EnablePageFlip" "off"
[     9.021] (**) AMDGPU(G0): Option "TearFree" "false"
[     9.021] (**) AMDGPU(G0): Option "VariableRefresh" "false"
[     9.021] (==) AMDGPU(G0): RGB weight 888
[     9.021] (II) AMDGPU(G0): Using 8 bits per RGB (8 bit DAC)
[     9.021] (--) AMDGPU(G0): Chipset: "AMD Radeon 680M" (ChipID = 0x1681)
[     9.021] (II) Loading sub module "fb"
[     9.021] (II) LoadModule: "fb"
[     9.021] (II) Module "fb" already built-in
[     9.021] (II) Loading sub module "dri2"
[     9.021] (II) LoadModule: "dri2"
[     9.021] (II) Module "dri2" already built-in
[     9.134] (II) Loading sub module "glamoregl"
[     9.134] (II) LoadModule: "glamoregl"
[     9.134] (II) Loading /usr/lib/xorg/modules/libglamoregl.so
[     9.138] (II) Module glamoregl: vendor="X.Org Foundation"
[     9.138] 	compiled for 1.21.1.18, module version = 1.0.1
[     9.138] 	ABI class: X.Org ANSI C Emulation, version 0.4
[     9.176] (II) AMDGPU(G0): glamor X acceleration enabled on AMD Radeon 680M (radeonsi, rembrandt, LLVM 20.1.6, DRM 3.63, 6.15.4-arch2-1)
[     9.176] (II) AMDGPU(G0): glamor detected, initialising EGL layer.
[     9.176] (**) AMDGPU(G0): TearFree property default: off
[     9.177] (II) AMDGPU(G0): Output eDP-1-0 using monitor section Laptop
[     9.177] (**) AMDGPU(G0): Option "PreferredMode" "2560x1440"
[     9.177] (**) AMDGPU(G0): Option "Position" "0 0"
[     9.178] (II) AMDGPU(G0): Output DisplayPort-1-0 using monitor section Lenovo
[     9.178] (**) AMDGPU(G0): Option "PreferredMode" "1920x1080_60.00"
[     9.178] (**) AMDGPU(G0): Option "Position" "-1080 290"
[     9.178] (**) AMDGPU(G0): Option "Rotate" "right"
[     9.178] (**) AMDGPU(G0): Option "Primary" "true"
[     9.179] (II) AMDGPU(G0): Output DisplayPort-1-1 has no monitor section
[     9.179] (II) AMDGPU(G0): Output DisplayPort-1-2 has no monitor section
[     9.179] (II) AMDGPU(G0): Output DisplayPort-1-3 has no monitor section
[     9.179] (II) AMDGPU(G0): Output DisplayPort-1-4 has no monitor section
[     9.179] (II) AMDGPU(G0): Output DisplayPort-1-5 has no monitor section
[     9.193] (WW) AMDGPU(G0): 7 ZaphodHeads crtcs unavailable. Some outputs will stay off.
[     9.195] (II) AMDGPU(G0): EDID for output DisplayPort-1-0
[     9.195] (II) AMDGPU(G0): Manufacturer: LEN  Model: 61ab  Serial#: 16843009
[     9.195] (II) AMDGPU(G0): Year: 2018  Week: 23
[     9.195] (II) AMDGPU(G0): EDID Version: 1.3
[     9.195] (II) AMDGPU(G0): Digital Display Input
[     9.195] (II) AMDGPU(G0): Max Image Size [cm]: horiz.: 51  vert.: 29
[     9.195] (II) AMDGPU(G0): Gamma: 2.20
[     9.195] (II) AMDGPU(G0): DPMS capabilities: Off
[     9.195] (II) AMDGPU(G0): Supported color encodings: RGB 4:4:4 YCrCb 4:4:4 
[     9.195] (II) AMDGPU(G0): Default color space is primary color space
[     9.195] (II) AMDGPU(G0): First detailed timing is preferred mode
[     9.195] (II) AMDGPU(G0): redX: 0.641 redY: 0.342   greenX: 0.298 greenY: 0.624
[     9.195] (II) AMDGPU(G0): blueX: 0.150 blueY: 0.062   whiteX: 0.313 whiteY: 0.329
[     9.195] (II) AMDGPU(G0): Supported established timings:
[     9.195] (II) AMDGPU(G0): 720x400@70Hz
[     9.195] (II) AMDGPU(G0): 640x480@60Hz
[     9.195] (II) AMDGPU(G0): 640x480@67Hz
[     9.195] (II) AMDGPU(G0): 640x480@72Hz
[     9.195] (II) AMDGPU(G0): 640x480@75Hz
[     9.195] (II) AMDGPU(G0): 800x600@60Hz
[     9.195] (II) AMDGPU(G0): 800x600@72Hz
[     9.195] (II) AMDGPU(G0): 800x600@75Hz
[     9.195] (II) AMDGPU(G0): 1024x768@60Hz
[     9.195] (II) AMDGPU(G0): 1024x768@70Hz
[     9.195] (II) AMDGPU(G0): 1024x768@75Hz
[     9.195] (II) AMDGPU(G0): 1280x1024@75Hz
[     9.195] (II) AMDGPU(G0): Manufacturer's mask: 0
[     9.195] (II) AMDGPU(G0): Supported standard timings:
[     9.195] (II) AMDGPU(G0): #0: hsize: 1152  vsize 864  refresh: 75  vid: 20337
[     9.195] (II) AMDGPU(G0): #1: hsize: 1280  vsize 1024  refresh: 60  vid: 32897
[     9.195] (II) AMDGPU(G0): #2: hsize: 1280  vsize 1024  refresh: 72  vid: 35969
[     9.195] (II) AMDGPU(G0): #3: hsize: 1440  vsize 900  refresh: 60  vid: 149
[     9.195] (II) AMDGPU(G0): #4: hsize: 1680  vsize 1050  refresh: 60  vid: 179
[     9.195] (II) AMDGPU(G0): #5: hsize: 1920  vsize 1080  refresh: 60  vid: 49361
[     9.195] (II) AMDGPU(G0): Supported detailed timing:
[     9.195] (II) AMDGPU(G0): clock: 148.5 MHz   Image Size:  509 x 286 mm
[     9.195] (II) AMDGPU(G0): h_active: 1920  h_sync: 2008  h_sync_end 2052 h_blank_end 2200 h_border: 0
[     9.195] (II) AMDGPU(G0): v_active: 1080  v_sync: 1084  v_sync_end 1089 v_blanking: 1125 v_border: 0
[     9.195] (II) AMDGPU(G0): Serial No: U3334G8X
[     9.195] (II) AMDGPU(G0): Ranges: V min: 50 V max: 75 Hz, H min: 30 H max: 83 kHz, PixClock max 175 MHz
[     9.195] (II) AMDGPU(G0): Monitor name: LEN P23i-10
[     9.195] (II) AMDGPU(G0): Supported detailed timing:
[     9.195] (II) AMDGPU(G0): clock: 74.2 MHz   Image Size:  509 x 286 mm
[     9.195] (II) AMDGPU(G0): h_active: 1280  h_sync: 1390  h_sync_end 1430 h_blank_end 1650 h_border: 0
[     9.195] (II) AMDGPU(G0): v_active: 720  v_sync: 725  v_sync_end 730 v_blanking: 750 v_border: 0
[     9.195] (II) AMDGPU(G0): Supported detailed timing:
[     9.195] (II) AMDGPU(G0): clock: 27.0 MHz   Image Size:  509 x 286 mm
[     9.195] (II) AMDGPU(G0): h_active: 720  h_sync: 736  h_sync_end 798 h_blank_end 858 h_border: 0
[     9.195] (II) AMDGPU(G0): v_active: 480  v_sync: 489  v_sync_end 495 v_blanking: 525 v_border: 0
[     9.195] (II) AMDGPU(G0): Supported detailed timing:
[     9.195] (II) AMDGPU(G0): clock: 27.0 MHz   Image Size:  509 x 286 mm
[     9.195] (II) AMDGPU(G0): h_active: 720  h_sync: 732  h_sync_end 796 h_blank_end 864 h_border: 0
[     9.195] (II) AMDGPU(G0): v_active: 576  v_sync: 581  v_sync_end 586 v_blanking: 625 v_border: 0
[     9.195] (II) AMDGPU(G0): Number of EDID sections to follow: 1
[     9.195] (II) AMDGPU(G0): EDID (in hex):
[     9.195] (II) AMDGPU(G0): 	00ffffffffffff0030aeab6101010101
[     9.195] (II) AMDGPU(G0): 	171c010380331d782e27b5a4574c9f26
[     9.195] (II) AMDGPU(G0): 	0f5054bdcf00714f8180818c9500b300
[     9.195] (II) AMDGPU(G0): 	d1c001010101023a801871382d40582c
[     9.195] (II) AMDGPU(G0): 	4500fd1e1100001e000000ff00553333
[     9.195] (II) AMDGPU(G0): 	33344738580a20202020000000fd0032
[     9.195] (II) AMDGPU(G0): 	4b1e5311000a202020202020000000fc
[     9.195] (II) AMDGPU(G0): 	004c454e20503233692d31300a200182
[     9.195] (II) AMDGPU(G0): 	02031ef14b010203040514111213901f
[     9.195] (II) AMDGPU(G0): 	230907078301000065030c001000011d
[     9.195] (II) AMDGPU(G0): 	007251d01e206e285500fd1e1100001e
[     9.196] (II) AMDGPU(G0): 	8c0ad08a20e02d10103e9600fd1e1100
[     9.196] (II) AMDGPU(G0): 	00188c0ad090204031200c405500fd1e
[     9.196] (II) AMDGPU(G0): 	11000018000000000000000000000000
[     9.196] (II) AMDGPU(G0): 	00000000000000000000000000000000
[     9.196] (II) AMDGPU(G0): 	00000000000000000000000000000052
[     9.196] (II) AMDGPU(G0): Printing probed modes for output DisplayPort-1-0
[     9.196] (II) AMDGPU(G0): Modeline "1920x1080_60.00"x60.0  172.80  1920 2040 2248 2576  1080 1081 1084 1118 -hsync +vsync (67.1 kHz UP)
[     9.196] (II) AMDGPU(G0): Modeline "1920x1080"x60.0  148.50  1920 2008 2052 2200  1080 1084 1089 1125 +hsync +vsync (67.5 kHz eP)
[     9.196] (II) AMDGPU(G0): Modeline "1920x1080"x50.0  148.50  1920 2448 2492 2640  1080 1084 1089 1125 +hsync +vsync (56.2 kHz e)
[     9.196] (II) AMDGPU(G0): Modeline "1920x1080"x59.9  148.35  1920 2008 2052 2200  1080 1084 1089 1125 +hsync +vsync (67.4 kHz e)
[     9.196] (II) AMDGPU(G0): Modeline "1680x1050"x59.9  119.00  1680 1728 1760 1840  1050 1053 1059 1080 +hsync -vsync (64.7 kHz e)
[     9.196] (II) AMDGPU(G0): Modeline "1280x1024"x75.0  135.00  1280 1296 1440 1688  1024 1025 1028 1066 +hsync +vsync (80.0 kHz e)
[     9.196] (II) AMDGPU(G0): Modeline "1280x1024"x72.0  132.84  1280 1368 1504 1728  1024 1025 1028 1067 -hsync +vsync (76.9 kHz)
[     9.196] (II) AMDGPU(G0): Modeline "1280x1024"x60.0  108.00  1280 1328 1440 1688  1024 1025 1028 1066 +hsync +vsync (64.0 kHz e)
[     9.196] (II) AMDGPU(G0): Modeline "1440x900"x59.9   88.75  1440 1488 1520 1600  900 903 909 926 +hsync -vsync (55.5 kHz e)
[     9.196] (II) AMDGPU(G0): Modeline "1280x800"x60.0  148.50  1280 2008 2052 2200  800 1084 1089 1125 +hsync +vsync (67.5 kHz e)
[     9.196] (II) AMDGPU(G0): Modeline "1152x864"x75.0  108.00  1152 1216 1344 1600  864 865 868 900 +hsync +vsync (67.5 kHz e)
[     9.196] (II) AMDGPU(G0): Modeline "1280x720"x60.0   74.25  1280 1390 1430 1650  720 725 730 750 +hsync +vsync (45.0 kHz e)
[     9.196] (II) AMDGPU(G0): Modeline "1280x720"x50.0   74.25  1280 1720 1760 1980  720 725 730 750 +hsync +vsync (37.5 kHz e)
[     9.196] (II) AMDGPU(G0): Modeline "1280x720"x59.9   74.18  1280 1390 1430 1650  720 725 730 750 +hsync +vsync (45.0 kHz e)
[     9.196] (II) AMDGPU(G0): Modeline "1024x768"x75.0   78.75  1024 1040 1136 1312  768 769 772 800 +hsync +vsync (60.0 kHz e)
[     9.196] (II) AMDGPU(G0): Modeline "1024x768"x70.1   75.00  1024 1048 1184 1328  768 771 777 806 -hsync -vsync (56.5 kHz e)
[     9.196] (II) AMDGPU(G0): Modeline "1024x768"x60.0   65.00  1024 1048 1184 1344  768 771 777 806 -hsync -vsync (48.4 kHz e)
[     9.196] (II) AMDGPU(G0): Modeline "800x600"x72.2   50.00  800 856 976 1040  600 637 643 666 +hsync +vsync (48.1 kHz e)
[     9.196] (II) AMDGPU(G0): Modeline "800x600"x75.0   49.50  800 816 896 1056  600 601 604 625 +hsync +vsync (46.9 kHz e)
[     9.196] (II) AMDGPU(G0): Modeline "800x600"x60.3   40.00  800 840 968 1056  600 601 605 628 +hsync +vsync (37.9 kHz e)
[     9.196] (II) AMDGPU(G0): Modeline "720x576"x50.0   27.00  720 732 796 864  576 581 586 625 -hsync -vsync (31.2 kHz e)
[     9.196] (II) AMDGPU(G0): Modeline "720x480"x60.0   27.03  720 736 798 858  480 489 495 525 -hsync -vsync (31.5 kHz e)
[     9.196] (II) AMDGPU(G0): Modeline "720x480"x59.9   27.00  720 736 798 858  480 489 495 525 -hsync -vsync (31.5 kHz e)
[     9.196] (II) AMDGPU(G0): Modeline "640x480"x75.0   31.50  640 656 720 840  480 481 484 500 -hsync -vsync (37.5 kHz e)
[     9.196] (II) AMDGPU(G0): Modeline "640x480"x72.8   31.50  640 664 704 832  480 489 492 520 -hsync -vsync (37.9 kHz e)
[     9.196] (II) AMDGPU(G0): Modeline "640x480"x66.7   30.24  640 704 768 864  480 483 486 525 -hsync -vsync (35.0 kHz e)
[     9.196] (II) AMDGPU(G0): Modeline "640x480"x60.0   25.20  640 656 752 800  480 490 492 525 -hsync -vsync (31.5 kHz e)
[     9.196] (II) AMDGPU(G0): Modeline "640x480"x59.9   25.18  640 656 752 800  480 490 492 525 -hsync -vsync (31.5 kHz e)
[     9.196] (II) AMDGPU(G0): Modeline "720x400"x70.1   28.32  720 738 846 900  400 412 414 449 -hsync +vsync (31.5 kHz e)
[     9.196] (II) AMDGPU(G0): EDID for output eDP-1-0
[     9.196] (II) AMDGPU(G0): Manufacturer: TMX  Model: 1400  Serial#: 0
[     9.196] (II) AMDGPU(G0): Year: 2021  Week: 3
[     9.196] (II) AMDGPU(G0): EDID Version: 1.4
[     9.196] (II) AMDGPU(G0): Digital Display Input
[     9.196] (II) AMDGPU(G0): 8 bits per channel
[     9.196] (II) AMDGPU(G0): Digital interface is DisplayPort
[     9.196] (II) AMDGPU(G0): Max Image Size [cm]: horiz.: 31  vert.: 17
[     9.196] (II) AMDGPU(G0): Gamma: 2.20
[     9.196] (II) AMDGPU(G0): No DPMS capabilities specified
[     9.196] (II) AMDGPU(G0): Supported color encodings: RGB 4:4:4 
[     9.196] (II) AMDGPU(G0): First detailed timing is preferred mode
[     9.196] (II) AMDGPU(G0): Preferred mode is native pixel format and refresh rate
[     9.197] (II) AMDGPU(G0): Display is continuous-frequency
[     9.197] (II) AMDGPU(G0): redX: 0.680 redY: 0.320   greenX: 0.265 greenY: 0.690
[     9.197] (II) AMDGPU(G0): blueX: 0.150 blueY: 0.060   whiteX: 0.312 whiteY: 0.329
[     9.197] (II) AMDGPU(G0): Manufacturer's mask: 0
[     9.197] (II) AMDGPU(G0): Supported detailed timing:
[     9.197] (II) AMDGPU(G0): clock: 256.1 MHz   Image Size:  310 x 174 mm
[     9.197] (II) AMDGPU(G0): h_active: 2560  h_sync: 2608  h_sync_end 2640 h_blank_end 2736 h_border: 0
[     9.197] (II) AMDGPU(G0): v_active: 1440  v_sync: 1443  v_sync_end 1449 v_blanking: 1560 v_border: 0
[     9.197] (II) AMDGPU(G0): Ranges: V min: 48 V max: 165 Hz, H min: 260 H max: 260 kHz, PixClock max 715 MHz
[     9.197] (II) AMDGPU(G0): Monitor name: TL140BDXP02-0
[     9.197] (II) AMDGPU(G0): Number of EDID sections to follow: 1
[     9.197] (II) AMDGPU(G0): EDID (in hex):
[     9.197] (II) AMDGPU(G0): 	00ffffffffffff0051b8001400000000
[     9.197] (II) AMDGPU(G0): 	031f0104a51f1178030f91ae5243b026
[     9.197] (II) AMDGPU(G0): 	0f505400000001010101010101010101
[     9.197] (II) AMDGPU(G0): 	010101010101096400b0a0a078503020
[     9.197] (II) AMDGPU(G0): 	360036ae1000001e000000fd0c30a505
[     9.197] (II) AMDGPU(G0): 	0547010a202020202020000000100030
[     9.197] (II) AMDGPU(G0): 	a5f7f741000a202020202020000000fc
[     9.197] (II) AMDGPU(G0): 	00544c3134304244585030322d300142
[     9.197] (II) AMDGPU(G0): 	701379000003011419130185ff09af00
[     9.197] (II) AMDGPU(G0): 	2f001f009f0577000200050000000000
[     9.197] (II) AMDGPU(G0): 	00000000000000000000000000000000
[     9.197] (II) AMDGPU(G0): 	00000000000000000000000000000000
[     9.197] (II) AMDGPU(G0): 	00000000000000000000000000000000
[     9.197] (II) AMDGPU(G0): 	00000000000000000000000000000000
[     9.197] (II) AMDGPU(G0): 	00000000000000000000000000000000
[     9.197] (II) AMDGPU(G0): 	00000000000000000000000000008390
[     9.197] (II) AMDGPU(G0): Printing probed modes for output eDP-1-0
[     9.197] (II) AMDGPU(G0): Modeline "2560x1440"x165.0  704.26  2560 2608 2640 2736  1440 1443 1449 1560 -hsync -vsync (257.4 kHz UeP)
[     9.197] (II) AMDGPU(G0): Modeline "2560x1440"x60.0  256.09  2560 2608 2640 2736  1440 1443 1449 1560 +hsync +vsync (93.6 kHz eP)
[     9.197] (II) AMDGPU(G0): Modeline "2560x1440"x165.0  704.26  2560 2608 2640 2736  1440 1443 1449 1560 -hsync -vsync (257.4 kHz)
[     9.197] (II) AMDGPU(G0): Modeline "1920x1200"x165.0  704.26  1920 2608 2640 2736  1200 1443 1449 1560 -hsync -vsync (257.4 kHz e)
[     9.197] (II) AMDGPU(G0): Modeline "1920x1080"x165.0  704.26  1920 2608 2640 2736  1080 1443 1449 1560 -hsync -vsync (257.4 kHz e)
[     9.197] (II) AMDGPU(G0): Modeline "1600x1200"x165.0  704.26  1600 2608 2640 2736  1200 1443 1449 1560 -hsync -vsync (257.4 kHz e)
[     9.197] (II) AMDGPU(G0): Modeline "1680x1050"x165.0  704.26  1680 2608 2640 2736  1050 1443 1449 1560 -hsync -vsync (257.4 kHz e)
[     9.197] (II) AMDGPU(G0): Modeline "1280x1024"x165.0  704.26  1280 2608 2640 2736  1024 1443 1449 1560 -hsync -vsync (257.4 kHz e)
[     9.197] (II) AMDGPU(G0): Modeline "1440x900"x165.0  704.26  1440 2608 2640 2736  900 1443 1449 1560 -hsync -vsync (257.4 kHz e)
[     9.197] (II) AMDGPU(G0): Modeline "1280x800"x165.0  704.26  1280 2608 2640 2736  800 1443 1449 1560 -hsync -vsync (257.4 kHz e)
[     9.197] (II) AMDGPU(G0): Modeline "1280x720"x165.0  704.26  1280 2608 2640 2736  720 1443 1449 1560 -hsync -vsync (257.4 kHz e)
[     9.197] (II) AMDGPU(G0): Modeline "1024x768"x165.0  704.26  1024 2608 2640 2736  768 1443 1449 1560 -hsync -vsync (257.4 kHz e)
[     9.197] (II) AMDGPU(G0): Modeline "800x600"x165.0  704.26  800 2608 2640 2736  600 1443 1449 1560 -hsync -vsync (257.4 kHz e)
[     9.197] (II) AMDGPU(G0): Modeline "640x480"x165.0  704.26  640 2608 2640 2736  480 1443 1449 1560 -hsync -vsync (257.4 kHz e)
[     9.197] (II) AMDGPU(G0): EDID for output DisplayPort-1-1
[     9.197] (II) AMDGPU(G0): EDID for output DisplayPort-1-2
[     9.197] (II) AMDGPU(G0): EDID for output DisplayPort-1-3
[     9.197] (II) AMDGPU(G0): EDID for output DisplayPort-1-4
[     9.197] (II) AMDGPU(G0): EDID for output DisplayPort-1-5
[     9.197] (II) AMDGPU(G0): mem size init: gart size :1db50b000 vram size: s:1da33000 visible:1da33000
[     9.197] (==) AMDGPU(G0): DPI set to (96, 96)
[     9.197] (==) AMDGPU(G0): Using gamma correction (1.0, 1.0, 1.0)
[     9.197] (II) Loading sub module "ramdac"
[     9.197] (II) LoadModule: "ramdac"
[     9.197] (II) Module "ramdac" already built-in
[     9.198] (II) NVIDIA: Reserving 24576.00 MB of virtual memory for indirect memory
[     9.198] (II) NVIDIA:     access.
[     9.226] (II) NVIDIA(0): Setting mode "DFP-0:3440x1440"
[     9.295] (==) NVIDIA(0): Disabling shared memory pixmaps
[     9.295] (==) NVIDIA(0): Backing store enabled
[     9.295] (==) NVIDIA(0): Silken mouse enabled
[     9.295] (**) NVIDIA(0): DPMS enabled
[     9.295] (WW) NVIDIA(0): Option "PrimaryGPU" is not used
[     9.295] (WW) NVIDIA(0): Option "AllowNVIDIAGPUScreens" is not used
[     9.295] (WW) NVIDIA(0): Option "Position" is not used
[     9.295] (WW) NVIDIA(0): Option "PreferredMode" is not used
[     9.295] (II) Loading sub module "dri2"
[     9.295] (II) LoadModule: "dri2"
[     9.295] (II) Module "dri2" already built-in
[     9.295] (II) NVIDIA(0): [DRI2] Setup complete
[     9.295] (II) NVIDIA(0): [DRI2]   VDPAU driver: nvidia
[     9.296] (II) AMDGPU(G0): [DRI2] Setup complete
[     9.296] (II) AMDGPU(G0): [DRI2]   DRI driver: radeonsi
[     9.296] (II) AMDGPU(G0): [DRI2]   VDPAU driver: radeonsi
[     9.381] (II) AMDGPU(G0): Front buffer pitch: 4096 bytes
[     9.381] (II) AMDGPU(G0): SYNC extension fences enabled
[     9.381] (II) AMDGPU(G0): Present extension enabled
[     9.381] (==) AMDGPU(G0): DRI3 enabled
[     9.381] (==) AMDGPU(G0): Backing store enabled
[     9.381] (II) AMDGPU(G0): Direct rendering enabled
[     9.388] (II) AMDGPU(G0): Use GLAMOR acceleration.
[     9.388] (II) AMDGPU(G0): Acceleration enabled
[     9.388] (**) AMDGPU(G0): DPMS enabled
[     9.388] (==) AMDGPU(G0): Silken mouse enabled
[     9.410] (WW) AMDGPU(G0): Option "HotplugDriver" is not used
[     9.410] (WW) AMDGPU(G0): Option "Position" is not used
[     9.410] (WW) AMDGPU(G0): Option "PreferredMode" is not used
[     9.410] (II) Initializing extension Generic Event Extension
[     9.410] (II) Initializing extension SHAPE
[     9.410] (II) Initializing extension MIT-SHM
[     9.410] (II) Initializing extension XInputExtension
[     9.410] (II) Initializing extension XTEST
[     9.411] (II) Initializing extension BIG-REQUESTS
[     9.411] (II) Initializing extension SYNC
[     9.411] (II) Initializing extension XKEYBOARD
[     9.411] (II) Initializing extension XC-MISC
[     9.411] (II) Initializing extension SECURITY
[     9.411] (II) Initializing extension XFIXES
[     9.411] (II) Initializing extension RENDER
[     9.411] (II) Initializing extension RANDR
[     9.411] (II) Initializing extension COMPOSITE
[     9.411] (II) Initializing extension DAMAGE
[     9.411] (II) Initializing extension MIT-SCREEN-SAVER
[     9.411] (II) Initializing extension DOUBLE-BUFFER
[     9.411] (II) Initializing extension RECORD
[     9.411] (II) Initializing extension DPMS
[     9.411] (II) Initializing extension Present
[     9.411] (II) Initializing extension DRI3
[     9.412] (II) Initializing extension X-Resource
[     9.412] (II) Initializing extension XVideo
[     9.412] (II) Initializing extension XVideo-MotionCompensation
[     9.412] (II) Initializing extension GLX
[     9.412] (II) Initializing extension GLX
[     9.412] (II) Indirect GLX disabled.
[     9.412] (II) GLX: Another vendor is already registered for screen 0
[     9.412] (II) Initializing extension XFree86-VidModeExtension
[     9.412] (II) Initializing extension XFree86-DGA
[     9.412] (II) Initializing extension XFree86-DRI
[     9.412] (II) Initializing extension DRI2
[     9.412] (II) Initializing extension NV-GLX
[     9.412] (II) Initializing extension NV-CONTROL
[     9.412] (II) Initializing extension XINERAMA
[    10.102] (II) config/udev: Adding input device Video Bus (/dev/input/event2)
[    10.102] (**) Video Bus: Applying InputClass "libinput keyboard catchall"
[    10.102] (II) LoadModule: "libinput"
[    10.102] (II) Loading /usr/lib/xorg/modules/input/libinput_drv.so
[    10.106] (II) Module libinput: vendor="X.Org Foundation"
[    10.106] 	compiled for 1.21.1.13, module version = 1.5.0
[    10.106] 	Module class: X.Org XInput Driver
[    10.106] 	ABI class: X.Org XInput driver, version 24.4
[    10.106] (II) Using input driver 'libinput' for 'Video Bus'
[    10.106] (**) Video Bus: always reports core events
[    10.106] (**) Option "Device" "/dev/input/event2"
[    10.110] (II) event2  - Video Bus: is tagged by udev as: Keyboard
[    10.110] (II) event2  - Video Bus: device is a keyboard
[    10.110] (II) event2  - Video Bus: device removed
[    10.130] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:06/LNXVIDEO:00/input/input2/event2"
[    10.130] (II) XINPUT: Adding extended input device "Video Bus" (type: KEYBOARD, id 6)
[    10.131] (II) event2  - Video Bus: is tagged by udev as: Keyboard
[    10.131] (II) event2  - Video Bus: device is a keyboard
[    10.132] (II) config/udev: Adding input device Video Bus (/dev/input/event3)
[    10.132] (**) Video Bus: Applying InputClass "libinput keyboard catchall"
[    10.132] (II) Using input driver 'libinput' for 'Video Bus'
[    10.132] (**) Video Bus: always reports core events
[    10.132] (**) Option "Device" "/dev/input/event3"
[    10.132] (II) event3  - Video Bus: is tagged by udev as: Keyboard
[    10.132] (II) event3  - Video Bus: device is a keyboard
[    10.132] (II) event3  - Video Bus: device removed
[    10.146] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:29/LNXVIDEO:01/input/input3/event3"
[    10.146] (II) XINPUT: Adding extended input device "Video Bus" (type: KEYBOARD, id 7)
[    10.147] (II) event3  - Video Bus: is tagged by udev as: Keyboard
[    10.147] (II) event3  - Video Bus: device is a keyboard
[    10.147] (II) config/udev: Adding input device Lid Switch (/dev/input/event0)
[    10.147] (II) No input driver specified, ignoring this device.
[    10.147] (II) This device may have been added with another device file.
[    10.148] (II) config/udev: Adding input device Power Button (/dev/input/event1)
[    10.148] (**) Power Button: Applying InputClass "libinput keyboard catchall"
[    10.148] (II) Using input driver 'libinput' for 'Power Button'
[    10.148] (**) Power Button: always reports core events
[    10.148] (**) Option "Device" "/dev/input/event1"
[    10.148] (II) event1  - Power Button: is tagged by udev as: Keyboard
[    10.148] (II) event1  - Power Button: device is a keyboard
[    10.148] (II) event1  - Power Button: device removed
[    10.163] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0C:00/input/input1/event1"
[    10.163] (II) XINPUT: Adding extended input device "Power Button" (type: KEYBOARD, id 8)
[    10.164] (II) event1  - Power Button: is tagged by udev as: Keyboard
[    10.164] (II) event1  - Power Button: device is a keyboard
[    10.165] (II) config/udev: Adding input device HDA NVidia HDMI/DP,pcm=3 (/dev/input/event20)
[    10.165] (II) No input driver specified, ignoring this device.
[    10.165] (II) This device may have been added with another device file.
[    10.165] (II) config/udev: Adding input device HDA NVidia HDMI/DP,pcm=7 (/dev/input/event22)
[    10.165] (II) No input driver specified, ignoring this device.
[    10.165] (II) This device may have been added with another device file.
[    10.165] (II) config/udev: Adding input device HDA NVidia HDMI/DP,pcm=8 (/dev/input/event23)
[    10.165] (II) No input driver specified, ignoring this device.
[    10.165] (II) This device may have been added with another device file.
[    10.165] (II) config/udev: Adding input device HDA NVidia HDMI/DP,pcm=9 (/dev/input/event24)
[    10.165] (II) No input driver specified, ignoring this device.
[    10.165] (II) This device may have been added with another device file.
[    10.166] (II) config/udev: Adding input device HD-Audio Generic HDMI/DP,pcm=3 (/dev/input/event13)
[    10.166] (II) No input driver specified, ignoring this device.
[    10.166] (II) This device may have been added with another device file.
[    10.166] (II) config/udev: Adding input device HD-Audio Generic HDMI/DP,pcm=7 (/dev/input/event21)
[    10.166] (II) No input driver specified, ignoring this device.
[    10.166] (II) This device may have been added with another device file.
[    10.167] (II) config/udev: Adding input device Razer Razer Blade (/dev/input/event5)
[    10.167] (**) Razer Razer Blade: Applying InputClass "libinput keyboard catchall"
[    10.167] (II) Using input driver 'libinput' for 'Razer Razer Blade'
[    10.167] (**) Razer Razer Blade: always reports core events
[    10.167] (**) Option "Device" "/dev/input/event5"
[    10.167] (II) event5  - Razer Razer Blade: is tagged by udev as: Keyboard
[    10.167] (II) event5  - Razer Razer Blade: device is a keyboard
[    10.168] (II) event5  - Razer Razer Blade: device removed
[    10.185] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:08.1/0000:64:00.3/usb1/1-4/1-4:1.0/0003:1532:028C.0001/input/input23/event5"
[    10.185] (II) XINPUT: Adding extended input device "Razer Razer Blade" (type: KEYBOARD, id 9)
[    10.186] (II) event5  - Razer Razer Blade: is tagged by udev as: Keyboard
[    10.186] (II) event5  - Razer Razer Blade: device is a keyboard
[    10.187] (II) config/udev: Adding input device Razer Razer Blade (/dev/input/event7)
[    10.187] (**) Razer Razer Blade: Applying InputClass "libinput keyboard catchall"
[    10.187] (II) Using input driver 'libinput' for 'Razer Razer Blade'
[    10.187] (**) Razer Razer Blade: always reports core events
[    10.187] (**) Option "Device" "/dev/input/event7"
[    10.188] (II) event7  - Razer Razer Blade: is tagged by udev as: Keyboard
[    10.188] (II) event7  - Razer Razer Blade: device is a keyboard
[    10.188] (II) event7  - Razer Razer Blade: device removed
[    10.204] (II) libinput: Razer Razer Blade: needs a virtual subdevice
[    10.204] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:08.1/0000:64:00.3/usb1/1-4/1-4:1.1/0003:1532:028C.0002/input/input24/event7"
[    10.204] (II) XINPUT: Adding extended input device "Razer Razer Blade" (type: MOUSE, id 10)
[    10.204] (**) Option "AccelerationScheme" "none"
[    10.204] (**) Razer Razer Blade: (accel) selected scheme none/0
[    10.204] (**) Razer Razer Blade: (accel) acceleration factor: 2.000
[    10.204] (**) Razer Razer Blade: (accel) acceleration threshold: 4
[    10.206] (II) event7  - Razer Razer Blade: is tagged by udev as: Keyboard
[    10.206] (II) event7  - Razer Razer Blade: device is a keyboard
[    10.206] (II) config/udev: Adding input device Razer Razer Blade (/dev/input/event8)
[    10.206] (**) Razer Razer Blade: Applying InputClass "libinput pointer catchall"
[    10.206] (**) Razer Razer Blade: Applying InputClass "libinput keyboard catchall"
[    10.206] (II) Using input driver 'libinput' for 'Razer Razer Blade'
[    10.206] (**) Razer Razer Blade: always reports core events
[    10.206] (**) Option "Device" "/dev/input/event8"
[    10.260] (II) event8  - Razer Razer Blade: is tagged by udev as: Keyboard Mouse
[    10.260] (II) event8  - Razer Razer Blade: device is a pointer
[    10.260] (II) event8  - Razer Razer Blade: device is a keyboard
[    10.260] (II) event8  - Razer Razer Blade: device removed
[    10.310] (II) libinput: Razer Razer Blade: Step value 0 was provided, libinput Fallback acceleration function is used.
[    10.310] (II) libinput: Razer Razer Blade: Step value 0 was provided, libinput Fallback acceleration function is used.
[    10.310] (II) libinput: Razer Razer Blade: Step value 0 was provided, libinput Fallback acceleration function is used.
[    10.310] (II) libinput: Razer Razer Blade: needs a virtual subdevice
[    10.310] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:08.1/0000:64:00.3/usb1/1-4/1-4:1.2/0003:1532:028C.0003/input/input25/event8"
[    10.310] (II) XINPUT: Adding extended input device "Razer Razer Blade" (type: MOUSE, id 11)
[    10.310] (**) Option "AccelerationScheme" "none"
[    10.310] (**) Razer Razer Blade: (accel) selected scheme none/0
[    10.310] (**) Razer Razer Blade: (accel) acceleration factor: 2.000
[    10.310] (**) Razer Razer Blade: (accel) acceleration threshold: 4
[    10.363] (II) event8  - Razer Razer Blade: is tagged by udev as: Keyboard Mouse
[    10.363] (II) event8  - Razer Razer Blade: device is a pointer
[    10.363] (II) event8  - Razer Razer Blade: device is a keyboard
[    10.364] (II) config/udev: Adding input device Razer Razer Blade (/dev/input/mouse0)
[    10.364] (II) No input driver specified, ignoring this device.
[    10.364] (II) This device may have been added with another device file.
[    10.364] (II) config/udev: Adding input device HD-Audio Generic Headphone Mic (/dev/input/event25)
[    10.364] (II) No input driver specified, ignoring this device.
[    10.364] (II) This device may have been added with another device file.
[    10.364] (II) config/udev: Adding input device Razer Razer DeathAdder V2 X HyperSpeed (/dev/input/event9)
[    10.364] (**) Razer Razer DeathAdder V2 X HyperSpeed: Applying InputClass "libinput pointer catchall"
[    10.364] (II) Using input driver 'libinput' for 'Razer Razer DeathAdder V2 X HyperSpeed'
[    10.364] (**) Razer Razer DeathAdder V2 X HyperSpeed: always reports core events
[    10.364] (**) Option "Device" "/dev/input/event9"
[    10.418] (II) event9  - Razer Razer DeathAdder V2 X HyperSpeed: is tagged by udev as: Mouse
[    10.418] (II) event9  - Razer Razer DeathAdder V2 X HyperSpeed: device is a pointer
[    10.418] (II) event9  - Razer Razer DeathAdder V2 X HyperSpeed: device removed
[    10.445] (II) libinput: Razer Razer DeathAdder V2 X HyperSpeed: Step value 0 was provided, libinput Fallback acceleration function is used.
[    10.445] (II) libinput: Razer Razer DeathAdder V2 X HyperSpeed: Step value 0 was provided, libinput Fallback acceleration function is used.
[    10.445] (II) libinput: Razer Razer DeathAdder V2 X HyperSpeed: Step value 0 was provided, libinput Fallback acceleration function is used.
[    10.445] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:08.3/0000:65:00.3/usb7/7-1/7-1.1/7-1.1.2/7-1.1.2:1.0/0003:1532:009C.0004/input/input26/event9"
[    10.445] (II) XINPUT: Adding extended input device "Razer Razer DeathAdder V2 X HyperSpeed" (type: MOUSE, id 12)
[    10.445] (**) Option "AccelerationScheme" "none"
[    10.445] (**) Razer Razer DeathAdder V2 X HyperSpeed: (accel) selected scheme none/0
[    10.445] (**) Razer Razer DeathAdder V2 X HyperSpeed: (accel) acceleration factor: 2.000
[    10.445] (**) Razer Razer DeathAdder V2 X HyperSpeed: (accel) acceleration threshold: 4
[    10.498] (II) event9  - Razer Razer DeathAdder V2 X HyperSpeed: is tagged by udev as: Mouse
[    10.498] (II) event9  - Razer Razer DeathAdder V2 X HyperSpeed: device is a pointer
[    10.499] (II) config/udev: Adding input device Razer Razer DeathAdder V2 X HyperSpeed (/dev/input/mouse1)
[    10.499] (II) No input driver specified, ignoring this device.
[    10.499] (II) This device may have been added with another device file.
[    10.500] (II) config/udev: Adding input device Razer Razer DeathAdder V2 X HyperSpeed (/dev/input/event4)
[    10.500] (**) Razer Razer DeathAdder V2 X HyperSpeed: Applying InputClass "libinput pointer catchall"
[    10.500] (**) Razer Razer DeathAdder V2 X HyperSpeed: Applying InputClass "libinput keyboard catchall"
[    10.500] (II) Using input driver 'libinput' for 'Razer Razer DeathAdder V2 X HyperSpeed'
[    10.500] (**) Razer Razer DeathAdder V2 X HyperSpeed: always reports core events
[    10.500] (**) Option "Device" "/dev/input/event4"
[    10.501] (II) event4  - Razer Razer DeathAdder V2 X HyperSpeed: is tagged by udev as: Keyboard Mouse
[    10.502] (II) event4  - Razer Razer DeathAdder V2 X HyperSpeed: device is a pointer
[    10.502] (II) event4  - Razer Razer DeathAdder V2 X HyperSpeed: device is a keyboard
[    10.502] (II) event4  - Razer Razer DeathAdder V2 X HyperSpeed: device removed
[    10.519] (II) libinput: Razer Razer DeathAdder V2 X HyperSpeed: Step value 0 was provided, libinput Fallback acceleration function is used.
[    10.519] (II) libinput: Razer Razer DeathAdder V2 X HyperSpeed: Step value 0 was provided, libinput Fallback acceleration function is used.
[    10.519] (II) libinput: Razer Razer DeathAdder V2 X HyperSpeed: Step value 0 was provided, libinput Fallback acceleration function is used.
[    10.519] (II) libinput: Razer Razer DeathAdder V2 X HyperSpeed: needs a virtual subdevice
[    10.519] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:08.3/0000:65:00.3/usb7/7-1/7-1.1/7-1.1.2/7-1.1.2:1.1/0003:1532:009C.0005/input/input29/event4"
[    10.519] (II) XINPUT: Adding extended input device "Razer Razer DeathAdder V2 X HyperSpeed" (type: MOUSE, id 13)
[    10.519] (**) Option "AccelerationScheme" "none"
[    10.519] (**) Razer Razer DeathAdder V2 X HyperSpeed: (accel) selected scheme none/0
[    10.519] (**) Razer Razer DeathAdder V2 X HyperSpeed: (accel) acceleration factor: 2.000
[    10.519] (**) Razer Razer DeathAdder V2 X HyperSpeed: (accel) acceleration threshold: 4
[    10.521] (II) event4  - Razer Razer DeathAdder V2 X HyperSpeed: is tagged by udev as: Keyboard Mouse
[    10.521] (II) event4  - Razer Razer DeathAdder V2 X HyperSpeed: device is a pointer
[    10.521] (II) event4  - Razer Razer DeathAdder V2 X HyperSpeed: device is a keyboard
[    10.522] (II) config/udev: Adding input device Razer Razer DeathAdder V2 X HyperSpeed (/dev/input/mouse2)
[    10.522] (II) No input driver specified, ignoring this device.
[    10.522] (II) This device may have been added with another device file.
[    10.523] (II) config/udev: Adding input device Razer Razer DeathAdder V2 X HyperSpeed (/dev/input/event10)
[    10.523] (**) Razer Razer DeathAdder V2 X HyperSpeed: Applying InputClass "libinput keyboard catchall"
[    10.523] (II) Using input driver 'libinput' for 'Razer Razer DeathAdder V2 X HyperSpeed'
[    10.523] (**) Razer Razer DeathAdder V2 X HyperSpeed: always reports core events
[    10.523] (**) Option "Device" "/dev/input/event10"
[    10.524] (II) event10 - Razer Razer DeathAdder V2 X HyperSpeed: is tagged by udev as: Keyboard
[    10.524] (II) event10 - Razer Razer DeathAdder V2 X HyperSpeed: device is a keyboard
[    10.525] (II) event10 - Razer Razer DeathAdder V2 X HyperSpeed: device removed
[    10.532] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:08.3/0000:65:00.3/usb7/7-1/7-1.1/7-1.1.2/7-1.1.2:1.2/0003:1532:009C.0006/input/input27/event10"
[    10.532] (II) XINPUT: Adding extended input device "Razer Razer DeathAdder V2 X HyperSpeed" (type: KEYBOARD, id 14)
[    10.534] (II) event10 - Razer Razer DeathAdder V2 X HyperSpeed: is tagged by udev as: Keyboard
[    10.534] (II) event10 - Razer Razer DeathAdder V2 X HyperSpeed: device is a keyboard
[    10.535] (II) config/udev: Adding input device Razer Razer DeathAdder V2 X HyperSpeed (/dev/input/event11)
[    10.535] (**) Razer Razer DeathAdder V2 X HyperSpeed: Applying InputClass "libinput keyboard catchall"
[    10.535] (II) Using input driver 'libinput' for 'Razer Razer DeathAdder V2 X HyperSpeed'
[    10.535] (**) Razer Razer DeathAdder V2 X HyperSpeed: always reports core events
[    10.535] (**) Option "Device" "/dev/input/event11"
[    10.536] (II) event11 - Razer Razer DeathAdder V2 X HyperSpeed: is tagged by udev as: Keyboard
[    10.536] (II) event11 - Razer Razer DeathAdder V2 X HyperSpeed: device is a keyboard
[    10.537] (II) event11 - Razer Razer DeathAdder V2 X HyperSpeed: device removed
[    10.567] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:08.3/0000:65:00.3/usb7/7-1/7-1.1/7-1.1.2/7-1.1.2:1.3/0003:1532:009C.0008/input/input28/event11"
[    10.582] (II) XINPUT: Adding extended input device "Razer Razer DeathAdder V2 X HyperSpeed" (type: KEYBOARD, id 15)
[    10.584] (II) event11 - Razer Razer DeathAdder V2 X HyperSpeed: is tagged by udev as: Keyboard
[    10.584] (II) event11 - Razer Razer DeathAdder V2 X HyperSpeed: device is a keyboard
[    10.586] (II) config/udev: Adding input device Microsoft Microsoft® 2.4GHz Transceiver v9.0 (/dev/input/event14)
[    10.586] (**) Microsoft Microsoft® 2.4GHz Transceiver v9.0: Applying InputClass "libinput keyboard catchall"
[    10.586] (II) Using input driver 'libinput' for 'Microsoft Microsoft® 2.4GHz Transceiver v9.0'
[    10.586] (**) Microsoft Microsoft® 2.4GHz Transceiver v9.0: always reports core events
[    10.586] (**) Option "Device" "/dev/input/event14"
[    10.587] (II) event14 - Microsoft Microsoft® 2.4GHz Transceiver v9.0: is tagged by udev as: Keyboard
[    10.587] (II) event14 - Microsoft Microsoft® 2.4GHz Transceiver v9.0: device is a keyboard
[    10.587] (II) event14 - Microsoft Microsoft® 2.4GHz Transceiver v9.0: device removed
[    10.609] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:08.3/0000:65:00.3/usb7/7-1/7-1.1/7-1.1.3/7-1.1.3:1.0/0003:045E:07A5.0009/input/input14/event14"
[    10.609] (II) XINPUT: Adding extended input device "Microsoft Microsoft® 2.4GHz Transceiver v9.0" (type: KEYBOARD, id 16)
[    10.611] (II) event14 - Microsoft Microsoft® 2.4GHz Transceiver v9.0: is tagged by udev as: Keyboard
[    10.611] (II) event14 - Microsoft Microsoft® 2.4GHz Transceiver v9.0: device is a keyboard
[    10.612] (II) config/udev: Adding input device Microsoft Microsoft® 2.4GHz Transceiver v9.0 Mouse (/dev/input/event15)
[    10.612] (**) Microsoft Microsoft® 2.4GHz Transceiver v9.0 Mouse: Applying InputClass "libinput pointer catchall"
[    10.612] (II) Using input driver 'libinput' for 'Microsoft Microsoft® 2.4GHz Transceiver v9.0 Mouse'
[    10.612] (**) Microsoft Microsoft® 2.4GHz Transceiver v9.0 Mouse: always reports core events
[    10.612] (**) Option "Device" "/dev/input/event15"
[    10.665] (II) event15 - Microsoft Microsoft® 2.4GHz Transceiver v9.0 Mouse: is tagged by udev as: Mouse
[    10.665] (II) event15 - Microsoft Microsoft® 2.4GHz Transceiver v9.0 Mouse: device is a pointer
[    10.665] (II) event15 - Microsoft Microsoft® 2.4GHz Transceiver v9.0 Mouse: device removed
[    10.692] (II) libinput: Microsoft Microsoft® 2.4GHz Transceiver v9.0 Mouse: Step value 0 was provided, libinput Fallback acceleration function is used.
[    10.692] (II) libinput: Microsoft Microsoft® 2.4GHz Transceiver v9.0 Mouse: Step value 0 was provided, libinput Fallback acceleration function is used.
[    10.692] (II) libinput: Microsoft Microsoft® 2.4GHz Transceiver v9.0 Mouse: Step value 0 was provided, libinput Fallback acceleration function is used.
[    10.692] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:08.3/0000:65:00.3/usb7/7-1/7-1.1/7-1.1.3/7-1.1.3:1.1/0003:045E:07A5.000A/input/input15/event15"
[    10.692] (II) XINPUT: Adding extended input device "Microsoft Microsoft® 2.4GHz Transceiver v9.0 Mouse" (type: MOUSE, id 17)
[    10.692] (**) Option "AccelerationScheme" "none"
[    10.692] (**) Microsoft Microsoft® 2.4GHz Transceiver v9.0 Mouse: (accel) selected scheme none/0
[    10.692] (**) Microsoft Microsoft® 2.4GHz Transceiver v9.0 Mouse: (accel) acceleration factor: 2.000
[    10.692] (**) Microsoft Microsoft® 2.4GHz Transceiver v9.0 Mouse: (accel) acceleration threshold: 4
[    10.745] (II) event15 - Microsoft Microsoft® 2.4GHz Transceiver v9.0 Mouse: is tagged by udev as: Mouse
[    10.745] (II) event15 - Microsoft Microsoft® 2.4GHz Transceiver v9.0 Mouse: device is a pointer
[    10.746] (II) config/udev: Adding input device Microsoft Microsoft® 2.4GHz Transceiver v9.0 Mouse (/dev/input/mouse3)
[    10.746] (II) No input driver specified, ignoring this device.
[    10.746] (II) This device may have been added with another device file.
[    10.747] (II) config/udev: Adding input device Microsoft Microsoft® 2.4GHz Transceiver v9.0 Consumer Control (/dev/input/event16)
[    10.747] (**) Microsoft Microsoft® 2.4GHz Transceiver v9.0 Consumer Control: Applying InputClass "libinput keyboard catchall"
[    10.747] (II) Using input driver 'libinput' for 'Microsoft Microsoft® 2.4GHz Transceiver v9.0 Consumer Control'
[    10.747] (**) Microsoft Microsoft® 2.4GHz Transceiver v9.0 Consumer Control: always reports core events
[    10.747] (**) Option "Device" "/dev/input/event16"
[    10.748] (II) event16 - Microsoft Microsoft® 2.4GHz Transceiver v9.0 Consumer Control: is tagged by udev as: Keyboard
[    10.748] (II) event16 - Microsoft Microsoft® 2.4GHz Transceiver v9.0 Consumer Control: device is a keyboard
[    10.749] (II) event16 - Microsoft Microsoft® 2.4GHz Transceiver v9.0 Consumer Control: device removed
[    10.780] (II) libinput: Microsoft Microsoft® 2.4GHz Transceiver v9.0 Consumer Control: needs a virtual subdevice
[    10.780] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:08.3/0000:65:00.3/usb7/7-1/7-1.1/7-1.1.3/7-1.1.3:1.1/0003:045E:07A5.000A/input/input16/event16"
[    10.780] (II) XINPUT: Adding extended input device "Microsoft Microsoft® 2.4GHz Transceiver v9.0 Consumer Control" (type: MOUSE, id 18)
[    10.780] (**) Option "AccelerationScheme" "none"
[    10.780] (**) Microsoft Microsoft® 2.4GHz Transceiver v9.0 Consumer Control: (accel) selected scheme none/0
[    10.780] (**) Microsoft Microsoft® 2.4GHz Transceiver v9.0 Consumer Control: (accel) acceleration factor: 2.000
[    10.780] (**) Microsoft Microsoft® 2.4GHz Transceiver v9.0 Consumer Control: (accel) acceleration threshold: 4
[    10.782] (II) event16 - Microsoft Microsoft® 2.4GHz Transceiver v9.0 Consumer Control: is tagged by udev as: Keyboard
[    10.782] (II) event16 - Microsoft Microsoft® 2.4GHz Transceiver v9.0 Consumer Control: device is a keyboard
[    10.783] (II) config/udev: Adding input device Microsoft Microsoft® 2.4GHz Transceiver v9.0 Consumer Control (/dev/input/event17)
[    10.783] (**) Microsoft Microsoft® 2.4GHz Transceiver v9.0 Consumer Control: Applying InputClass "libinput keyboard catchall"
[    10.783] (II) Using input driver 'libinput' for 'Microsoft Microsoft® 2.4GHz Transceiver v9.0 Consumer Control'
[    10.783] (**) Microsoft Microsoft® 2.4GHz Transceiver v9.0 Consumer Control: always reports core events
[    10.783] (**) Option "Device" "/dev/input/event17"
[    10.785] (II) event17 - Microsoft Microsoft® 2.4GHz Transceiver v9.0 Consumer Control: is tagged by udev as: Keyboard
[    10.785] (II) event17 - Microsoft Microsoft® 2.4GHz Transceiver v9.0 Consumer Control: device is a keyboard
[    10.785] (II) event17 - Microsoft Microsoft® 2.4GHz Transceiver v9.0 Consumer Control: device removed
[    10.803] (II) libinput: Microsoft Microsoft® 2.4GHz Transceiver v9.0 Consumer Control: needs a virtual subdevice
[    10.803] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:08.3/0000:65:00.3/usb7/7-1/7-1.1/7-1.1.3/7-1.1.3:1.2/0003:045E:07A5.000B/input/input17/event17"
[    10.803] (II) XINPUT: Adding extended input device "Microsoft Microsoft® 2.4GHz Transceiver v9.0 Consumer Control" (type: MOUSE, id 19)
[    10.803] (**) Option "AccelerationScheme" "none"
[    10.803] (**) Microsoft Microsoft® 2.4GHz Transceiver v9.0 Consumer Control: (accel) selected scheme none/0
[    10.803] (**) Microsoft Microsoft® 2.4GHz Transceiver v9.0 Consumer Control: (accel) acceleration factor: 2.000
[    10.803] (**) Microsoft Microsoft® 2.4GHz Transceiver v9.0 Consumer Control: (accel) acceleration threshold: 4
[    10.805] (II) event17 - Microsoft Microsoft® 2.4GHz Transceiver v9.0 Consumer Control: is tagged by udev as: Keyboard
[    10.805] (II) event17 - Microsoft Microsoft® 2.4GHz Transceiver v9.0 Consumer Control: device is a keyboard
[    10.806] (II) config/udev: Adding input device Microsoft Microsoft® 2.4GHz Transceiver v9.0 System Control (/dev/input/event18)
[    10.806] (**) Microsoft Microsoft® 2.4GHz Transceiver v9.0 System Control: Applying InputClass "libinput keyboard catchall"
[    10.806] (II) Using input driver 'libinput' for 'Microsoft Microsoft® 2.4GHz Transceiver v9.0 System Control'
[    10.806] (**) Microsoft Microsoft® 2.4GHz Transceiver v9.0 System Control: always reports core events
[    10.806] (**) Option "Device" "/dev/input/event18"
[    10.808] (II) event18 - Microsoft Microsoft® 2.4GHz Transceiver v9.0 System Control: is tagged by udev as: Keyboard Joystick
[    10.808] (II) event18 - Microsoft Microsoft® 2.4GHz Transceiver v9.0 System Control: device is a keyboard
[    10.808] (II) event18 - Microsoft Microsoft® 2.4GHz Transceiver v9.0 System Control: device removed
[    10.823] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:08.3/0000:65:00.3/usb7/7-1/7-1.1/7-1.1.3/7-1.1.3:1.2/0003:045E:07A5.000B/input/input18/event18"
[    10.823] (II) XINPUT: Adding extended input device "Microsoft Microsoft® 2.4GHz Transceiver v9.0 System Control" (type: KEYBOARD, id 20)
[    10.825] (II) event18 - Microsoft Microsoft® 2.4GHz Transceiver v9.0 System Control: is tagged by udev as: Keyboard Joystick
[    10.825] (II) event18 - Microsoft Microsoft® 2.4GHz Transceiver v9.0 System Control: device is a keyboard
[    10.826] (II) config/udev: Adding input device 1A58201C:00 06CB:CDA3 Mouse (/dev/input/event6)
[    10.826] (**) 1A58201C:00 06CB:CDA3 Mouse: Applying InputClass "libinput pointer catchall"
[    10.826] (II) Using input driver 'libinput' for '1A58201C:00 06CB:CDA3 Mouse'
[    10.826] (**) 1A58201C:00 06CB:CDA3 Mouse: always reports core events
[    10.826] (**) Option "Device" "/dev/input/event6"
[    10.827] (II) event6  - 1A58201C:00 06CB:CDA3 Mouse: is tagged by udev as: Mouse Pointingstick
[    10.827] (II) event6  - 1A58201C:00 06CB:CDA3 Mouse: device is a pointer
[    10.829] (II) event6  - 1A58201C:00 06CB:CDA3 Mouse: device removed
[    10.857] (II) libinput: 1A58201C:00 06CB:CDA3 Mouse: Step value 0 was provided, libinput Fallback acceleration function is used.
[    10.857] (II) libinput: 1A58201C:00 06CB:CDA3 Mouse: Step value 0 was provided, libinput Fallback acceleration function is used.
[    10.857] (II) libinput: 1A58201C:00 06CB:CDA3 Mouse: Step value 0 was provided, libinput Fallback acceleration function is used.
[    10.857] (**) Option "config_info" "udev:/sys/devices/platform/AMDI0010:03/i2c-0/i2c-1A58201C:00/0018:06CB:CDA3.000C/input/input30/event6"
[    10.857] (II) XINPUT: Adding extended input device "1A58201C:00 06CB:CDA3 Mouse" (type: MOUSE, id 21)
[    10.857] (**) Option "AccelerationScheme" "none"
[    10.857] (**) 1A58201C:00 06CB:CDA3 Mouse: (accel) selected scheme none/0
[    10.857] (**) 1A58201C:00 06CB:CDA3 Mouse: (accel) acceleration factor: 2.000
[    10.857] (**) 1A58201C:00 06CB:CDA3 Mouse: (accel) acceleration threshold: 4
[    10.858] (II) event6  - 1A58201C:00 06CB:CDA3 Mouse: is tagged by udev as: Mouse Pointingstick
[    10.859] (II) event6  - 1A58201C:00 06CB:CDA3 Mouse: device is a pointer
[    10.861] (II) config/udev: Adding input device 1A58201C:00 06CB:CDA3 Mouse (/dev/input/mouse4)
[    10.861] (II) No input driver specified, ignoring this device.
[    10.861] (II) This device may have been added with another device file.
[    10.862] (II) config/udev: Adding input device 1A58201C:00 06CB:CDA3 Touchpad (/dev/input/event12)
[    10.862] (**) 1A58201C:00 06CB:CDA3 Touchpad: Applying InputClass "libinput touchpad catchall"
[    10.862] (**) 1A58201C:00 06CB:CDA3 Touchpad: Applying InputClass "touchpad catchall"
[    10.862] (**) 1A58201C:00 06CB:CDA3 Touchpad: Applying InputClass "Default clickpad buttons"
[    10.862] (**) 1A58201C:00 06CB:CDA3 Touchpad: Applying InputClass "touchpad"
[    10.862] (II) LoadModule: "synaptics"
[    10.862] (II) Loading /usr/lib/xorg/modules/input/synaptics_drv.so
[    10.869] (II) Module synaptics: vendor="X.Org Foundation"
[    10.896] 	compiled for 1.21.1.15, module version = 1.10.0
[    10.896] 	Module class: X.Org XInput Driver
[    10.896] 	ABI class: X.Org XInput driver, version 24.4
[    10.896] (II) Using input driver 'synaptics' for '1A58201C:00 06CB:CDA3 Touchpad'
[    10.896] (**) 1A58201C:00 06CB:CDA3 Touchpad: always reports core events
[    10.896] (**) Option "Device" "/dev/input/event12"
[    10.908] (II) synaptics: 1A58201C:00 06CB:CDA3 Touchpad: found clickpad property
[    10.908] (--) synaptics: 1A58201C:00 06CB:CDA3 Touchpad: x-axis range 0 - 1291 (res 12)
[    10.908] (--) synaptics: 1A58201C:00 06CB:CDA3 Touchpad: y-axis range 0 - 857 (res 12)
[    10.908] (II) synaptics: 1A58201C:00 06CB:CDA3 Touchpad: device does not report pressure, will use touch data.
[    10.908] (II) synaptics: 1A58201C:00 06CB:CDA3 Touchpad: device does not report finger width.
[    10.908] (--) synaptics: 1A58201C:00 06CB:CDA3 Touchpad: buttons: left double triple
[    10.908] (--) synaptics: 1A58201C:00 06CB:CDA3 Touchpad: Vendor 0x6cb Product 0xcda3
[    10.908] (--) synaptics: 1A58201C:00 06CB:CDA3 Touchpad: invalid pressure range.  defaulting to 0 - 255
[    10.908] (--) synaptics: 1A58201C:00 06CB:CDA3 Touchpad: invalid finger width range.  defaulting to 0 - 15
[    10.908] (**) Option "MaxTapTime" "125"
[    10.908] (**) Option "VertScrollDelta" "-112"
[    10.908] (**) Option "HorizScrollDelta" "-114"
[    10.908] (**) Option "VertEdgeScroll" "on"
[    10.908] (**) Option "HorizEdgeScroll" "on"
[    10.908] (**) Option "VertTwoFingerScroll" "on"
[    10.908] (**) Option "HorizTwoFingerScroll" "on"
[    10.908] (**) Option "TapButton1" "1"
[    10.908] (**) Option "TapButton2" "3"
[    10.908] (**) Option "TapButton3" "0"
[    10.908] (**) Option "SoftButtonAreas" "50% 0 82% 0 0 0 0 0"
[    10.908] (--) synaptics: 1A58201C:00 06CB:CDA3 Touchpad: touchpad found
[    10.908] (**) 1A58201C:00 06CB:CDA3 Touchpad: always reports core events
[    10.920] (**) Option "config_info" "udev:/sys/devices/platform/AMDI0010:03/i2c-0/i2c-1A58201C:00/0018:06CB:CDA3.000C/input/input31/event12"
[    10.920] (II) XINPUT: Adding extended input device "1A58201C:00 06CB:CDA3 Touchpad" (type: TOUCHPAD, id 22)
[    10.920] (**) synaptics: 1A58201C:00 06CB:CDA3 Touchpad: (accel) MinSpeed is now constant deceleration 2.5
[    10.920] (**) synaptics: 1A58201C:00 06CB:CDA3 Touchpad: (accel) MaxSpeed is now 1.75
[    10.920] (**) synaptics: 1A58201C:00 06CB:CDA3 Touchpad: (accel) AccelFactor is now 0.129
[    10.920] (**) 1A58201C:00 06CB:CDA3 Touchpad: (accel) keeping acceleration scheme 1
[    10.920] (**) 1A58201C:00 06CB:CDA3 Touchpad: (accel) acceleration profile 1
[    10.920] (**) 1A58201C:00 06CB:CDA3 Touchpad: (accel) acceleration factor: 2.000
[    10.920] (**) 1A58201C:00 06CB:CDA3 Touchpad: (accel) acceleration threshold: 4
[    10.920] (--) synaptics: 1A58201C:00 06CB:CDA3 Touchpad: touchpad found
[    10.921] (II) config/udev: Adding input device 1A58201C:00 06CB:CDA3 Touchpad (/dev/input/mouse5)
[    10.921] (**) 1A58201C:00 06CB:CDA3 Touchpad: Ignoring device from InputClass "touchpad ignore duplicates"
[    10.921] (II) config/udev: Adding input device PC Speaker (/dev/input/event19)
[    10.921] (II) No input driver specified, ignoring this device.
[    10.921] (II) This device may have been added with another device file.
[    10.927] (**) Razer Razer Blade: Applying InputClass "libinput keyboard catchall"
[    10.927] (II) Using input driver 'libinput' for 'Razer Razer Blade'
[    10.927] (**) Razer Razer Blade: always reports core events
[    10.927] (**) Option "Device" "/dev/input/event7"
[    10.927] (II) libinput: Razer Razer Blade: is a virtual subdevice
[    10.928] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:08.1/0000:64:00.3/usb1/1-4/1-4:1.1/0003:1532:028C.0002/input/input24/event7"
[    10.928] (II) XINPUT: Adding extended input device "Razer Razer Blade" (type: KEYBOARD, id 23)
[    10.928] (**) Razer Razer Blade: Applying InputClass "libinput pointer catchall"
[    10.928] (**) Razer Razer Blade: Applying InputClass "libinput keyboard catchall"
[    10.928] (II) Using input driver 'libinput' for 'Razer Razer Blade'
[    10.928] (**) Razer Razer Blade: always reports core events
[    10.928] (**) Option "Device" "/dev/input/event8"
[    10.928] (II) libinput: Razer Razer Blade: is a virtual subdevice
[    10.928] (II) libinput: Razer Razer Blade: Step value 0 was provided, libinput Fallback acceleration function is used.
[    10.928] (II) libinput: Razer Razer Blade: Step value 0 was provided, libinput Fallback acceleration function is used.
[    10.928] (II) libinput: Razer Razer Blade: Step value 0 was provided, libinput Fallback acceleration function is used.
[    10.928] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:08.1/0000:64:00.3/usb1/1-4/1-4:1.2/0003:1532:028C.0003/input/input25/event8"
[    10.928] (II) XINPUT: Adding extended input device "Razer Razer Blade" (type: KEYBOARD, id 24)
[    10.928] (**) Razer Razer DeathAdder V2 X HyperSpeed: Applying InputClass "libinput pointer catchall"
[    10.928] (**) Razer Razer DeathAdder V2 X HyperSpeed: Applying InputClass "libinput keyboard catchall"
[    10.928] (II) Using input driver 'libinput' for 'Razer Razer DeathAdder V2 X HyperSpeed'
[    10.928] (**) Razer Razer DeathAdder V2 X HyperSpeed: always reports core events
[    10.928] (**) Option "Device" "/dev/input/event4"
[    10.928] (II) libinput: Razer Razer DeathAdder V2 X HyperSpeed: is a virtual subdevice
[    10.928] (II) libinput: Razer Razer DeathAdder V2 X HyperSpeed: Step value 0 was provided, libinput Fallback acceleration function is used.
[    10.928] (II) libinput: Razer Razer DeathAdder V2 X HyperSpeed: Step value 0 was provided, libinput Fallback acceleration function is used.
[    10.928] (II) libinput: Razer Razer DeathAdder V2 X HyperSpeed: Step value 0 was provided, libinput Fallback acceleration function is used.
[    10.928] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:08.3/0000:65:00.3/usb7/7-1/7-1.1/7-1.1.2/7-1.1.2:1.1/0003:1532:009C.0005/input/input29/event4"
[    10.928] (II) XINPUT: Adding extended input device "Razer Razer DeathAdder V2 X HyperSpeed" (type: KEYBOARD, id 25)
[    10.928] (**) Microsoft Microsoft® 2.4GHz Transceiver v9.0 Consumer Control: Applying InputClass "libinput keyboard catchall"
[    10.928] (II) Using input driver 'libinput' for 'Microsoft Microsoft® 2.4GHz Transceiver v9.0 Consumer Control'
[    10.928] (**) Microsoft Microsoft® 2.4GHz Transceiver v9.0 Consumer Control: always reports core events
[    10.928] (**) Option "Device" "/dev/input/event16"
[    10.928] (II) libinput: Microsoft Microsoft® 2.4GHz Transceiver v9.0 Consumer Control: is a virtual subdevice
[    10.928] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:08.3/0000:65:00.3/usb7/7-1/7-1.1/7-1.1.3/7-1.1.3:1.1/0003:045E:07A5.000A/input/input16/event16"
[    10.928] (II) XINPUT: Adding extended input device "Microsoft Microsoft® 2.4GHz Transceiver v9.0 Consumer Control" (type: KEYBOARD, id 26)
[    10.928] (**) Microsoft Microsoft® 2.4GHz Transceiver v9.0 Consumer Control: Applying InputClass "libinput keyboard catchall"
[    10.928] (II) Using input driver 'libinput' for 'Microsoft Microsoft® 2.4GHz Transceiver v9.0 Consumer Control'
[    10.928] (**) Microsoft Microsoft® 2.4GHz Transceiver v9.0 Consumer Control: always reports core events
[    10.928] (**) Option "Device" "/dev/input/event17"
[    10.928] (II) libinput: Microsoft Microsoft® 2.4GHz Transceiver v9.0 Consumer Control: is a virtual subdevice
[    10.928] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:08.3/0000:65:00.3/usb7/7-1/7-1.1/7-1.1.3/7-1.1.3:1.2/0003:045E:07A5.000B/input/input17/event17"
[    10.928] (II) XINPUT: Adding extended input device "Microsoft Microsoft® 2.4GHz Transceiver v9.0 Consumer Control" (type: KEYBOARD, id 27)
[    11.003] (--) NVIDIA(GPU-0): XMI Mi Monitor (DFP-0): connected
[    11.003] (--) NVIDIA(GPU-0): XMI Mi Monitor (DFP-0): Internal TMDS
[    11.003] (--) NVIDIA(GPU-0): XMI Mi Monitor (DFP-0): 600.0 MHz maximum pixel clock
[    11.003] (--) NVIDIA(GPU-0): 
[    11.057] (--) NVIDIA(GPU-0): XMI Mi Monitor (DFP-0): connected
[    11.057] (--) NVIDIA(GPU-0): XMI Mi Monitor (DFP-0): Internal TMDS
[    11.057] (--) NVIDIA(GPU-0): XMI Mi Monitor (DFP-0): 600.0 MHz maximum pixel clock
[    11.057] (--) NVIDIA(GPU-0): 
[    11.122] (--) NVIDIA(GPU-0): XMI Mi Monitor (DFP-0): connected
[    11.122] (--) NVIDIA(GPU-0): XMI Mi Monitor (DFP-0): Internal TMDS
[    11.122] (--) NVIDIA(GPU-0): XMI Mi Monitor (DFP-0): 600.0 MHz maximum pixel clock
[    11.122] (--) NVIDIA(GPU-0): 
[    11.168] (--) NVIDIA(GPU-0): XMI Mi Monitor (DFP-0): connected
[    11.168] (--) NVIDIA(GPU-0): XMI Mi Monitor (DFP-0): Internal TMDS
[    11.168] (--) NVIDIA(GPU-0): XMI Mi Monitor (DFP-0): 600.0 MHz maximum pixel clock
[    11.168] (--) NVIDIA(GPU-0): 
[    11.219] (--) NVIDIA(GPU-0): XMI Mi Monitor (DFP-0): connected
[    11.219] (--) NVIDIA(GPU-0): XMI Mi Monitor (DFP-0): Internal TMDS
[    11.219] (--) NVIDIA(GPU-0): XMI Mi Monitor (DFP-0): 600.0 MHz maximum pixel clock
[    11.219] (--) NVIDIA(GPU-0): 
[    11.268] (--) NVIDIA(GPU-0): XMI Mi Monitor (DFP-0): connected
[    11.268] (--) NVIDIA(GPU-0): XMI Mi Monitor (DFP-0): Internal TMDS
[    11.268] (--) NVIDIA(GPU-0): XMI Mi Monitor (DFP-0): 600.0 MHz maximum pixel clock
[    11.268] (--) NVIDIA(GPU-0): 
[    11.313] (--) NVIDIA(GPU-0): XMI Mi Monitor (DFP-0): connected
[    11.313] (--) NVIDIA(GPU-0): XMI Mi Monitor (DFP-0): Internal TMDS
[    11.313] (--) NVIDIA(GPU-0): XMI Mi Monitor (DFP-0): 600.0 MHz maximum pixel clock
[    11.313] (--) NVIDIA(GPU-0): 
[    11.340] randr: falling back to unsynchronized pixmap sharing
[    11.501] randr: falling back to unsynchronized pixmap sharing
[    12.622] (--) NVIDIA(GPU-0): XMI Mi Monitor (DFP-0): connected
[    12.622] (--) NVIDIA(GPU-0): XMI Mi Monitor (DFP-0): Internal TMDS
[    12.622] (--) NVIDIA(GPU-0): XMI Mi Monitor (DFP-0): 600.0 MHz maximum pixel clock
[    12.622] (--) NVIDIA(GPU-0): 
[    12.667] (--) NVIDIA(GPU-0): XMI Mi Monitor (DFP-0): connected
[    12.667] (--) NVIDIA(GPU-0): XMI Mi Monitor (DFP-0): Internal TMDS
[    12.667] (--) NVIDIA(GPU-0): XMI Mi Monitor (DFP-0): 600.0 MHz maximum pixel clock
[    12.667] (--) NVIDIA(GPU-0): 
[    13.261] (--) NVIDIA(GPU-0): XMI Mi Monitor (DFP-0): connected
[    13.261] (--) NVIDIA(GPU-0): XMI Mi Monitor (DFP-0): Internal TMDS
[    13.261] (--) NVIDIA(GPU-0): XMI Mi Monitor (DFP-0): 600.0 MHz maximum pixel clock
[    13.261] (--) NVIDIA(GPU-0): 
[    13.306] (--) NVIDIA(GPU-0): XMI Mi Monitor (DFP-0): connected
[    13.306] (--) NVIDIA(GPU-0): XMI Mi Monitor (DFP-0): Internal TMDS
[    13.306] (--) NVIDIA(GPU-0): XMI Mi Monitor (DFP-0): 600.0 MHz maximum pixel clock
[    13.306] (--) NVIDIA(GPU-0): 
[    24.523] (--) NVIDIA(GPU-0): XMI Mi Monitor (DFP-0): connected
[    24.524] (--) NVIDIA(GPU-0): XMI Mi Monitor (DFP-0): Internal TMDS
[    24.524] (--) NVIDIA(GPU-0): XMI Mi Monitor (DFP-0): 600.0 MHz maximum pixel clock
[    24.524] (--) NVIDIA(GPU-0): 
[    24.570] (--) NVIDIA(GPU-0): XMI Mi Monitor (DFP-0): connected
[    24.570] (--) NVIDIA(GPU-0): XMI Mi Monitor (DFP-0): Internal TMDS
[    24.570] (--) NVIDIA(GPU-0): XMI Mi Monitor (DFP-0): 600.0 MHz maximum pixel clock
[    24.570] (--) NVIDIA(GPU-0): 
[    24.640] (--) NVIDIA(GPU-0): XMI Mi Monitor (DFP-0): connected
[    24.640] (--) NVIDIA(GPU-0): XMI Mi Monitor (DFP-0): Internal TMDS
[    24.640] (--) NVIDIA(GPU-0): XMI Mi Monitor (DFP-0): 600.0 MHz maximum pixel clock
[    24.640] (--) NVIDIA(GPU-0): 

The log said position option is not used:

>> grep Position /var/log/Xorg.0.log
[     9.177] (**) AMDGPU(G0): Option "Position" "0 0"
[     9.178] (**) AMDGPU(G0): Option "Position" "-1080 290"
[     9.295] (WW) NVIDIA(0): Option "Position" is not used
[     9.410] (WW) AMDGPU(G0): Option "Position" is not used

And the layout of 3 monitors is not what I want:

>> xrandr
Screen 0: minimum 8 x 8, current 7080 x 1920, maximum 32767 x 32767
// Desired position should be 2560x1440+0+0
eDP-1-0 connected 2560x1440+4520+0 (normal left inverted right x axis y axis) 310mm x 174mm
   2560x1440    165.00*+  60.00 + 165.00* 
// Desired position should be 1080x1920-1080+290
DisplayPort-1-0 connected primary 1080x1920+3440+0 right (normal left inverted right x axis y axis) 509mm x 286mm
   1920x1080_60.00  60.00*+
// Desired position should be 3440x1440-4520+0
HDMI-0 connected 3440x1440+0+0 (normal left inverted right x axis y axis) 797mm x 334mm
   3440x1440     50.00*+  99.99    60.00  

I can do this by using xrandr command, but that's not what I want.

What should I do, If I want the position correct (By Xorg config file) ?

Offline

#2 2025-08-05 15:11:58

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

Re: Set position offset with config file in /etc/X11/xorg.conf.d/ failed

The position is in root window coordinates, negative values make little to no sense and this will not work w/ xrandr either.
Then you Screen section addresses *one* output specifically, remove that and the "ServerLayout" and just use the output names ("eDP-1-0" etc.) as identifiers in the monitor sections.

Offline

#3 2025-08-06 02:02:25

Hacksign
Member
Registered: 2012-07-30
Posts: 137

Re: Set position offset with config file in /etc/X11/xorg.conf.d/ failed

seth wrote:

The position is in root window coordinates, negative values make little to no sense and this will not work w/ xrandr either.

I've tried positive offset, no use.


seth wrote:

Then you Screen section addresses *one* output specifically, remove that and the "ServerLayout" and just use the output names ("eDP-1-0" etc.) as identifiers in the monitor sections.

Could you more specific ? I'm not understanding you clearly.

Offline

#4 2025-08-06 07:32:44

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

Re: Set position offset with config file in /etc/X11/xorg.conf.d/ failed

Section "Monitor"
	Identifier "eDP-1-0"
	Option "Position" "4520 0"
EndSection
Section "Monitor"
	Identifier "DisplayPort-1-0"
	Option "Primary" "true"
	Option "Position" "3440 290"
	Option "Rotate" "right"
EndSection
Section "Monitor"
	Identifier "HDMI-0"
	Option "Position" "0 0"
EndSection

That being said, ifff you actually(?) want to run the server on the nvidia GPU its driver might ignore those settings and you'll have to add a meta-mode, see https://wiki.archlinux.org/title/NVIDIA … a-settings on how to query if from your current configuration.
And nvidia-settings can actually generate an X11 config for you of which you'd extract the important bits (it's full of useless cruft and you want to hard-configure as little as possible anyway - in doubt post it for review)

Offline

Board footer

Powered by FluxBB