You are not logged in.
After a recent full-system update, some apps stopped rendering windows.
I first noticed this with VLC; all videos were just blank. Following some tips online I fixed this by changing the video Output from "OpenGL video output" to "X11 video output (XCB)", so I think this might be related.
Some GTK applications seem to not render windows also, such as gnome-calculator. I tried disabling compositor and it didn't help.
I also tried running with `GDK_DEBUG=gl-prefer-gl GSK_RENDERER=gl gnome-calculator` with no success.
Any help is appreciated. Thanks
NVIDIA Corporation AD107M [GeForce RTX 4060 Max-Q / Mobile]
kernel 6.12.17-1-lts
xfce 4.20
gtk2 2.24.33-5
gtk3 1:3.24.48-2
gtk4 1:4.16.12-1 (some people suggested downgrading to 1:4.12.5-1, I also tried that and it did not work)
nvidia-dkms 570.124.04-1
nvidia-utils 570.124.04-1
Last edited by Lem0nHead (2025-03-09 21:45:42)
Offline
oh well, a couple minutes after posting the question here I tried asking Claude and it suggested
`GDK_BACKEND=x11 GSK_RENDERER=cairo gnome-calculator`
This works! So I'm guessing this is one more datapoint suggesting opengl is somehow broken. I don't know what else I can try though.
Offline
This sound like the Wayland compatibility issues. Are you running wayland?
I Am Canadian!
Offline
This sound like the Wayland compatibility issues. Are you running wayland?
AFAIK I'm using X11, at least I haven't changed it.
echo $XDG_SESSION_TYPE says "x11" and I don't have WAYLAND_DISPLAY set.
On the other hand, while I have `extra/xorg-server` installed, I also have `extra/wayland` and `extra/egl-wayland`
$ pacman -Qi extra/wayland
(...)
Required By : egl-wayland gst-plugin-gtk gst-plugins-bad-libs gst-plugins-base-libs gtk-layer-shell gtk3 gtk4
libdecor libva libxfce4windowing mesa mesa-utils vlc wxwidgets-gtk3
(...)
So apparently vlc and some other packages require wayland.. I'm not sure what's going on
Offline
OpenGL or vulkan?
GSK_RENDERER=ngl gnome-calculator
GSK_RENDERER=gl gnome-calculator
VK_DRIVER_FILES=/usr/share/vulkan/icd.d/nvidia_icd.json gnome-calculator
Also please post your Xorg log, https://wiki.archlinux.org/title/Xorg#General
Offline
OpenGL or vulkan?
GSK_RENDERER=ngl gnome-calculator GSK_RENDERER=gl gnome-calculator VK_DRIVER_FILES=/usr/share/vulkan/icd.d/nvidia_icd.json gnome-calculator
Also please post your Xorg log, https://wiki.archlinux.org/title/Xorg#General
AFAIK opengl:
$ glxinfo | grep "OpenGL version"
OpenGL version string: 4.6 (Compatibility Profile) Mesa 24.3.4-arch1.1
I've also tried all other GSK_RENDERED (broadway cairo opengl gl ngl vulkan) and cairo is the only one that works
xlog errors:
```
[ 21.882] (EE) Failed to load module "intel" (module does not exist, 0)
[ 21.888] (EE) Failed to load module "nouveau" (module does not exist, 0)
[ 21.888] (EE) Failed to load module "nv" (module does not exist, 0)
[ 21.890] (EE) Failed to load module "fbdev" (module does not exist, 0)
[ 21.890] (EE) Failed to load module "vesa" (module does not exist, 0)
```
Offline
How are you starting xfce?
It really seems like you are starting xfce with the Wayland backend.
According to this if you are using a "greeter" you should have two choices to start xfce.
https://archlinux.org/packages/extra/x8 … 4-session/
usr/share/wayland-sessions/
usr/share/wayland-sessions/xfce-wayland.desktop
usr/share/xdg-desktop-portal/
usr/share/xdg-desktop-portal/xfce-portals.conf
usr/share/xsessions/
usr/share/xsessions/xfce.desktop
What one are you using?
Xfce suggests using nouveau for Wayland not Nvidia.
You could easily verify if this is related to xfce or not by simply installing an x11 window manager like openbox and trying the same applications.
The portion of your xorg log is pretty useless, those errors simply mean those modules don't exist on your system.
Last edited by dichead (2025-03-05 04:16:51)
Offline
xlog errors:
Not some random irrelevant lines, the log so we know what the system config looks like.
What drivers are used etc. If you're rendering in software, that won't show up as error at all.
Offline
I tried a couple more things, what seems to make a difference is the xorg.conf
If I have xorg.conf created by `nvidia-xconfig`, then all apps seem to work fine.
There's just one little problem: I use a laptop with an external monitor, and the built-in monitor just doesn't work (it displays an underline on the top-left corner) with this xorg.conf.
Reverting to an empty xorg.conf works, but then the window issues come back.
I tried to compare xorg logs in this 2 scenarios
Empty xorg.conf (dual monitor, window issues):
(...)
[ 300.085] (==) No Layout section. Using the first Screen section.
[ 300.085] (==) No screen section available. Using defaults.
[ 300.085] (**) |-->Screen "Default Screen Section" (0)
[ 300.085] (**) | |-->Monitor "<default monitor>"
[ 300.085] (==) No monitor specified for screen "Default Screen Section".
Using a default monitor configuration.
[ 300.085] (**) Allowing byte-swapped clients
[ 300.085] (==) Automatically adding devices
[ 300.085] (==) Automatically enabling devices
[ 300.085] (==) Automatically adding GPU devices
[ 300.085] (==) Automatically binding GPU devices
(...)
[ 300.095] (II) LoadModule: "glx"
[ 300.095] (II) Loading /usr/lib/xorg/modules/extensions/libglx.so
[ 300.097] (II) Module glx: vendor="X.Org Foundation"
[ 300.097] compiled for 1.21.1.16, module version = 1.0.0
[ 300.097] ABI class: X.Org Server Extension, version 10.0
[ 300.097] (II) Applying OutputClass "nvidia" to /dev/dri/card0
[ 300.097] loading driver: nvidia
[ 300.097] (==) Matched intel as autoconfigured driver 0
[ 300.097] (==) Matched nvidia as autoconfigured driver 1
[ 300.097] (==) Matched nouveau as autoconfigured driver 2
[ 300.097] (==) Matched nv as autoconfigured driver 3
[ 300.097] (==) Matched modesetting as autoconfigured driver 4
[ 300.097] (==) Matched fbdev as autoconfigured driver 5
[ 300.097] (==) Matched vesa as autoconfigured driver 6
[ 300.097] (==) Assigned the driver to the xf86ConfigLayout
[ 300.097] (II) LoadModule: "intel"
[ 300.097] (WW) Warning, couldn't open module intel
[ 300.097] (EE) Failed to load module "intel" (module does not exist, 0)
[ 300.097] (II) LoadModule: "nvidia"
[ 300.097] (II) Loading /usr/lib/xorg/modules/drivers/nvidia_drv.so
[ 300.097] (II) Module nvidia: vendor="NVIDIA Corporation"
[ 300.097] compiled for 1.6.99.901, module version = 1.0.0
[ 300.097] Module class: X.Org Video Driver
[ 300.097] (II) LoadModule: "nouveau"
[ 300.097] (WW) Warning, couldn't open module nouveau
[ 300.097] (EE) Failed to load module "nouveau" (module does not exist, 0)
[ 300.097] (II) LoadModule: "nv"
[ 300.098] (WW) Warning, couldn't open module nv
[ 300.098] (EE) Failed to load module "nv" (module does not exist, 0)
[ 300.098] (II) LoadModule: "modesetting"
[ 300.098] (II) Loading /usr/lib/xorg/modules/drivers/modesetting_drv.so
[ 300.102] (II) Module modesetting: vendor="X.Org Foundation"
[ 300.102] compiled for 1.21.1.16, module version = 1.21.1
[ 300.102] Module class: X.Org Video Driver
[ 300.102] ABI class: X.Org Video Driver, version 25.2
[ 300.102] (II) LoadModule: "fbdev"
[ 300.102] (WW) Warning, couldn't open module fbdev
[ 300.102] (EE) Failed to load module "fbdev" (module does not exist, 0)
[ 300.102] (II) LoadModule: "vesa"
[ 300.102] (WW) Warning, couldn't open module vesa
[ 300.102] (EE) Failed to load module "vesa" (module does not exist, 0)
[ 300.102] (II) NVIDIA dlloader X Driver 570.124.04 Tue Feb 25 03:40:59 UTC 2025
[ 300.102] (II) NVIDIA Unified Driver for all Supported NVIDIA GPUs
[ 300.102] (II) modesetting: Driver for Modesetting Kernel Drivers: kms
[ 300.106] (II) modeset(0): using drv /dev/dri/card1
[ 300.106] (II) Loading sub module "fb"
[ 300.106] (II) LoadModule: "fb"
[ 300.106] (II) Module "fb" already built-in
[ 300.106] (II) Loading sub module "wfb"
[ 300.106] (II) LoadModule: "wfb"
[ 300.106] (II) Loading /usr/lib/xorg/modules/libwfb.so
[ 300.106] (II) Module wfb: vendor="X.Org Foundation"
[ 300.106] compiled for 1.21.1.16, module version = 1.0.0
[ 300.106] ABI class: X.Org ANSI C Emulation, version 0.4
[ 300.107] (II) modeset(0): Creating default Display subsection in Screen section
"Default Screen Section" for depth/fbbpp 24/32
[ 300.107] (==) modeset(0): Depth 24, (==) framebuffer bpp 32
[ 300.107] (==) modeset(0): RGB weight 888
[ 300.107] (==) modeset(0): Default visual is TrueColor
[ 300.107] (II) Loading sub module "glamoregl"
[ 300.107] (II) LoadModule: "glamoregl"
[ 300.107] (II) Loading /usr/lib/xorg/modules/libglamoregl.so
[ 300.112] (II) Module glamoregl: vendor="X.Org Foundation"
[ 300.112] compiled for 1.21.1.16, module version = 1.0.1
[ 300.112] ABI class: X.Org ANSI C Emulation, version 0.4
[ 300.306] (II) modeset(0): glamor X acceleration enabled on Mesa Intel(R) Graphics (RPL-S)
[ 300.306] (II) modeset(0): glamor initialized
[ 300.306] (==) modeset(0): VariableRefresh: disabled
[ 300.306] (==) modeset(0): AsyncFlipSecondaries: disabled
[ 300.309] (II) modeset(0): Output eDP-1 has no monitor section
[ 300.316] (II) modeset(0): Output HDMI-1 has no monitor section
[ 300.326] (II) modeset(0): Output DP-1 has no monitor section
[ 300.336] (II) modeset(0): Output HDMI-2 has no monitor section
[ 300.346] (II) modeset(0): Output HDMI-3 has no monitor section
[ 300.356] (II) modeset(0): Output DP-2 has no monitor section
[ 300.366] (II) modeset(0): Output HDMI-4 has no monitor section
[ 300.369] (II) modeset(0): EDID for output eDP-1
[ 300.369] (II) modeset(0): Manufacturer: AUO Model: 7ead Serial#: 32429
[ 300.369] (II) modeset(0): Year: 2023 Week: 24
[ 300.369] (II) modeset(0): EDID Version: 1.4
[ 300.369] (II) modeset(0): Digital Display Input
[ 300.369] (II) modeset(0): 8 bits per channel
[ 300.369] (II) modeset(0): Digital interface is DisplayPort
[ 300.369] (II) modeset(0): Max Image Size [cm]: horiz.: 34 vert.: 19
[ 300.369] (II) modeset(0): Gamma: 2.20
[ 300.369] (II) modeset(0): No DPMS capabilities specified
[ 300.369] (II) modeset(0): Supported color encodings: RGB 4:4:4
(...)
[ 300.380] (II) modeset(0): EDID for output HDMI-1
[ 300.390] (II) modeset(0): EDID for output DP-1
[ 300.400] (II) modeset(0): EDID for output HDMI-2
[ 300.410] (II) modeset(0): EDID for output HDMI-3
[ 300.420] (II) modeset(0): EDID for output DP-2
[ 300.429] (II) modeset(0): EDID for output HDMI-4
[ 300.429] (II) modeset(0): Output eDP-1 connected
[ 300.430] (II) modeset(0): Output HDMI-1 disconnected
[ 300.430] (II) modeset(0): Output DP-1 disconnected
[ 300.430] (II) modeset(0): Output HDMI-2 disconnected
[ 300.430] (II) modeset(0): Output HDMI-3 disconnected
[ 300.430] (II) modeset(0): Output DP-2 disconnected
[ 300.430] (II) modeset(0): Output HDMI-4 disconnected
[ 300.430] (II) modeset(0): Using exact sizes for initial modes
[ 300.430] (II) modeset(0): Output eDP-1 using initial mode 1920x1080 +0+0
[ 300.430] (==) modeset(0): Using gamma correction (1.0, 1.0, 1.0)
[ 300.430] (==) modeset(0): DPI set to (96, 96)
[ 300.430] (II) Loading sub module "fb"
[ 300.430] (II) LoadModule: "fb"
[ 300.430] (II) Module "fb" already built-in
[ 300.430] (==) NVIDIA(G0): Depth 24, (==) framebuffer bpp 32
[ 300.430] (==) NVIDIA(G0): RGB weight 888
[ 300.430] (==) NVIDIA(G0): Default visual is TrueColor
[ 300.430] (==) NVIDIA(G0): Using gamma correction (1.0, 1.0, 1.0)
[ 300.430] (II) Applying OutputClass "nvidia" options to /dev/dri/card0
[ 300.430] (**) NVIDIA(G0): Option "AllowEmptyInitialConfiguration"
[ 300.430] (**) NVIDIA(G0): Enabling 2D acceleration
[ 300.430] (II) Loading sub module "glxserver_nvidia"
[ 300.430] (II) LoadModule: "glxserver_nvidia"
[ 300.430] (II) Loading /usr/lib/nvidia/xorg/libglxserver_nvidia.so
[ 300.442] (II) Module glxserver_nvidia: vendor="NVIDIA Corporation"
[ 300.442] compiled for 1.6.99.901, module version = 1.0.0
[ 300.442] Module class: X.Org Server Extension
[ 300.442] (II) NVIDIA GLX Module 570.124.04 Tue Feb 25 03:45:00 UTC 2025
[ 300.442] (II) NVIDIA: The X server supports PRIME Render Offload.
[ 300.447] (--) NVIDIA(0): Valid display device(s) on GPU-0 at PCI:1:0:0
[ 300.447] (--) NVIDIA(0): DFP-0
[ 300.447] (--) NVIDIA(0): DFP-1
[ 300.447] (--) NVIDIA(0): DFP-2 (boot)
[ 300.447] (--) NVIDIA(0): DFP-3
[ 300.463] (II) NVIDIA(G0): NVIDIA GPU NVIDIA GeForce RTX 4060 Laptop GPU (AD107-B) at
[ 300.463] (II) NVIDIA(G0): PCI:1:0:0 (GPU-0)
[ 300.463] (--) NVIDIA(G0): Memory: 8384512 kBytes
[ 300.463] (--) NVIDIA(G0): VideoBIOS: 95.07.40.00.69
(...)
nvidia-xconfig xorg.conf (only external monitor):
[ 375.311] (==) Using system config directory "/usr/share/X11/xorg.conf.d"
[ 375.311] (==) ServerLayout "Layout0"
[ 375.311] (**) |-->Screen "Screen0" (0)
[ 375.311] (**) | |-->Monitor "Monitor0"
[ 375.311] (**) | |-->Device "Device0"
[ 375.311] (**) |-->Input Device "Keyboard0"
[ 375.311] (**) |-->Input Device "Mouse0"
[ 375.311] (**) Allowing byte-swapped clients
[ 375.311] (==) Automatically adding devices
[ 375.311] (==) Automatically enabling devices
[ 375.311] (==) Automatically adding GPU devices
[ 375.311] (==) Automatically binding GPU devices
(...)
[ 375.313] (II) xfree86: Adding drm device (/dev/dri/card0)
[ 375.313] (II) Platform probe for /sys/devices/pci0000:00/0000:00:01.0/0000:01:00.0/drm/card0
[ 375.315] (II) xfree86: Adding drm device (/dev/dri/card1)
[ 375.315] (II) Platform probe for /sys/devices/pci0000:00/0000:00:02.0/drm/card1
[ 375.318] (**) OutputClass "nvidia" ModulePath extended to "/usr/lib/nvidia/xorg,/usr/lib/xorg/modules,/usr/lib/xorg/modules"
[ 375.319] (--) PCI:*(0@0:2:0) 8086:a78b:17aa:3d06 rev 4, Mem @ 0x6202000000/16777216, 0x4000000000/268435456, I/O @ 0x00005000/64, BIOS @ 0x????????/131072
[ 375.319] (--) PCI: (1@0:0:0) 10de:28e0:17aa:3d06 rev 161, Mem @ 0x81000000/16777216, 0x6000000000/8589934592, 0x6200000000/33554432, I/O @ 0x00004000/128, BIOS @ 0x????????/524288
[ 375.319] (WW) Open ACPI failed (/var/run/acpid.socket) (No such file or directory)
[ 375.319] (II) LoadModule: "glx"
[ 375.319] (II) Loading /usr/lib/xorg/modules/extensions/libglx.so
[ 375.321] (II) Module glx: vendor="X.Org Foundation"
[ 375.321] compiled for 1.21.1.16, module version = 1.0.0
[ 375.321] ABI class: X.Org Server Extension, version 10.0
[ 375.321] (II) LoadModule: "nvidia"
[ 375.321] (II) Loading /usr/lib/xorg/modules/drivers/nvidia_drv.so
[ 375.321] (II) Module nvidia: vendor="NVIDIA Corporation"
[ 375.321] compiled for 1.6.99.901, module version = 1.0.0
[ 375.321] Module class: X.Org Video Driver
[ 375.321] (II) NVIDIA dlloader X Driver 570.124.04 Tue Feb 25 03:40:59 UTC 2025
[ 375.321] (II) NVIDIA Unified Driver for all Supported NVIDIA GPUs
[ 375.321] (II) Loading sub module "fb"
[ 375.321] (II) LoadModule: "fb"
[ 375.321] (II) Module "fb" already built-in
[ 375.321] (II) Loading sub module "wfb"
[ 375.321] (II) LoadModule: "wfb"
[ 375.321] (II) Loading /usr/lib/xorg/modules/libwfb.so
[ 375.322] (II) Module wfb: vendor="X.Org Foundation"
[ 375.322] compiled for 1.21.1.16, module version = 1.0.0
[ 375.322] ABI class: X.Org ANSI C Emulation, version 0.4
[ 375.322] (**) NVIDIA(0): Depth 24, (--) framebuffer bpp 32
[ 375.322] (==) NVIDIA(0): RGB weight 888
[ 375.322] (==) NVIDIA(0): Default visual is TrueColor
[ 375.322] (==) NVIDIA(0): Using gamma correction (1.0, 1.0, 1.0)
[ 375.322] (II) Applying OutputClass "nvidia" options to /dev/dri/card0
[ 375.322] (**) NVIDIA(0): Option "AllowEmptyInitialConfiguration"
[ 375.322] (**) NVIDIA(0): Enabling 2D acceleration
[ 375.322] (II) Loading sub module "glxserver_nvidia"
[ 375.322] (II) LoadModule: "glxserver_nvidia"
[ 375.322] (II) Loading /usr/lib/nvidia/xorg/libglxserver_nvidia.so
[ 375.334] (II) Module glxserver_nvidia: vendor="NVIDIA Corporation"
[ 375.334] compiled for 1.6.99.901, module version = 1.0.0
[ 375.334] Module class: X.Org Server Extension
[ 375.334] (II) NVIDIA GLX Module 570.124.04 Tue Feb 25 03:45:00 UTC 2025
[ 375.334] (II) NVIDIA: The X server supports PRIME Render Offload.
[ 375.342] (--) NVIDIA(0): Valid display device(s) on GPU-0 at PCI:1:0:0
[ 375.342] (--) NVIDIA(0): DFP-0
[ 375.342] (--) NVIDIA(0): DFP-1
[ 375.342] (--) NVIDIA(0): DFP-2 (boot)
[ 375.342] (--) NVIDIA(0): DFP-3
[ 375.362] (II) NVIDIA(0): NVIDIA GPU NVIDIA GeForce RTX 4060 Laptop GPU (AD107-B) at
[ 375.362] (II) NVIDIA(0): PCI:1:0:0 (GPU-0)
[ 375.362] (--) NVIDIA(0): Memory: 8384512 kBytes
[ 375.362] (--) NVIDIA(0): VideoBIOS: 95.07.40.00.69
[ 375.362] (II) NVIDIA(0): Detected PCI Express Link width: 8X
[ 375.412] (--) NVIDIA(GPU-0): DFP-0: disconnected
[ 375.412] (--) NVIDIA(GPU-0): DFP-0: Internal DisplayPort
[ 375.412] (--) NVIDIA(GPU-0): DFP-0: 2670.0 MHz maximum pixel clock
[ 375.412] (--) NVIDIA(GPU-0):
[ 375.412] (--) NVIDIA(GPU-0): DFP-1: disconnected
[ 375.412] (--) NVIDIA(GPU-0): DFP-1: Internal TMDS
[ 375.412] (--) NVIDIA(GPU-0): DFP-1: 165.0 MHz maximum pixel clock
[ 375.412] (--) NVIDIA(GPU-0):
[ 375.458] (--) NVIDIA(GPU-0): Samsung C24F390 (DFP-2): connected
[ 375.458] (--) NVIDIA(GPU-0): Samsung C24F390 (DFP-2): Internal TMDS
[ 375.458] (--) NVIDIA(GPU-0): Samsung C24F390 (DFP-2): 600.0 MHz maximum pixel clock
[ 375.458] (--) NVIDIA(GPU-0):
[ 375.458] (--) NVIDIA(GPU-0): DFP-3: disconnected
[ 375.458] (--) NVIDIA(GPU-0): DFP-3: Internal DisplayPort
[ 375.458] (--) NVIDIA(GPU-0): DFP-3: 2670.0 MHz maximum pixel clock
[ 375.458] (--) NVIDIA(GPU-0):
[ 375.495] (==) NVIDIA(0):
[ 375.495] (==) NVIDIA(0): No modes were requested; the default mode "nvidia-auto-select"
[ 375.495] (==) NVIDIA(0): will be used as the requested mode.
[ 375.495] (==) NVIDIA(0):
[ 375.501] (II) NVIDIA(0): Validated MetaModes:
[ 375.501] (II) NVIDIA(0): "DFP-2:nvidia-auto-select"
[ 375.501] (II) NVIDIA(0): Virtual screen size determined to be 1920 x 1080
[ 375.765] (--) NVIDIA(0): DPI set to (93, 94); computed from "UseEdidDpi" X config
[ 375.765] (--) NVIDIA(0): option
[ 375.766] (II) NVIDIA: Reserving 24576.00 MB of virtual memory for indirect memory
[ 375.766] (II) NVIDIA: access.
[ 375.785] (II) NVIDIA(0): ACPI: failed to connect to the ACPI event daemon; the daemon
[ 375.785] (II) NVIDIA(0): may not be running or the "AcpidSocketPath" X
[ 375.785] (II) NVIDIA(0): configuration option may not be set correctly. When the
[ 375.785] (II) NVIDIA(0): ACPI event daemon is available, the NVIDIA X driver will
[ 375.785] (II) NVIDIA(0): try to use it to receive ACPI event notifications. For
[ 375.785] (II) NVIDIA(0): details, please see the "ConnectToAcpid" and
[ 375.785] (II) NVIDIA(0): "AcpidSocketPath" X configuration options in Appendix B: X
[ 375.785] (II) NVIDIA(0): Config Options in the README.
[ 375.807] (II) NVIDIA(0): Setting mode "DFP-2:nvidia-auto-select"
[ 375.891] (==) NVIDIA(0): Disabling shared memory pixmaps
[ 375.891] (==) NVIDIA(0): Backing store enabled
[ 375.891] (==) NVIDIA(0): Silken mouse enabled
[ 375.892] (**) NVIDIA(0): DPMS enabled
[ 375.892] (II) Loading sub module "dri2"
[ 375.892] (II) LoadModule: "dri2"
[ 375.892] (II) Module "dri2" already built-in
[ 375.892] (II) NVIDIA(0): [DRI2] Setup complete
[ 375.892] (II) NVIDIA(0): [DRI2] VDPAU driver: nvidia
(...)
Offline
the built-in monitor just doesn't work (it displays an underline on the top-left corner) with this xorg.conf.
Because you created a static server layout that exclusively uses the nvidia GPU, don't.
[ 300.106] (II) modeset(0): using drv /dev/dri/card1
[ 300.430] (II) Applying OutputClass "nvidia" options to /dev/dri/card0
Add "nvidia_drm.modeset=1" to the https://wiki.archlinux.org/title/Kernel_parameters to block the simpledrm device and restore the natural order of cards and also, from some other threads, try to gloablly export LIBGL_DRI3_DISABLE=1 and if that does not help: post the entire X11 log.
Idk what you think you're hiding there, but contrary to your assesment, not external output is listed in the first log and nvidia and the modesettign driver both claim to be the primary driver and I can't tell whether this is odd because it's odd or because of what's missing.
Offline
Thanks for the help so far!
I've rebooted with `nvidia_drm.modeset=1` added to kernel cmdline, but I haven't noticed any difference in behavior
[ 23.858]
X.Org X Server 1.21.1.16
X Protocol Version 11, Revision 0
[ 23.858] Current Operating System: Linux unifi 6.12.17-1-lts #1 SMP PREEMPT_DYNAMIC Thu, 27 Feb 2025 14:12:30 +0000 x86_64
[ 23.858] Kernel command line: initrd=\initramfs-linux-lts.img root=PARTUUID=b1d852cb-0e6a-491a-218f-3e442ea235cf rw rootfstype=ext4 nvidia_drm.modeset=1
[ 23.858]
[ 23.858] Current version of pixman: 0.44.2
[ 23.858] Before reporting problems, check http://wiki.x.org
to make sure that you have the latest version.
[ 23.858] Markers: (--) probed, (**) from config file, (==) default setting,
(++) from command line, (!!) notice, (II) informational,
(WW) warning, (EE) error, (NI) not implemented, (??) unknown.
[ 23.858] (==) Log file: "/var/log/Xorg.0.log", Time: Thu Mar 6 14:36:14 2025
[ 23.861] (==) Using config file: "/etc/X11/xorg.conf"
[ 23.861] (==) Using config directory: "/etc/X11/xorg.conf.d"
[ 23.861] (==) Using system config directory "/usr/share/X11/xorg.conf.d"
[ 23.862] (==) No Layout section. Using the first Screen section.
[ 23.862] (==) No screen section available. Using defaults.
[ 23.862] (**) |-->Screen "Default Screen Section" (0)
[ 23.862] (**) | |-->Monitor "<default monitor>"
[ 23.862] (==) No monitor specified for screen "Default Screen Section".
Using a default monitor configuration.
[ 23.862] (**) Allowing byte-swapped clients
[ 23.862] (==) Automatically adding devices
[ 23.862] (==) Automatically enabling devices
[ 23.862] (==) Automatically adding GPU devices
[ 23.862] (==) Automatically binding GPU devices
[ 23.862] (==) Max clients allowed: 256, resource mask: 0x1fffff
[ 23.863] (WW) The directory "/usr/share/fonts/misc" does not exist.
[ 23.863] Entry deleted from font path.
[ 23.865] (WW) `fonts.dir' not found (or not valid) in "/usr/share/fonts/TTF".
[ 23.865] Entry deleted from font path.
[ 23.865] (Run 'mkfontdir' on "/usr/share/fonts/TTF").
[ 23.865] (WW) The directory "/usr/share/fonts/OTF" does not exist.
[ 23.865] Entry deleted from font path.
[ 23.865] (WW) The directory "/usr/share/fonts/Type1" does not exist.
[ 23.865] Entry deleted from font path.
[ 23.865] (WW) The directory "/usr/share/fonts/100dpi" does not exist.
[ 23.865] Entry deleted from font path.
[ 23.865] (WW) The directory "/usr/share/fonts/75dpi" does not exist.
[ 23.865] Entry deleted from font path.
[ 23.865] (==) FontPath set to:
[ 23.865] (==) ModulePath set to "/usr/lib/xorg/modules"
[ 23.865] (II) The server relies on udev to provide the list of input devices.
If no devices become available, reconfigure udev or disable AutoAddDevices.
[ 23.865] (II) Module ABI versions:
[ 23.865] X.Org ANSI C Emulation: 0.4
[ 23.865] X.Org Video Driver: 25.2
[ 23.865] X.Org XInput driver : 24.4
[ 23.865] X.Org Server Extension : 10.0
[ 23.865] (++) using VT number 7
[ 23.865] (II) systemd-logind: logind integration requires -keeptty and -keeptty was not provided, disabling logind integration
[ 23.866] (II) xfree86: Adding drm device (/dev/dri/card1)
[ 23.866] (II) Platform probe for /sys/devices/pci0000:00/0000:00:01.0/0000:01:00.0/drm/card1
[ 23.867] (II) xfree86: Adding drm device (/dev/dri/card0)
[ 23.867] (II) Platform probe for /sys/devices/pci0000:00/0000:00:02.0/drm/card0
[ 23.873] (**) OutputClass "nvidia" ModulePath extended to "/usr/lib/nvidia/xorg,/usr/lib/xorg/modules,/usr/lib/xorg/modules"
[ 23.873] (--) PCI:*(0@0:2:0) 8086:a78b:17aa:3d06 rev 4, Mem @ 0x6202000000/16777216, 0x4000000000/268435456, I/O @ 0x00005000/64, BIOS @ 0x????????/131072
[ 23.873] (--) PCI: (1@0:0:0) 10de:28e0:17aa:3d06 rev 161, Mem @ 0x81000000/16777216, 0x6000000000/8589934592, 0x6200000000/33554432, I/O @ 0x00004000/128, BIOS @ 0x????????/524288
[ 23.873] (WW) Open ACPI failed (/var/run/acpid.socket) (No such file or directory)
[ 23.873] (II) LoadModule: "glx"
[ 23.874] (II) Loading /usr/lib/xorg/modules/extensions/libglx.so
[ 23.879] (II) Module glx: vendor="X.Org Foundation"
[ 23.879] compiled for 1.21.1.16, module version = 1.0.0
[ 23.879] ABI class: X.Org Server Extension, version 10.0
[ 23.879] (II) Applying OutputClass "nvidia" to /dev/dri/card1
[ 23.879] loading driver: nvidia
[ 23.879] (==) Matched intel as autoconfigured driver 0
[ 23.879] (==) Matched nvidia as autoconfigured driver 1
[ 23.879] (==) Matched nouveau as autoconfigured driver 2
[ 23.879] (==) Matched nv as autoconfigured driver 3
[ 23.879] (==) Matched modesetting as autoconfigured driver 4
[ 23.879] (==) Matched fbdev as autoconfigured driver 5
[ 23.879] (==) Matched vesa as autoconfigured driver 6
[ 23.879] (==) Assigned the driver to the xf86ConfigLayout
[ 23.879] (II) LoadModule: "intel"
[ 23.880] (WW) Warning, couldn't open module intel
[ 23.880] (EE) Failed to load module "intel" (module does not exist, 0)
[ 23.880] (II) LoadModule: "nvidia"
[ 23.880] (II) Loading /usr/lib/xorg/modules/drivers/nvidia_drv.so
[ 23.885] (II) Module nvidia: vendor="NVIDIA Corporation"
[ 23.885] compiled for 1.6.99.901, module version = 1.0.0
[ 23.885] Module class: X.Org Video Driver
[ 23.885] (II) LoadModule: "nouveau"
[ 23.885] (WW) Warning, couldn't open module nouveau
[ 23.885] (EE) Failed to load module "nouveau" (module does not exist, 0)
[ 23.885] (II) LoadModule: "nv"
[ 23.886] (WW) Warning, couldn't open module nv
[ 23.886] (EE) Failed to load module "nv" (module does not exist, 0)
[ 23.886] (II) LoadModule: "modesetting"
[ 23.886] (II) Loading /usr/lib/xorg/modules/drivers/modesetting_drv.so
[ 23.887] (II) Module modesetting: vendor="X.Org Foundation"
[ 23.887] compiled for 1.21.1.16, module version = 1.21.1
[ 23.887] Module class: X.Org Video Driver
[ 23.887] ABI class: X.Org Video Driver, version 25.2
[ 23.887] (II) LoadModule: "fbdev"
[ 23.887] (WW) Warning, couldn't open module fbdev
[ 23.887] (EE) Failed to load module "fbdev" (module does not exist, 0)
[ 23.887] (II) LoadModule: "vesa"
[ 23.887] (WW) Warning, couldn't open module vesa
[ 23.887] (EE) Failed to load module "vesa" (module does not exist, 0)
[ 23.887] (II) NVIDIA dlloader X Driver 570.124.04 Tue Feb 25 03:40:59 UTC 2025
[ 23.887] (II) NVIDIA Unified Driver for all Supported NVIDIA GPUs
[ 23.888] (II) modesetting: Driver for Modesetting Kernel Drivers: kms
[ 23.900] (II) modeset(0): using drv /dev/dri/card0
[ 23.901] (II) Loading sub module "fb"
[ 23.901] (II) LoadModule: "fb"
[ 23.901] (II) Module "fb" already built-in
[ 23.901] (II) Loading sub module "wfb"
[ 23.901] (II) LoadModule: "wfb"
[ 23.901] (II) Loading /usr/lib/xorg/modules/libwfb.so
[ 23.902] (II) Module wfb: vendor="X.Org Foundation"
[ 23.902] compiled for 1.21.1.16, module version = 1.0.0
[ 23.902] ABI class: X.Org ANSI C Emulation, version 0.4
[ 23.903] (II) modeset(0): Creating default Display subsection in Screen section
"Default Screen Section" for depth/fbbpp 24/32
[ 23.903] (==) modeset(0): Depth 24, (==) framebuffer bpp 32
[ 23.903] (==) modeset(0): RGB weight 888
[ 23.903] (==) modeset(0): Default visual is TrueColor
[ 23.903] (II) Loading sub module "glamoregl"
[ 23.903] (II) LoadModule: "glamoregl"
[ 23.903] (II) Loading /usr/lib/xorg/modules/libglamoregl.so
[ 23.909] (II) Module glamoregl: vendor="X.Org Foundation"
[ 23.909] compiled for 1.21.1.16, module version = 1.0.1
[ 23.909] ABI class: X.Org ANSI C Emulation, version 0.4
[ 24.168] (II) modeset(0): glamor X acceleration enabled on Mesa Intel(R) Graphics (RPL-S)
[ 24.168] (II) modeset(0): glamor initialized
[ 24.168] (==) modeset(0): VariableRefresh: disabled
[ 24.168] (==) modeset(0): AsyncFlipSecondaries: disabled
[ 24.170] (II) modeset(0): Output eDP-1 has no monitor section
[ 24.180] (II) modeset(0): Output HDMI-1 has no monitor section
[ 24.190] (II) modeset(0): Output DP-1 has no monitor section
[ 24.200] (II) modeset(0): Output HDMI-2 has no monitor section
[ 24.210] (II) modeset(0): Output HDMI-3 has no monitor section
[ 24.220] (II) modeset(0): Output DP-2 has no monitor section
[ 24.230] (II) modeset(0): Output HDMI-4 has no monitor section
[ 24.232] (II) modeset(0): EDID for output eDP-1
[ 24.232] (II) modeset(0): Manufacturer: AUO Model: 7ead Serial#: 32429
[ 24.232] (II) modeset(0): Year: 2023 Week: 24
[ 24.232] (II) modeset(0): EDID Version: 1.4
[ 24.232] (II) modeset(0): Digital Display Input
[ 24.232] (II) modeset(0): 8 bits per channel
[ 24.232] (II) modeset(0): Digital interface is DisplayPort
[ 24.232] (II) modeset(0): Max Image Size [cm]: horiz.: 34 vert.: 19
[ 24.232] (II) modeset(0): Gamma: 2.20
[ 24.232] (II) modeset(0): No DPMS capabilities specified
[ 24.232] (II) modeset(0): Supported color encodings: RGB 4:4:4
[ 24.232] (II) modeset(0): First detailed timing is preferred mode
[ 24.232] (II) modeset(0): Preferred mode is native pixel format and refresh rate
[ 24.232] (II) modeset(0): Display is continuous-frequency
[ 24.232] (II) modeset(0): redX: 0.649 redY: 0.328 greenX: 0.296 greenY: 0.627
[ 24.232] (II) modeset(0): blueX: 0.152 blueY: 0.062 whiteX: 0.313 whiteY: 0.329
[ 24.232] (II) modeset(0): Manufacturer's mask: 0
[ 24.232] (II) modeset(0): Supported detailed timing:
[ 24.232] (II) modeset(0): clock: 142.5 MHz Image Size: 344 x 193 mm
[ 24.232] (II) modeset(0): h_active: 1920 h_sync: 1968 h_sync_end 2000 h_blank_end 2103 h_border: 0
[ 24.232] (II) modeset(0): v_active: 1080 v_sync: 1090 v_sync_end 1095 v_blanking: 1129 v_border: 0
[ 24.232] (II) modeset(0): Ranges: V min: 48 V max: 144 Hz, H min: 163 H max: 163 kHz, PixClock max 345 MHz
[ 24.232] (II) modeset(0): AUO
[ 24.232] (II) modeset(0): B156HAN15.K
[ 24.232] (II) modeset(0): Number of EDID sections to follow: 1
[ 24.232] (II) modeset(0): EDID (in hex):
[ 24.232] (II) modeset(0): 00ffffffffffff0006afad7ead7e0000
[ 24.232] (II) modeset(0): 18210104a5221378034e35a6544ba027
[ 24.232] (II) modeset(0): 0f505400000001010101010101010101
[ 24.232] (II) modeset(0): 010101010101a63780b7703831403020
[ 24.232] (II) modeset(0): a50058c110000018000000fd003090a3
[ 24.232] (II) modeset(0): a322010a202020202020000000fe0041
[ 24.232] (II) modeset(0): 554f0a202020202020202020000000fe
[ 24.232] (II) modeset(0): 004231353648414e31352e4b200a01f9
[ 24.232] (II) modeset(0): 70207902002200148b3705847f07b600
[ 24.232] (II) modeset(0): 2f801f0037043000090004002b000c27
[ 24.232] (II) modeset(0): 003c8f00002700303b00008100106f1a
[ 24.232] (II) modeset(0): 00000301309000005351535190000000
[ 24.232] (II) modeset(0): 00000000000000000000000000000000
[ 24.232] (II) modeset(0): 00000000000000000000000000000000
[ 24.232] (II) modeset(0): 00000000000000000000000000000000
[ 24.232] (II) modeset(0): 0000000000000000000000000000f190
[ 24.233] (II) modeset(0): Printing probed modes for output eDP-1
[ 24.233] (II) modeset(0): Modeline "1920x1080"x144.0 341.90 1920 1968 2000 2103 1080 1090 1095 1129 +hsync -vsync (162.6 kHz eP)
[ 24.233] (II) modeset(0): Modeline "1920x1080"x60.0 142.46 1920 1968 2000 2103 1080 1090 1095 1129 -hsync -vsync (67.7 kHz eP)
[ 24.233] (II) modeset(0): Modeline "1920x1080"x60.0 266.50 1920 1944 1960 2000 1080 1081 1084 1111 doublescan +hsync -vsync (133.2 kHz d)
[ 24.233] (II) modeset(0): Modeline "1920x1080"x60.0 173.00 1920 2048 2248 2576 1080 1083 1088 1120 -hsync +vsync (67.2 kHz d)
[ 24.233] (II) modeset(0): Modeline "1920x1080"x59.9 138.50 1920 1968 2000 2080 1080 1083 1088 1111 +hsync -vsync (66.6 kHz d)
[ 24.233] (II) modeset(0): Modeline "1680x1050"x60.0 146.25 1680 1784 1960 2240 1050 1053 1059 1089 -hsync +vsync (65.3 kHz d)
[ 24.233] (II) modeset(0): Modeline "1680x1050"x59.9 119.00 1680 1728 1760 1840 1050 1053 1059 1080 +hsync -vsync (64.7 kHz d)
[ 24.233] (II) modeset(0): Modeline "1400x1050"x74.8 155.80 1400 1464 1784 1912 1050 1052 1064 1090 +hsync +vsync (81.5 kHz d)
[ 24.233] (II) modeset(0): Modeline "1400x1050"x60.0 122.00 1400 1488 1640 1880 1050 1052 1064 1082 +hsync +vsync (64.9 kHz d)
[ 24.233] (II) modeset(0): Modeline "1600x900"x60.0 246.00 1600 1728 1900 2200 900 901 904 932 doublescan -hsync +vsync (111.8 kHz d)
[ 24.233] (II) modeset(0): Modeline "1600x900"x59.9 186.50 1600 1624 1640 1680 900 901 904 926 doublescan +hsync -vsync (111.0 kHz d)
[ 24.233] (II) modeset(0): Modeline "1600x900"x59.9 118.25 1600 1696 1856 2112 900 903 908 934 -hsync +vsync (56.0 kHz d)
[ 24.233] (II) modeset(0): Modeline "1600x900"x59.8 97.50 1600 1648 1680 1760 900 903 908 926 +hsync -vsync (55.4 kHz d)
[ 24.233] (II) modeset(0): Modeline "1280x1024"x85.0 157.50 1280 1344 1504 1728 1024 1025 1028 1072 +hsync +vsync (91.1 kHz d)
[ 24.233] (II) modeset(0): Modeline "1280x1024"x75.0 135.00 1280 1296 1440 1688 1024 1025 1028 1066 +hsync +vsync (80.0 kHz d)
[ 24.233] (II) modeset(0): Modeline "1280x1024"x60.0 108.00 1280 1328 1440 1688 1024 1025 1028 1066 +hsync +vsync (64.0 kHz d)
[ 24.233] (II) modeset(0): Modeline "1400x900"x60.0 103.50 1400 1480 1624 1848 900 903 913 934 -hsync +vsync (56.0 kHz d)
[ 24.233] (II) modeset(0): Modeline "1400x900"x59.9 86.50 1400 1448 1480 1560 900 903 913 926 +hsync -vsync (55.4 kHz d)
[ 24.233] (II) modeset(0): Modeline "1280x960"x85.0 148.50 1280 1344 1504 1728 960 961 964 1011 +hsync +vsync (85.9 kHz d)
[ 24.233] (II) modeset(0): Modeline "1280x960"x60.0 108.00 1280 1376 1488 1800 960 961 964 1000 +hsync +vsync (60.0 kHz d)
[ 24.233] (II) modeset(0): Modeline "1440x810"x60.0 198.12 1440 1548 1704 1968 810 811 814 839 doublescan -hsync +vsync (100.7 kHz d)
[ 24.233] (II) modeset(0): Modeline "1440x810"x60.0 151.88 1440 1464 1480 1520 810 811 814 833 doublescan +hsync -vsync (99.9 kHz d)
[ 24.233] (II) modeset(0): Modeline "1368x768"x59.9 85.25 1368 1440 1576 1784 768 771 781 798 -hsync +vsync (47.8 kHz d)
[ 24.233] (II) modeset(0): Modeline "1368x768"x59.9 72.25 1368 1416 1448 1528 768 771 781 790 +hsync -vsync (47.3 kHz d)
[ 24.233] (II) modeset(0): Modeline "1280x800"x60.0 174.25 1280 1380 1516 1752 800 801 804 829 doublescan -hsync +vsync (99.5 kHz d)
[ 24.233] (II) modeset(0): Modeline "1280x800"x60.0 134.25 1280 1304 1320 1360 800 801 804 823 doublescan +hsync -vsync (98.7 kHz d)
[ 24.233] (II) modeset(0): Modeline "1280x800"x59.8 83.50 1280 1352 1480 1680 800 803 809 831 -hsync +vsync (49.7 kHz d)
[ 24.233] (II) modeset(0): Modeline "1280x800"x59.9 71.00 1280 1328 1360 1440 800 803 809 823 +hsync -vsync (49.3 kHz d)
[ 24.233] (II) modeset(0): Modeline "1152x864"x75.0 108.00 1152 1216 1344 1600 864 865 868 900 +hsync +vsync (67.5 kHz d)
[ 24.233] (II) modeset(0): Modeline "1280x720"x60.0 156.12 1280 1376 1512 1744 720 721 724 746 doublescan -hsync +vsync (89.5 kHz d)
[ 24.233] (II) modeset(0): Modeline "1280x720"x60.0 120.75 1280 1304 1320 1360 720 721 724 740 doublescan +hsync -vsync (88.8 kHz d)
[ 24.233] (II) modeset(0): Modeline "1280x720"x59.9 74.50 1280 1344 1472 1664 720 723 728 748 -hsync +vsync (44.8 kHz d)
[ 24.233] (II) modeset(0): Modeline "1280x720"x59.7 63.75 1280 1328 1360 1440 720 723 728 741 +hsync -vsync (44.3 kHz d)
[ 24.233] (II) modeset(0): Modeline "1024x768"x85.0 194.02 1024 1108 1220 1416 768 768 770 806 doublescan -hsync +vsync (137.0 kHz d)
[ 24.233] (II) modeset(0): Modeline "1024x768"x75.0 170.24 1024 1108 1220 1416 768 768 770 801 doublescan -hsync +vsync (120.2 kHz d)
[ 24.233] (II) modeset(0): Modeline "1024x768"x60.0 133.47 1024 1100 1212 1400 768 768 770 794 doublescan -hsync +vsync (95.3 kHz d)
[ 24.233] (II) modeset(0): Modeline "1024x768"x85.0 94.50 1024 1072 1168 1376 768 769 772 808 +hsync +vsync (68.7 kHz d)
[ 24.233] (II) modeset(0): Modeline "1024x768"x75.0 78.75 1024 1040 1136 1312 768 769 772 800 +hsync +vsync (60.0 kHz d)
[ 24.233] (II) modeset(0): Modeline "1024x768"x70.1 75.00 1024 1048 1184 1328 768 771 777 806 -hsync -vsync (56.5 kHz d)
[ 24.233] (II) modeset(0): Modeline "1024x768"x60.0 65.00 1024 1048 1184 1344 768 771 777 806 -hsync -vsync (48.4 kHz d)
[ 24.233] (II) modeset(0): Modeline "1024x768i"x87.0 44.90 1024 1032 1208 1264 768 768 776 817 interlace +hsync +vsync (35.5 kHz d)
[ 24.233] (II) modeset(0): Modeline "960x720"x85.0 170.68 960 1036 1144 1328 720 720 722 756 doublescan -hsync +vsync (128.5 kHz d)
[ 24.233] (II) modeset(0): Modeline "960x720"x75.0 148.50 960 1032 1144 1320 720 720 722 750 doublescan -hsync +vsync (112.5 kHz d)
[ 24.233] (II) modeset(0): Modeline "960x720"x60.0 117.00 960 1024 1128 1300 720 720 722 750 doublescan -hsync +vsync (90.0 kHz d)
[ 24.233] (II) modeset(0): Modeline "928x696"x75.0 144.00 928 992 1104 1280 696 696 698 750 doublescan -hsync +vsync (112.5 kHz d)
[ 24.233] (II) modeset(0): Modeline "928x696"x60.1 109.15 928 976 1088 1264 696 696 698 719 doublescan -hsync +vsync (86.4 kHz d)
[ 24.233] (II) modeset(0): Modeline "896x672"x75.0 130.50 896 944 1052 1228 672 672 674 708 doublescan -hsync +vsync (106.3 kHz d)
[ 24.233] (II) modeset(0): Modeline "896x672"x60.0 102.40 896 960 1060 1224 672 672 674 697 doublescan -hsync +vsync (83.7 kHz d)
[ 24.233] (II) modeset(0): Modeline "1024x576"x60.0 98.50 1024 1092 1200 1376 576 577 580 597 doublescan -hsync +vsync (71.6 kHz d)
[ 24.233] (II) modeset(0): Modeline "1024x576"x60.0 78.38 1024 1048 1064 1104 576 577 580 592 doublescan +hsync -vsync (71.0 kHz d)
[ 24.233] (II) modeset(0): Modeline "1024x576"x59.9 46.50 1024 1064 1160 1296 576 579 584 599 -hsync +vsync (35.9 kHz d)
[ 24.233] (II) modeset(0): Modeline "1024x576"x59.8 42.00 1024 1072 1104 1184 576 579 584 593 +hsync -vsync (35.5 kHz d)
[ 24.233] (II) modeset(0): Modeline "960x600"x59.9 96.62 960 1028 1128 1296 600 601 604 622 doublescan -hsync +vsync (74.6 kHz d)
[ 24.233] (II) modeset(0): Modeline "960x600"x60.0 77.00 960 984 1000 1040 600 601 604 617 doublescan +hsync -vsync (74.0 kHz d)
[ 24.233] (II) modeset(0): Modeline "832x624"x74.6 57.28 832 864 928 1152 624 625 628 667 -hsync -vsync (49.7 kHz d)
[ 24.233] (II) modeset(0): Modeline "960x540"x60.0 86.50 960 1024 1124 1288 540 541 544 560 doublescan -hsync +vsync (67.2 kHz d)
[ 24.233] (II) modeset(0): Modeline "960x540"x60.0 69.25 960 984 1000 1040 540 541 544 555 doublescan +hsync -vsync (66.6 kHz d)
[ 24.233] (II) modeset(0): Modeline "960x540"x59.6 40.75 960 992 1088 1216 540 543 548 562 -hsync +vsync (33.5 kHz d)
[ 24.233] (II) modeset(0): Modeline "960x540"x59.8 37.25 960 1008 1040 1120 540 543 548 556 +hsync -vsync (33.3 kHz d)
[ 24.233] (II) modeset(0): Modeline "800x600"x85.0 114.75 800 832 928 1080 600 600 602 625 doublescan +hsync +vsync (106.2 kHz d)
[ 24.233] (II) modeset(0): Modeline "800x600"x75.0 101.25 800 832 928 1080 600 600 602 625 doublescan +hsync +vsync (93.8 kHz d)
[ 24.233] (II) modeset(0): Modeline "800x600"x70.0 94.50 800 832 928 1080 600 600 602 625 doublescan +hsync +vsync (87.5 kHz d)
[ 24.233] (II) modeset(0): Modeline "800x600"x65.0 87.75 800 832 928 1080 600 600 602 625 doublescan +hsync +vsync (81.2 kHz d)
[ 24.233] (II) modeset(0): Modeline "800x600"x60.0 81.00 800 832 928 1080 600 600 602 625 doublescan +hsync +vsync (75.0 kHz d)
[ 24.233] (II) modeset(0): Modeline "800x600"x85.1 56.30 800 832 896 1048 600 601 604 631 +hsync +vsync (53.7 kHz d)
[ 24.233] (II) modeset(0): Modeline "800x600"x72.2 50.00 800 856 976 1040 600 637 643 666 +hsync +vsync (48.1 kHz d)
[ 24.233] (II) modeset(0): Modeline "800x600"x75.0 49.50 800 816 896 1056 600 601 604 625 +hsync +vsync (46.9 kHz d)
[ 24.233] (II) modeset(0): Modeline "800x600"x60.3 40.00 800 840 968 1056 600 601 605 628 +hsync +vsync (37.9 kHz d)
[ 24.233] (II) modeset(0): Modeline "800x600"x56.2 36.00 800 824 896 1024 600 601 603 625 +hsync +vsync (35.2 kHz d)
[ 24.233] (II) modeset(0): Modeline "840x525"x60.0 73.12 840 892 980 1120 525 526 529 544 doublescan -hsync +vsync (65.3 kHz d)
[ 24.233] (II) modeset(0): Modeline "840x525"x59.9 59.50 840 864 880 920 525 526 529 540 doublescan +hsync -vsync (64.7 kHz d)
[ 24.233] (II) modeset(0): Modeline "864x486"x59.9 32.50 864 888 968 1072 486 489 494 506 -hsync +vsync (30.3 kHz d)
[ 24.233] (II) modeset(0): Modeline "864x486"x59.6 30.50 864 912 944 1024 486 489 494 500 +hsync -vsync (29.8 kHz d)
[ 24.233] (II) modeset(0): Modeline "700x525"x74.8 77.90 700 732 892 956 525 526 532 545 doublescan +hsync +vsync (81.5 kHz d)
[ 24.233] (II) modeset(0): Modeline "700x525"x60.0 61.00 700 744 820 940 525 526 532 541 doublescan +hsync +vsync (64.9 kHz d)
[ 24.233] (II) modeset(0): Modeline "800x450"x59.9 59.12 800 848 928 1056 450 451 454 467 doublescan -hsync +vsync (56.0 kHz d)
[ 24.233] (II) modeset(0): Modeline "800x450"x59.8 48.75 800 824 840 880 450 451 454 463 doublescan +hsync -vsync (55.4 kHz d)
[ 24.233] (II) modeset(0): Modeline "640x512"x85.0 78.75 640 672 752 864 512 512 514 536 doublescan +hsync +vsync (91.1 kHz d)
[ 24.233] (II) modeset(0): Modeline "640x512"x75.0 67.50 640 648 720 844 512 512 514 533 doublescan +hsync +vsync (80.0 kHz d)
[ 24.233] (II) modeset(0): Modeline "640x512"x60.0 54.00 640 664 720 844 512 512 514 533 doublescan +hsync +vsync (64.0 kHz d)
[ 24.233] (II) modeset(0): Modeline "700x450"x60.0 51.75 700 740 812 924 450 451 456 467 doublescan -hsync +vsync (56.0 kHz d)
[ 24.233] (II) modeset(0): Modeline "700x450"x59.9 43.25 700 724 740 780 450 451 456 463 doublescan +hsync -vsync (55.4 kHz d)
[ 24.233] (II) modeset(0): Modeline "640x480"x85.1 74.25 640 672 752 864 480 480 482 505 doublescan +hsync +vsync (85.9 kHz d)
[ 24.233] (II) modeset(0): Modeline "640x480"x60.0 54.00 640 688 744 900 480 480 482 500 doublescan +hsync +vsync (60.0 kHz d)
[ 24.233] (II) modeset(0): Modeline "640x480"x85.0 36.00 640 696 752 832 480 481 484 509 -hsync -vsync (43.3 kHz d)
[ 24.233] (II) modeset(0): Modeline "640x480"x72.8 31.50 640 664 704 832 480 489 492 520 -hsync -vsync (37.9 kHz d)
[ 24.233] (II) modeset(0): Modeline "640x480"x75.0 31.50 640 656 720 840 480 481 484 500 -hsync -vsync (37.5 kHz d)
[ 24.233] (II) modeset(0): Modeline "640x480"x59.9 25.18 640 656 752 800 480 490 492 525 -hsync -vsync (31.5 kHz d)
[ 24.233] (II) modeset(0): Modeline "720x405"x59.5 22.50 720 744 808 896 405 408 413 422 -hsync +vsync (25.1 kHz d)
[ 24.233] (II) modeset(0): Modeline "720x405"x59.0 21.75 720 768 800 880 405 408 413 419 +hsync -vsync (24.7 kHz d)
[ 24.233] (II) modeset(0): Modeline "720x400"x85.0 35.50 720 756 828 936 400 401 404 446 -hsync +vsync (37.9 kHz d)
[ 24.233] (II) modeset(0): Modeline "684x384"x59.9 42.62 684 720 788 892 384 385 390 399 doublescan -hsync +vsync (47.8 kHz d)
[ 24.233] (II) modeset(0): Modeline "684x384"x59.9 36.12 684 708 724 764 384 385 390 395 doublescan +hsync -vsync (47.3 kHz d)
[ 24.233] (II) modeset(0): Modeline "640x400"x59.9 41.75 640 676 740 840 400 401 404 415 doublescan -hsync +vsync (49.7 kHz d)
[ 24.233] (II) modeset(0): Modeline "640x400"x60.0 35.50 640 664 680 720 400 401 404 411 doublescan +hsync -vsync (49.3 kHz d)
[ 24.233] (II) modeset(0): Modeline "640x400"x85.1 31.50 640 672 736 832 400 401 404 445 -hsync +vsync (37.9 kHz d)
[ 24.233] (II) modeset(0): Modeline "576x432"x75.0 54.00 576 608 672 800 432 432 434 450 doublescan +hsync +vsync (67.5 kHz d)
[ 24.233] (II) modeset(0): Modeline "640x360"x59.9 37.25 640 672 736 832 360 361 364 374 doublescan -hsync +vsync (44.8 kHz d)
[ 24.233] (II) modeset(0): Modeline "640x360"x59.8 31.88 640 664 680 720 360 361 364 370 doublescan +hsync -vsync (44.3 kHz d)
[ 24.233] (II) modeset(0): Modeline "640x360"x59.8 18.00 640 664 720 800 360 363 368 376 -hsync +vsync (22.5 kHz d)
[ 24.233] (II) modeset(0): Modeline "640x360"x59.3 17.75 640 688 720 800 360 363 368 374 +hsync -vsync (22.2 kHz d)
[ 24.233] (II) modeset(0): Modeline "640x350"x85.1 31.50 640 672 736 832 350 382 385 445 +hsync -vsync (37.9 kHz d)
[ 24.233] (II) modeset(0): Modeline "512x384"x85.0 47.25 512 536 584 688 384 384 386 404 doublescan +hsync +vsync (68.7 kHz d)
[ 24.233] (II) modeset(0): Modeline "512x384"x75.0 39.38 512 520 568 656 384 384 386 400 doublescan +hsync +vsync (60.0 kHz d)
[ 24.233] (II) modeset(0): Modeline "512x384"x70.1 37.50 512 524 592 664 384 385 388 403 doublescan -hsync -vsync (56.5 kHz d)
[ 24.233] (II) modeset(0): Modeline "512x384"x60.0 32.50 512 524 592 672 384 385 388 403 doublescan -hsync -vsync (48.4 kHz d)
[ 24.233] (II) modeset(0): Modeline "512x384i"x87.1 22.45 512 516 604 632 384 384 388 408 interlace doublescan +hsync +vsync (35.5 kHz d)
[ 24.233] (II) modeset(0): Modeline "512x288"x60.0 23.25 512 532 580 648 288 289 292 299 doublescan -hsync +vsync (35.9 kHz d)
[ 24.233] (II) modeset(0): Modeline "512x288"x59.9 21.00 512 536 552 592 288 289 292 296 doublescan +hsync -vsync (35.5 kHz d)
[ 24.233] (II) modeset(0): Modeline "416x312"x74.7 28.64 416 432 464 576 312 312 314 333 doublescan -hsync -vsync (49.7 kHz d)
[ 24.233] (II) modeset(0): Modeline "480x270"x59.6 20.38 480 496 544 608 270 271 274 281 doublescan -hsync +vsync (33.5 kHz d)
[ 24.233] (II) modeset(0): Modeline "480x270"x59.8 18.62 480 504 520 560 270 271 274 278 doublescan +hsync -vsync (33.3 kHz d)
[ 24.233] (II) modeset(0): Modeline "400x300"x85.3 28.15 400 416 448 524 300 300 302 315 doublescan +hsync +vsync (53.7 kHz d)
[ 24.233] (II) modeset(0): Modeline "400x300"x72.2 25.00 400 428 488 520 300 318 321 333 doublescan +hsync +vsync (48.1 kHz d)
[ 24.233] (II) modeset(0): Modeline "400x300"x75.1 24.75 400 408 448 528 300 300 302 312 doublescan +hsync +vsync (46.9 kHz d)
[ 24.233] (II) modeset(0): Modeline "400x300"x60.3 20.00 400 420 484 528 300 300 302 314 doublescan +hsync +vsync (37.9 kHz d)
[ 24.233] (II) modeset(0): Modeline "400x300"x56.3 18.00 400 412 448 512 300 300 301 312 doublescan +hsync +vsync (35.2 kHz d)
[ 24.233] (II) modeset(0): Modeline "432x243"x59.9 16.25 432 444 484 536 243 244 247 253 doublescan -hsync +vsync (30.3 kHz d)
[ 24.233] (II) modeset(0): Modeline "432x243"x59.6 15.25 432 456 472 512 243 244 247 250 doublescan +hsync -vsync (29.8 kHz d)
[ 24.233] (II) modeset(0): Modeline "320x240"x85.2 18.00 320 348 376 416 240 240 242 254 doublescan -hsync -vsync (43.3 kHz d)
[ 24.233] (II) modeset(0): Modeline "320x240"x72.8 15.75 320 332 352 416 240 244 246 260 doublescan -hsync -vsync (37.9 kHz d)
[ 24.233] (II) modeset(0): Modeline "320x240"x75.0 15.75 320 328 360 420 240 240 242 250 doublescan -hsync -vsync (37.5 kHz d)
[ 24.233] (II) modeset(0): Modeline "320x240"x60.1 12.59 320 328 376 400 240 245 246 262 doublescan -hsync -vsync (31.5 kHz d)
[ 24.233] (II) modeset(0): Modeline "360x202"x59.5 11.25 360 372 404 448 202 204 206 211 doublescan -hsync +vsync (25.1 kHz d)
[ 24.233] (II) modeset(0): Modeline "360x202"x59.1 10.88 360 384 400 440 202 204 206 209 doublescan +hsync -vsync (24.7 kHz d)
[ 24.233] (II) modeset(0): Modeline "360x200"x85.0 17.75 360 378 414 468 200 200 202 223 doublescan -hsync +vsync (37.9 kHz d)
[ 24.233] (II) modeset(0): Modeline "320x200"x85.3 15.75 320 336 368 416 200 200 202 222 doublescan -hsync +vsync (37.9 kHz d)
[ 24.233] (II) modeset(0): Modeline "320x180"x59.8 9.00 320 332 360 400 180 181 184 188 doublescan -hsync +vsync (22.5 kHz d)
[ 24.233] (II) modeset(0): Modeline "320x180"x59.3 8.88 320 344 360 400 180 181 184 187 doublescan +hsync -vsync (22.2 kHz d)
[ 24.233] (II) modeset(0): Modeline "320x175"x85.3 15.75 320 336 368 416 175 191 192 222 doublescan +hsync -vsync (37.9 kHz d)
[ 24.243] (II) modeset(0): EDID for output HDMI-1
[ 24.253] (II) modeset(0): EDID for output DP-1
[ 24.263] (II) modeset(0): EDID for output HDMI-2
[ 24.273] (II) modeset(0): EDID for output HDMI-3
[ 24.283] (II) modeset(0): EDID for output DP-2
[ 24.293] (II) modeset(0): EDID for output HDMI-4
[ 24.293] (II) modeset(0): Output eDP-1 connected
[ 24.293] (II) modeset(0): Output HDMI-1 disconnected
[ 24.293] (II) modeset(0): Output DP-1 disconnected
[ 24.293] (II) modeset(0): Output HDMI-2 disconnected
[ 24.293] (II) modeset(0): Output HDMI-3 disconnected
[ 24.293] (II) modeset(0): Output DP-2 disconnected
[ 24.293] (II) modeset(0): Output HDMI-4 disconnected
[ 24.293] (II) modeset(0): Using exact sizes for initial modes
[ 24.293] (II) modeset(0): Output eDP-1 using initial mode 1920x1080 +0+0
[ 24.293] (==) modeset(0): Using gamma correction (1.0, 1.0, 1.0)
[ 24.293] (==) modeset(0): DPI set to (96, 96)
[ 24.293] (II) Loading sub module "fb"
[ 24.293] (II) LoadModule: "fb"
[ 24.293] (II) Module "fb" already built-in
[ 24.293] (==) NVIDIA(G0): Depth 24, (==) framebuffer bpp 32
[ 24.293] (==) NVIDIA(G0): RGB weight 888
[ 24.293] (==) NVIDIA(G0): Default visual is TrueColor
[ 24.293] (==) NVIDIA(G0): Using gamma correction (1.0, 1.0, 1.0)
[ 24.294] (II) Applying OutputClass "nvidia" options to /dev/dri/card1
[ 24.294] (**) NVIDIA(G0): Option "AllowEmptyInitialConfiguration"
[ 24.294] (**) NVIDIA(G0): Enabling 2D acceleration
[ 24.294] (II) Loading sub module "glxserver_nvidia"
[ 24.294] (II) LoadModule: "glxserver_nvidia"
[ 24.294] (II) Loading /usr/lib/nvidia/xorg/libglxserver_nvidia.so
[ 24.338] (II) Module glxserver_nvidia: vendor="NVIDIA Corporation"
[ 24.338] compiled for 1.6.99.901, module version = 1.0.0
[ 24.338] Module class: X.Org Server Extension
[ 24.338] (II) NVIDIA GLX Module 570.124.04 Tue Feb 25 03:45:00 UTC 2025
[ 24.339] (II) NVIDIA: The X server supports PRIME Render Offload.
[ 24.342] (--) NVIDIA(0): Valid display device(s) on GPU-0 at PCI:1:0:0
[ 24.342] (--) NVIDIA(0): DFP-0
[ 24.342] (--) NVIDIA(0): DFP-1
[ 24.342] (--) NVIDIA(0): DFP-2 (boot)
[ 24.342] (--) NVIDIA(0): DFP-3
[ 24.349] (II) NVIDIA(G0): NVIDIA GPU NVIDIA GeForce RTX 4060 Laptop GPU (AD107-B) at
[ 24.349] (II) NVIDIA(G0): PCI:1:0:0 (GPU-0)
[ 24.349] (--) NVIDIA(G0): Memory: 8384512 kBytes
[ 24.349] (--) NVIDIA(G0): VideoBIOS: 95.07.40.00.69
[ 24.349] (II) NVIDIA(G0): Detected PCI Express Link width: 8X
[ 24.388] (--) NVIDIA(GPU-0): DFP-0: disconnected
[ 24.388] (--) NVIDIA(GPU-0): DFP-0: Internal DisplayPort
[ 24.388] (--) NVIDIA(GPU-0): DFP-0: 2670.0 MHz maximum pixel clock
[ 24.388] (--) NVIDIA(GPU-0):
[ 24.388] (--) NVIDIA(GPU-0): DFP-1: disconnected
[ 24.388] (--) NVIDIA(GPU-0): DFP-1: Internal TMDS
[ 24.388] (--) NVIDIA(GPU-0): DFP-1: 165.0 MHz maximum pixel clock
[ 24.388] (--) NVIDIA(GPU-0):
[ 24.433] (--) NVIDIA(GPU-0): Samsung C24F390 (DFP-2): connected
[ 24.433] (--) NVIDIA(GPU-0): Samsung C24F390 (DFP-2): Internal TMDS
[ 24.433] (--) NVIDIA(GPU-0): Samsung C24F390 (DFP-2): 600.0 MHz maximum pixel clock
[ 24.433] (--) NVIDIA(GPU-0):
[ 24.433] (--) NVIDIA(GPU-0): DFP-3: disconnected
[ 24.433] (--) NVIDIA(GPU-0): DFP-3: Internal DisplayPort
[ 24.433] (--) NVIDIA(GPU-0): DFP-3: 2670.0 MHz maximum pixel clock
[ 24.433] (--) NVIDIA(GPU-0):
[ 24.458] (II) NVIDIA(G0): Validated MetaModes:
[ 24.458] (II) NVIDIA(G0): "NULL"
[ 24.458] (II) NVIDIA(G0): Virtual screen size determined to be 640 x 480
[ 24.591] (WW) NVIDIA(G0): Cannot find size of first mode for Samsung C24F390 (DFP-2);
[ 24.591] (WW) NVIDIA(G0): cannot compute DPI from Samsung C24F390 (DFP-2)'s EDID.
[ 24.591] (==) NVIDIA(G0): DPI set to (75, 75); computed from built-in default
[ 24.613] (==) modeset(0): Backing store enabled
[ 24.613] (==) modeset(0): Silken mouse enabled
[ 24.647] (II) modeset(0): Initializing kms color map for depth 24, 8 bpc.
[ 24.647] (==) modeset(0): DPMS enabled
[ 24.647] (II) modeset(0): [DRI2] Setup complete
[ 24.647] (II) modeset(0): [DRI2] DRI driver: iris
[ 24.647] (II) modeset(0): [DRI2] VDPAU driver: va_gl
[ 24.648] (II) NVIDIA: Reserving 24576.00 MB of virtual memory for indirect memory
[ 24.648] (II) NVIDIA: access.
[ 24.654] (II) NVIDIA(G0): ACPI: failed to connect to the ACPI event daemon; the daemon
[ 24.654] (II) NVIDIA(G0): may not be running or the "AcpidSocketPath" X
[ 24.654] (II) NVIDIA(G0): configuration option may not be set correctly. When the
[ 24.654] (II) NVIDIA(G0): ACPI event daemon is available, the NVIDIA X driver will
[ 24.654] (II) NVIDIA(G0): try to use it to receive ACPI event notifications. For
[ 24.654] (II) NVIDIA(G0): details, please see the "ConnectToAcpid" and
[ 24.654] (II) NVIDIA(G0): "AcpidSocketPath" X configuration options in Appendix B: X
[ 24.654] (II) NVIDIA(G0): Config Options in the README.
[ 24.668] (II) NVIDIA(G0): Setting mode "NULL"
[ 24.683] (==) NVIDIA(G0): Disabling shared memory pixmaps
[ 24.683] (==) NVIDIA(G0): Backing store enabled
[ 24.683] (==) NVIDIA(G0): Silken mouse enabled
[ 24.683] (==) NVIDIA(G0): DPMS enabled
[ 24.684] (II) Loading sub module "dri2"
[ 24.684] (II) LoadModule: "dri2"
[ 24.684] (II) Module "dri2" already built-in
[ 24.684] (II) NVIDIA(G0): [DRI2] Setup complete
[ 24.684] (II) NVIDIA(G0): [DRI2] VDPAU driver: nvidia
[ 24.684] (II) Initializing extension Generic Event Extension
[ 24.684] (II) Initializing extension SHAPE
[ 24.684] (II) Initializing extension MIT-SHM
[ 24.684] (II) Initializing extension XInputExtension
[ 24.684] (II) Initializing extension XTEST
[ 24.684] (II) Initializing extension BIG-REQUESTS
[ 24.684] (II) Initializing extension SYNC
[ 24.684] (II) Initializing extension XKEYBOARD
[ 24.685] (II) Initializing extension XC-MISC
[ 24.685] (II) Initializing extension SECURITY
[ 24.685] (II) Initializing extension XFIXES
[ 24.685] (II) Initializing extension RENDER
[ 24.685] (II) Initializing extension RANDR
[ 24.685] (II) Initializing extension COMPOSITE
[ 24.685] (II) Initializing extension DAMAGE
[ 24.685] (II) Initializing extension MIT-SCREEN-SAVER
[ 24.685] (II) Initializing extension DOUBLE-BUFFER
[ 24.685] (II) Initializing extension RECORD
[ 24.685] (II) Initializing extension DPMS
[ 24.685] (II) Initializing extension Present
[ 24.685] (II) Initializing extension DRI3
[ 24.685] (II) Initializing extension X-Resource
[ 24.685] (II) Initializing extension XVideo
[ 24.685] (II) Initializing extension XVideo-MotionCompensation
[ 24.685] (II) Initializing extension GLX
[ 24.685] (II) Initializing extension GLX
[ 24.686] (II) Indirect GLX disabled.
[ 24.691] (II) AIGLX: Loaded and initialized iris
[ 24.691] (II) GLX: Initialized DRI2 GL provider for screen 0
[ 24.691] (II) Initializing extension XFree86-VidModeExtension
[ 24.691] (II) Initializing extension XFree86-DGA
[ 24.691] (II) Initializing extension XFree86-DRI
[ 24.691] (II) Initializing extension DRI2
[ 24.692] (II) Initializing extension NV-GLX
[ 24.692] (II) Initializing extension NV-CONTROL
[ 24.692] (II) modeset(0): Damage tracking initialized
[ 24.692] (II) modeset(0): Setting screen physical size to 508 x 285
[ 24.746] (II) config/udev: Adding input device Power Button (/dev/input/event2)
[ 24.746] (**) Power Button: Applying InputClass "libinput keyboard catchall"
[ 24.746] (**) Power Button: Applying InputClass "system-keyboard"
[ 24.746] (II) LoadModule: "libinput"
[ 24.746] (II) Loading /usr/lib/xorg/modules/input/libinput_drv.so
[ 24.749] (II) Module libinput: vendor="X.Org Foundation"
[ 24.749] compiled for 1.21.1.13, module version = 1.5.0
[ 24.749] Module class: X.Org XInput Driver
[ 24.749] ABI class: X.Org XInput driver, version 24.4
[ 24.749] (II) Using input driver 'libinput' for 'Power Button'
[ 24.749] (**) Power Button: always reports core events
[ 24.749] (**) Option "Device" "/dev/input/event2"
[ 24.752] (II) event2 - Power Button: is tagged by udev as: Keyboard
[ 24.752] (II) event2 - Power Button: device is a keyboard
[ 24.752] (II) event2 - Power Button: device removed
[ 24.803] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/LNXPWRBN:00/input/input2/event2"
[ 24.803] (II) XINPUT: Adding extended input device "Power Button" (type: KEYBOARD, id 6)
[ 24.803] (**) Option "xkb_model" "pc105+inet"
[ 24.803] (**) Option "xkb_layout" "us"
[ 24.803] (**) Option "xkb_options" "terminate:ctrl_alt_bksp"
[ 24.827] (II) event2 - Power Button: is tagged by udev as: Keyboard
[ 24.827] (II) event2 - Power Button: device is a keyboard
[ 24.827] (II) config/udev: Adding input device Video Bus (/dev/input/event5)
[ 24.827] (**) Video Bus: Applying InputClass "libinput keyboard catchall"
[ 24.827] (**) Video Bus: Applying InputClass "system-keyboard"
[ 24.827] (II) Using input driver 'libinput' for 'Video Bus'
[ 24.827] (**) Video Bus: always reports core events
[ 24.827] (**) Option "Device" "/dev/input/event5"
[ 24.827] (II) event5 - Video Bus: is tagged by udev as: Keyboard
[ 24.827] (II) event5 - Video Bus: device is a keyboard
[ 24.827] (II) event5 - Video Bus: device removed
[ 24.893] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/LNXVIDEO:01/input/input5/event5"
[ 24.893] (II) XINPUT: Adding extended input device "Video Bus" (type: KEYBOARD, id 7)
[ 24.893] (**) Option "xkb_model" "pc105+inet"
[ 24.893] (**) Option "xkb_layout" "us"
[ 24.893] (**) Option "xkb_options" "terminate:ctrl_alt_bksp"
[ 24.895] (II) event5 - Video Bus: is tagged by udev as: Keyboard
[ 24.895] (II) event5 - Video Bus: device is a keyboard
[ 24.896] (II) config/udev: Adding input device Video Bus (/dev/input/event4)
[ 24.896] (**) Video Bus: Applying InputClass "libinput keyboard catchall"
[ 24.896] (**) Video Bus: Applying InputClass "system-keyboard"
[ 24.896] (II) Using input driver 'libinput' for 'Video Bus'
[ 24.896] (**) Video Bus: always reports core events
[ 24.896] (**) Option "Device" "/dev/input/event4"
[ 24.897] (II) event4 - Video Bus: is tagged by udev as: Keyboard
[ 24.897] (II) event4 - Video Bus: device is a keyboard
[ 24.897] (II) event4 - Video Bus: device removed
[ 24.950] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:03/LNXVIDEO:00/input/input4/event4"
[ 24.950] (II) XINPUT: Adding extended input device "Video Bus" (type: KEYBOARD, id 8)
[ 24.950] (**) Option "xkb_model" "pc105+inet"
[ 24.950] (**) Option "xkb_layout" "us"
[ 24.950] (**) Option "xkb_options" "terminate:ctrl_alt_bksp"
[ 24.951] (II) event4 - Video Bus: is tagged by udev as: Keyboard
[ 24.951] (II) event4 - Video Bus: device is a keyboard
[ 24.952] (II) config/udev: Adding input device Lid Switch (/dev/input/event0)
[ 24.952] (II) No input driver specified, ignoring this device.
[ 24.952] (II) This device may have been added with another device file.
[ 24.952] (II) config/udev: Adding input device Power Button (/dev/input/event1)
[ 24.952] (**) Power Button: Applying InputClass "libinput keyboard catchall"
[ 24.952] (**) Power Button: Applying InputClass "system-keyboard"
[ 24.952] (II) Using input driver 'libinput' for 'Power Button'
[ 24.952] (**) Power Button: always reports core events
[ 24.952] (**) Option "Device" "/dev/input/event1"
[ 24.953] (II) event1 - Power Button: is tagged by udev as: Keyboard
[ 24.953] (II) event1 - Power Button: device is a keyboard
[ 24.953] (II) event1 - Power Button: device removed
[ 24.990] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0C:00/input/input1/event1"
[ 24.990] (II) XINPUT: Adding extended input device "Power Button" (type: KEYBOARD, id 9)
[ 24.990] (**) Option "xkb_model" "pc105+inet"
[ 24.990] (**) Option "xkb_layout" "us"
[ 24.990] (**) Option "xkb_options" "terminate:ctrl_alt_bksp"
[ 24.991] (II) event1 - Power Button: is tagged by udev as: Keyboard
[ 24.991] (II) event1 - Power Button: device is a keyboard
[ 24.992] (II) config/udev: Adding input device HDA NVidia HDMI/DP,pcm=3 (/dev/input/event18)
[ 24.992] (II) No input driver specified, ignoring this device.
[ 24.992] (II) This device may have been added with another device file.
[ 24.993] (II) config/udev: Adding input device HDA NVidia HDMI/DP,pcm=7 (/dev/input/event19)
[ 24.993] (II) No input driver specified, ignoring this device.
[ 24.993] (II) This device may have been added with another device file.
[ 24.993] (II) config/udev: Adding input device HDA NVidia HDMI/DP,pcm=8 (/dev/input/event20)
[ 24.993] (II) No input driver specified, ignoring this device.
[ 24.993] (II) This device may have been added with another device file.
[ 24.993] (II) config/udev: Adding input device HDA NVidia HDMI/DP,pcm=9 (/dev/input/event21)
[ 24.993] (II) No input driver specified, ignoring this device.
[ 24.993] (II) This device may have been added with another device file.
[ 24.995] (II) config/udev: Adding input device Logitech G903 LS (/dev/input/event7)
[ 24.995] (**) Logitech G903 LS: Applying InputClass "libinput pointer catchall"
[ 24.995] (**) Logitech G903 LS: Applying InputClass "libinput keyboard catchall"
[ 24.995] (**) Logitech G903 LS: Applying InputClass "system-keyboard"
[ 24.995] (II) Using input driver 'libinput' for 'Logitech G903 LS'
[ 24.995] (**) Logitech G903 LS: always reports core events
[ 24.995] (**) Option "Device" "/dev/input/event7"
[ 24.996] (II) event7 - Logitech G903 LS: is tagged by udev as: Keyboard Mouse
[ 24.996] (II) event7 - Logitech G903 LS: device is a pointer
[ 24.996] (II) event7 - Logitech G903 LS: device is a keyboard
[ 24.997] (II) event7 - Logitech G903 LS: device removed
[ 25.040] (II) libinput: Logitech G903 LS: Step value 0 was provided, libinput Fallback acceleration function is used.
[ 25.040] (II) libinput: Logitech G903 LS: Step value 0 was provided, libinput Fallback acceleration function is used.
[ 25.040] (II) libinput: Logitech G903 LS: Step value 0 was provided, libinput Fallback acceleration function is used.
[ 25.040] (II) libinput: Logitech G903 LS: needs a virtual subdevice
[ 25.040] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:14.0/usb1/1-4/1-4.2/1-4.2.3/1-4.2.3:1.2/0003:046D:C539.0005/0003:046D:4087.0009/input/input23/event7"
[ 25.040] (II) XINPUT: Adding extended input device "Logitech G903 LS" (type: MOUSE, id 10)
[ 25.040] (**) Option "AccelerationScheme" "none"
[ 25.040] (**) Logitech G903 LS: (accel) selected scheme none/0
[ 25.040] (**) Logitech G903 LS: (accel) acceleration factor: 2.000
[ 25.040] (**) Logitech G903 LS: (accel) acceleration threshold: 4
[ 25.043] (II) event7 - Logitech G903 LS: is tagged by udev as: Keyboard Mouse
[ 25.043] (II) event7 - Logitech G903 LS: device is a pointer
[ 25.043] (II) event7 - Logitech G903 LS: device is a keyboard
[ 25.044] (II) config/udev: Adding input device Logitech G903 LS (/dev/input/mouse1)
[ 25.044] (**) Logitech G903 LS: Applying InputClass "system-keyboard"
[ 25.044] (II) No input driver specified, ignoring this device.
[ 25.044] (II) This device may have been added with another device file.
[ 25.045] (II) config/udev: Adding input device Barcode Reader (/dev/input/event13)
[ 25.045] (**) Barcode Reader : Applying InputClass "libinput keyboard catchall"
[ 25.045] (**) Barcode Reader : Applying InputClass "system-keyboard"
[ 25.045] (II) Using input driver 'libinput' for 'Barcode Reader '
[ 25.045] (**) Barcode Reader : always reports core events
[ 25.045] (**) Option "Device" "/dev/input/event13"
[ 25.046] (II) event13 - Barcode Reader : is tagged by udev as: Keyboard
[ 25.046] (II) event13 - Barcode Reader : device is a keyboard
[ 25.047] (II) event13 - Barcode Reader : device removed
[ 25.086] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:14.0/usb1/1-4/1-4.2/1-4.2.4/1-4.2.4:1.0/0003:13BA:0018.0007/input/input14/event13"
[ 25.086] (II) XINPUT: Adding extended input device "Barcode Reader " (type: KEYBOARD, id 11)
[ 25.087] (**) Option "xkb_model" "pc105+inet"
[ 25.087] (**) Option "xkb_layout" "us"
[ 25.087] (**) Option "xkb_options" "terminate:ctrl_alt_bksp"
[ 25.089] (II) event13 - Barcode Reader : is tagged by udev as: Keyboard
[ 25.089] (II) event13 - Barcode Reader : device is a keyboard
[ 25.090] (II) config/udev: Adding input device Barcode Reader Mouse (/dev/input/event14)
[ 25.090] (**) Barcode Reader Mouse: Applying InputClass "libinput pointer catchall"
[ 25.090] (II) Using input driver 'libinput' for 'Barcode Reader Mouse'
[ 25.090] (**) Barcode Reader Mouse: always reports core events
[ 25.090] (**) Option "Device" "/dev/input/event14"
[ 25.092] (II) event14 - Barcode Reader Mouse: is tagged by udev as: Mouse
[ 25.092] (II) event14 - Barcode Reader Mouse: device is a pointer
[ 25.092] (II) event14 - Barcode Reader Mouse: device removed
[ 25.160] (II) libinput: Barcode Reader Mouse: Step value 0 was provided, libinput Fallback acceleration function is used.
[ 25.160] (II) libinput: Barcode Reader Mouse: Step value 0 was provided, libinput Fallback acceleration function is used.
[ 25.160] (II) libinput: Barcode Reader Mouse: Step value 0 was provided, libinput Fallback acceleration function is used.
[ 25.160] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:14.0/usb1/1-4/1-4.2/1-4.2.4/1-4.2.4:1.1/0003:13BA:0018.0008/input/input15/event14"
[ 25.160] (II) XINPUT: Adding extended input device "Barcode Reader Mouse" (type: MOUSE, id 12)
[ 25.160] (**) Option "AccelerationScheme" "none"
[ 25.160] (**) Barcode Reader Mouse: (accel) selected scheme none/0
[ 25.160] (**) Barcode Reader Mouse: (accel) acceleration factor: 2.000
[ 25.160] (**) Barcode Reader Mouse: (accel) acceleration threshold: 4
[ 25.162] (II) event14 - Barcode Reader Mouse: is tagged by udev as: Mouse
[ 25.163] (II) event14 - Barcode Reader Mouse: device is a pointer
[ 25.164] (II) config/udev: Adding input device Barcode Reader Mouse (/dev/input/mouse0)
[ 25.164] (II) No input driver specified, ignoring this device.
[ 25.164] (II) This device may have been added with another device file.
[ 25.164] (II) config/udev: Adding input device Barcode Reader System Control (/dev/input/event15)
[ 25.164] (**) Barcode Reader System Control: Applying InputClass "libinput keyboard catchall"
[ 25.165] (**) Barcode Reader System Control: Applying InputClass "system-keyboard"
[ 25.165] (II) Using input driver 'libinput' for 'Barcode Reader System Control'
[ 25.165] (**) Barcode Reader System Control: always reports core events
[ 25.165] (**) Option "Device" "/dev/input/event15"
[ 25.166] (II) event15 - Barcode Reader System Control: is tagged by udev as: Keyboard
[ 25.166] (II) event15 - Barcode Reader System Control: device is a keyboard
[ 25.166] (II) event15 - Barcode Reader System Control: device removed
[ 25.206] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:14.0/usb1/1-4/1-4.2/1-4.2.4/1-4.2.4:1.1/0003:13BA:0018.0008/input/input16/event15"
[ 25.206] (II) XINPUT: Adding extended input device "Barcode Reader System Control" (type: KEYBOARD, id 13)
[ 25.206] (**) Option "xkb_model" "pc105+inet"
[ 25.207] (**) Option "xkb_layout" "us"
[ 25.207] (**) Option "xkb_options" "terminate:ctrl_alt_bksp"
[ 25.209] (II) event15 - Barcode Reader System Control: is tagged by udev as: Keyboard
[ 25.209] (II) event15 - Barcode Reader System Control: device is a keyboard
[ 25.210] (II) config/udev: Adding input device Barcode Reader Consumer Control (/dev/input/event16)
[ 25.210] (**) Barcode Reader Consumer Control: Applying InputClass "libinput keyboard catchall"
[ 25.210] (**) Barcode Reader Consumer Control: Applying InputClass "system-keyboard"
[ 25.210] (II) Using input driver 'libinput' for 'Barcode Reader Consumer Control'
[ 25.210] (**) Barcode Reader Consumer Control: always reports core events
[ 25.210] (**) Option "Device" "/dev/input/event16"
[ 25.212] (II) event16 - Barcode Reader Consumer Control: is tagged by udev as: Keyboard
[ 25.212] (II) event16 - Barcode Reader Consumer Control: device is a keyboard
[ 25.212] (II) event16 - Barcode Reader Consumer Control: device removed
[ 25.253] (II) libinput: Barcode Reader Consumer Control: needs a virtual subdevice
[ 25.253] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:14.0/usb1/1-4/1-4.2/1-4.2.4/1-4.2.4:1.1/0003:13BA:0018.0008/input/input17/event16"
[ 25.253] (II) XINPUT: Adding extended input device "Barcode Reader Consumer Control" (type: MOUSE, id 14)
[ 25.253] (**) Option "AccelerationScheme" "none"
[ 25.253] (**) Barcode Reader Consumer Control: (accel) selected scheme none/0
[ 25.253] (**) Barcode Reader Consumer Control: (accel) acceleration factor: 2.000
[ 25.253] (**) Barcode Reader Consumer Control: (accel) acceleration threshold: 4
[ 25.256] (II) event16 - Barcode Reader Consumer Control: is tagged by udev as: Keyboard
[ 25.256] (II) event16 - Barcode Reader Consumer Control: device is a keyboard
[ 25.257] (II) config/udev: Adding input device ITE Tech. Inc. ITE Device(8295) Keyboard (/dev/input/event6)
[ 25.257] (**) ITE Tech. Inc. ITE Device(8295) Keyboard: Applying InputClass "libinput keyboard catchall"
[ 25.257] (**) ITE Tech. Inc. ITE Device(8295) Keyboard: Applying InputClass "system-keyboard"
[ 25.257] (II) Using input driver 'libinput' for 'ITE Tech. Inc. ITE Device(8295) Keyboard'
[ 25.257] (**) ITE Tech. Inc. ITE Device(8295) Keyboard: always reports core events
[ 25.257] (**) Option "Device" "/dev/input/event6"
[ 25.258] (II) event6 - ITE Tech. Inc. ITE Device(8295) Keyboard: is tagged by udev as: Keyboard
[ 25.258] (II) event6 - ITE Tech. Inc. ITE Device(8295) Keyboard: device is a keyboard
[ 25.259] (II) event6 - ITE Tech. Inc. ITE Device(8295) Keyboard: device removed
[ 25.313] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:14.0/usb1/1-7/1-7:1.0/0003:048D:C993.0001/input/input6/event6"
[ 25.313] (II) XINPUT: Adding extended input device "ITE Tech. Inc. ITE Device(8295) Keyboard" (type: KEYBOARD, id 15)
[ 25.313] (**) Option "xkb_model" "pc105+inet"
[ 25.313] (**) Option "xkb_layout" "us"
[ 25.313] (**) Option "xkb_options" "terminate:ctrl_alt_bksp"
[ 25.316] (II) event6 - ITE Tech. Inc. ITE Device(8295) Keyboard: is tagged by udev as: Keyboard
[ 25.316] (II) event6 - ITE Tech. Inc. ITE Device(8295) Keyboard: device is a keyboard
[ 25.317] (II) config/udev: Adding input device ITE Tech. Inc. ITE Device(8176) Keyboard (/dev/input/event11)
[ 25.317] (**) ITE Tech. Inc. ITE Device(8176) Keyboard: Applying InputClass "libinput keyboard catchall"
[ 25.317] (**) ITE Tech. Inc. ITE Device(8176) Keyboard: Applying InputClass "system-keyboard"
[ 25.317] (II) Using input driver 'libinput' for 'ITE Tech. Inc. ITE Device(8176) Keyboard'
[ 25.317] (**) ITE Tech. Inc. ITE Device(8176) Keyboard: always reports core events
[ 25.317] (**) Option "Device" "/dev/input/event11"
[ 25.318] (II) event11 - ITE Tech. Inc. ITE Device(8176) Keyboard: is tagged by udev as: Keyboard
[ 25.318] (II) event11 - ITE Tech. Inc. ITE Device(8176) Keyboard: device is a keyboard
[ 25.319] (II) event11 - ITE Tech. Inc. ITE Device(8176) Keyboard: device removed
[ 25.360] (II) libinput: ITE Tech. Inc. ITE Device(8176) Keyboard: needs a virtual subdevice
[ 25.360] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:14.0/usb1/1-8/1-8:1.0/0003:048D:C996.0006/input/input12/event11"
[ 25.360] (II) XINPUT: Adding extended input device "ITE Tech. Inc. ITE Device(8176) Keyboard" (type: MOUSE, id 16)
[ 25.360] (**) Option "AccelerationScheme" "none"
[ 25.360] (**) ITE Tech. Inc. ITE Device(8176) Keyboard: (accel) selected scheme none/0
[ 25.360] (**) ITE Tech. Inc. ITE Device(8176) Keyboard: (accel) acceleration factor: 2.000
[ 25.360] (**) ITE Tech. Inc. ITE Device(8176) Keyboard: (accel) acceleration threshold: 4
[ 25.362] (II) event11 - ITE Tech. Inc. ITE Device(8176) Keyboard: is tagged by udev as: Keyboard
[ 25.362] (II) event11 - ITE Tech. Inc. ITE Device(8176) Keyboard: device is a keyboard
[ 25.363] (II) config/udev: Adding input device ITE Tech. Inc. ITE Device(8176) Wireless Radio Control (/dev/input/event12)
[ 25.363] (**) ITE Tech. Inc. ITE Device(8176) Wireless Radio Control: Applying InputClass "libinput keyboard catchall"
[ 25.363] (**) ITE Tech. Inc. ITE Device(8176) Wireless Radio Control: Applying InputClass "system-keyboard"
[ 25.363] (II) Using input driver 'libinput' for 'ITE Tech. Inc. ITE Device(8176) Wireless Radio Control'
[ 25.363] (**) ITE Tech. Inc. ITE Device(8176) Wireless Radio Control: always reports core events
[ 25.363] (**) Option "Device" "/dev/input/event12"
[ 25.364] (II) event12 - ITE Tech. Inc. ITE Device(8176) Wireless Radio Control: is tagged by udev as: Keyboard
[ 25.365] (II) event12 - ITE Tech. Inc. ITE Device(8176) Wireless Radio Control: device is a keyboard
[ 25.365] (II) event12 - ITE Tech. Inc. ITE Device(8176) Wireless Radio Control: device removed
[ 25.433] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:14.0/usb1/1-8/1-8:1.0/0003:048D:C996.0006/input/input13/event12"
[ 25.433] (II) XINPUT: Adding extended input device "ITE Tech. Inc. ITE Device(8176) Wireless Radio Control" (type: KEYBOARD, id 17)
[ 25.433] (**) Option "xkb_model" "pc105+inet"
[ 25.433] (**) Option "xkb_layout" "us"
[ 25.433] (**) Option "xkb_options" "terminate:ctrl_alt_bksp"
[ 25.435] (II) event12 - ITE Tech. Inc. ITE Device(8176) Wireless Radio Control: is tagged by udev as: Keyboard
[ 25.435] (II) event12 - ITE Tech. Inc. ITE Device(8176) Wireless Radio Control: device is a keyboard
[ 25.436] (II) config/udev: Adding input device GXTP5100:00 27C6:01E0 Mouse (/dev/input/event10)
[ 25.436] (**) GXTP5100:00 27C6:01E0 Mouse: Applying InputClass "libinput pointer catchall"
[ 25.436] (II) Using input driver 'libinput' for 'GXTP5100:00 27C6:01E0 Mouse'
[ 25.436] (**) GXTP5100:00 27C6:01E0 Mouse: always reports core events
[ 25.436] (**) Option "Device" "/dev/input/event10"
[ 25.438] (II) event10 - GXTP5100:00 27C6:01E0 Mouse: is tagged by udev as: Mouse Pointingstick
[ 25.438] (II) event10 - GXTP5100:00 27C6:01E0 Mouse: device is a pointer
[ 25.440] (II) event10 - GXTP5100:00 27C6:01E0 Mouse: device removed
[ 25.506] (II) libinput: GXTP5100:00 27C6:01E0 Mouse: Step value 0 was provided, libinput Fallback acceleration function is used.
[ 25.506] (II) libinput: GXTP5100:00 27C6:01E0 Mouse: Step value 0 was provided, libinput Fallback acceleration function is used.
[ 25.506] (II) libinput: GXTP5100:00 27C6:01E0 Mouse: Step value 0 was provided, libinput Fallback acceleration function is used.
[ 25.507] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:15.0/i2c_designware.0/i2c-13/i2c-GXTP5100:00/0018:27C6:01E0.000A/input/input33/event10"
[ 25.507] (II) XINPUT: Adding extended input device "GXTP5100:00 27C6:01E0 Mouse" (type: MOUSE, id 18)
[ 25.507] (**) Option "AccelerationScheme" "none"
[ 25.507] (**) GXTP5100:00 27C6:01E0 Mouse: (accel) selected scheme none/0
[ 25.507] (**) GXTP5100:00 27C6:01E0 Mouse: (accel) acceleration factor: 2.000
[ 25.507] (**) GXTP5100:00 27C6:01E0 Mouse: (accel) acceleration threshold: 4
[ 25.509] (II) event10 - GXTP5100:00 27C6:01E0 Mouse: is tagged by udev as: Mouse Pointingstick
[ 25.509] (II) event10 - GXTP5100:00 27C6:01E0 Mouse: device is a pointer
[ 25.511] (II) config/udev: Adding input device GXTP5100:00 27C6:01E0 Mouse (/dev/input/mouse2)
[ 25.511] (II) No input driver specified, ignoring this device.
[ 25.511] (II) This device may have been added with another device file.
[ 25.512] (II) config/udev: Adding input device GXTP5100:00 27C6:01E0 Touchpad (/dev/input/event17)
[ 25.512] (**) GXTP5100:00 27C6:01E0 Touchpad: Applying InputClass "libinput touchpad catchall"
[ 25.512] (II) Using input driver 'libinput' for 'GXTP5100:00 27C6:01E0 Touchpad'
[ 25.512] (**) GXTP5100:00 27C6:01E0 Touchpad: always reports core events
[ 25.512] (**) Option "Device" "/dev/input/event17"
[ 25.513] (II) event17 - GXTP5100:00 27C6:01E0 Touchpad: is tagged by udev as: Touchpad
[ 25.515] (II) event17 - GXTP5100:00 27C6:01E0 Touchpad: device is a touchpad
[ 25.515] (II) event17 - GXTP5100:00 27C6:01E0 Touchpad: device removed
[ 25.580] (II) libinput: GXTP5100:00 27C6:01E0 Touchpad: Step value 0 was provided, libinput Fallback acceleration function is used.
[ 25.580] (II) libinput: GXTP5100:00 27C6:01E0 Touchpad: Step value 0 was provided, libinput Fallback acceleration function is used.
[ 25.580] (II) libinput: GXTP5100:00 27C6:01E0 Touchpad: Step value 0 was provided, libinput Fallback acceleration function is used.
[ 25.581] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:15.0/i2c_designware.0/i2c-13/i2c-GXTP5100:00/0018:27C6:01E0.000A/input/input34/event17"
[ 25.581] (II) XINPUT: Adding extended input device "GXTP5100:00 27C6:01E0 Touchpad" (type: TOUCHPAD, id 19)
[ 25.583] (**) Option "AccelerationScheme" "none"
[ 25.583] (**) GXTP5100:00 27C6:01E0 Touchpad: (accel) selected scheme none/0
[ 25.583] (**) GXTP5100:00 27C6:01E0 Touchpad: (accel) acceleration factor: 2.000
[ 25.583] (**) GXTP5100:00 27C6:01E0 Touchpad: (accel) acceleration threshold: 4
[ 25.584] (II) event17 - GXTP5100:00 27C6:01E0 Touchpad: is tagged by udev as: Touchpad
[ 25.586] (II) event17 - GXTP5100:00 27C6:01E0 Touchpad: device is a touchpad
[ 25.587] (II) config/udev: Adding input device GXTP5100:00 27C6:01E0 Touchpad (/dev/input/mouse3)
[ 25.587] (II) No input driver specified, ignoring this device.
[ 25.587] (II) This device may have been added with another device file.
[ 25.587] (II) config/udev: Adding input device Ideapad extra buttons (/dev/input/event9)
[ 25.587] (**) Ideapad extra buttons: Applying InputClass "libinput keyboard catchall"
[ 25.587] (**) Ideapad extra buttons: Applying InputClass "system-keyboard"
[ 25.587] (II) Using input driver 'libinput' for 'Ideapad extra buttons'
[ 25.587] (**) Ideapad extra buttons: always reports core events
[ 25.587] (**) Option "Device" "/dev/input/event9"
[ 25.587] (II) event9 - Ideapad extra buttons: is tagged by udev as: Keyboard
[ 25.587] (II) event9 - Ideapad extra buttons: device is a keyboard
[ 25.587] (II) event9 - Ideapad extra buttons: device removed
[ 25.653] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:1f.0/PNP0C09:00/VPC2004:00/input/input25/event9"
[ 25.653] (II) XINPUT: Adding extended input device "Ideapad extra buttons" (type: KEYBOARD, id 20)
[ 25.653] (**) Option "xkb_model" "pc105+inet"
[ 25.653] (**) Option "xkb_layout" "us"
[ 25.653] (**) Option "xkb_options" "terminate:ctrl_alt_bksp"
[ 25.655] (II) event9 - Ideapad extra buttons: is tagged by udev as: Keyboard
[ 25.655] (II) event9 - Ideapad extra buttons: device is a keyboard
[ 25.655] (II) config/udev: Adding input device HDA Intel PCH Mic (/dev/input/event22)
[ 25.655] (II) No input driver specified, ignoring this device.
[ 25.655] (II) This device may have been added with another device file.
[ 25.656] (II) config/udev: Adding input device HDA Intel PCH Headphone (/dev/input/event23)
[ 25.656] (II) No input driver specified, ignoring this device.
[ 25.656] (II) This device may have been added with another device file.
[ 25.656] (II) config/udev: Adding input device HDA Intel PCH HDMI/DP,pcm=3 (/dev/input/event24)
[ 25.656] (II) No input driver specified, ignoring this device.
[ 25.656] (II) This device may have been added with another device file.
[ 25.657] (II) config/udev: Adding input device HDA Intel PCH HDMI/DP,pcm=7 (/dev/input/event25)
[ 25.657] (II) No input driver specified, ignoring this device.
[ 25.657] (II) This device may have been added with another device file.
[ 25.657] (II) config/udev: Adding input device HDA Intel PCH HDMI/DP,pcm=8 (/dev/input/event26)
[ 25.657] (II) No input driver specified, ignoring this device.
[ 25.657] (II) This device may have been added with another device file.
[ 25.657] (II) config/udev: Adding input device HDA Intel PCH HDMI/DP,pcm=9 (/dev/input/event27)
[ 25.657] (II) No input driver specified, ignoring this device.
[ 25.657] (II) This device may have been added with another device file.
[ 25.658] (II) config/udev: Adding input device AT Translated Set 2 keyboard (/dev/input/event3)
[ 25.658] (**) AT Translated Set 2 keyboard: Applying InputClass "libinput keyboard catchall"
[ 25.658] (**) AT Translated Set 2 keyboard: Applying InputClass "system-keyboard"
[ 25.658] (II) Using input driver 'libinput' for 'AT Translated Set 2 keyboard'
[ 25.658] (**) AT Translated Set 2 keyboard: always reports core events
[ 25.658] (**) Option "Device" "/dev/input/event3"
[ 25.659] (II) event3 - AT Translated Set 2 keyboard: is tagged by udev as: Keyboard
[ 25.659] (II) event3 - AT Translated Set 2 keyboard: device is a keyboard
[ 25.660] (II) event3 - AT Translated Set 2 keyboard: device removed
[ 25.700] (**) Option "config_info" "udev:/sys/devices/platform/i8042/serio0/input/input3/event3"
[ 25.700] (II) XINPUT: Adding extended input device "AT Translated Set 2 keyboard" (type: KEYBOARD, id 21)
[ 25.700] (**) Option "xkb_model" "pc105+inet"
[ 25.700] (**) Option "xkb_layout" "us"
[ 25.700] (**) Option "xkb_options" "terminate:ctrl_alt_bksp"
[ 25.701] (II) event3 - AT Translated Set 2 keyboard: is tagged by udev as: Keyboard
[ 25.701] (II) event3 - AT Translated Set 2 keyboard: device is a keyboard
[ 25.703] (II) config/udev: Adding input device PC Speaker (/dev/input/event8)
[ 25.703] (II) No input driver specified, ignoring this device.
[ 25.703] (II) This device may have been added with another device file.
[ 25.778] (**) Logitech G903 LS: Applying InputClass "libinput pointer catchall"
[ 25.778] (**) Logitech G903 LS: Applying InputClass "libinput keyboard catchall"
[ 25.778] (**) Logitech G903 LS: Applying InputClass "system-keyboard"
[ 25.778] (II) Using input driver 'libinput' for 'Logitech G903 LS'
[ 25.778] (**) Logitech G903 LS: always reports core events
[ 25.778] (**) Option "Device" "/dev/input/event7"
[ 25.778] (II) libinput: Logitech G903 LS: is a virtual subdevice
[ 25.778] (II) libinput: Logitech G903 LS: Step value 0 was provided, libinput Fallback acceleration function is used.
[ 25.778] (II) libinput: Logitech G903 LS: Step value 0 was provided, libinput Fallback acceleration function is used.
[ 25.778] (II) libinput: Logitech G903 LS: Step value 0 was provided, libinput Fallback acceleration function is used.
[ 25.778] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:14.0/usb1/1-4/1-4.2/1-4.2.3/1-4.2.3:1.2/0003:046D:C539.0005/0003:046D:4087.0009/input/input23/event7"
[ 25.778] (II) XINPUT: Adding extended input device "Logitech G903 LS" (type: KEYBOARD, id 22)
[ 25.778] (**) Option "xkb_model" "pc105+inet"
[ 25.778] (**) Option "xkb_layout" "us"
[ 25.778] (**) Option "xkb_options" "terminate:ctrl_alt_bksp"
[ 25.778] (**) Barcode Reader Consumer Control: Applying InputClass "libinput keyboard catchall"
[ 25.778] (**) Barcode Reader Consumer Control: Applying InputClass "system-keyboard"
[ 25.778] (II) Using input driver 'libinput' for 'Barcode Reader Consumer Control'
[ 25.778] (**) Barcode Reader Consumer Control: always reports core events
[ 25.778] (**) Option "Device" "/dev/input/event16"
[ 25.778] (II) libinput: Barcode Reader Consumer Control: is a virtual subdevice
[ 25.778] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:14.0/usb1/1-4/1-4.2/1-4.2.4/1-4.2.4:1.1/0003:13BA:0018.0008/input/input17/event16"
[ 25.778] (II) XINPUT: Adding extended input device "Barcode Reader Consumer Control" (type: KEYBOARD, id 23)
[ 25.778] (**) Option "xkb_model" "pc105+inet"
[ 25.778] (**) Option "xkb_layout" "us"
[ 25.778] (**) Option "xkb_options" "terminate:ctrl_alt_bksp"
[ 25.778] (**) ITE Tech. Inc. ITE Device(8176) Keyboard: Applying InputClass "libinput keyboard catchall"
[ 25.778] (**) ITE Tech. Inc. ITE Device(8176) Keyboard: Applying InputClass "system-keyboard"
[ 25.778] (II) Using input driver 'libinput' for 'ITE Tech. Inc. ITE Device(8176) Keyboard'
[ 25.778] (**) ITE Tech. Inc. ITE Device(8176) Keyboard: always reports core events
[ 25.778] (**) Option "Device" "/dev/input/event11"
[ 25.778] (II) libinput: ITE Tech. Inc. ITE Device(8176) Keyboard: is a virtual subdevice
[ 25.778] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:14.0/usb1/1-8/1-8:1.0/0003:048D:C996.0006/input/input12/event11"
[ 25.778] (II) XINPUT: Adding extended input device "ITE Tech. Inc. ITE Device(8176) Keyboard" (type: KEYBOARD, id 24)
[ 25.778] (**) Option "xkb_model" "pc105+inet"
[ 25.778] (**) Option "xkb_layout" "us"
[ 25.778] (**) Option "xkb_options" "terminate:ctrl_alt_bksp"
[ 29.394] (II) modeset(0): EDID vendor "AUO", prod id 32429
[ 29.394] (II) modeset(0): Using EDID range info for horizontal sync
[ 29.394] (II) modeset(0): Using EDID range info for vertical refresh
[ 29.394] (II) modeset(0): Printing DDC gathered Modelines:
[ 29.394] (II) modeset(0): Modeline "1920x1080"x0.0 142.46 1920 1968 2000 2103 1080 1090 1095 1129 -hsync -vsync (67.7 kHz eP)
[ 29.455] (II) modeset(0): EDID vendor "AUO", prod id 32429
[ 29.455] (II) modeset(0): Using hsync ranges from config file
[ 29.455] (II) modeset(0): Using vrefresh ranges from config file
[ 29.455] (II) modeset(0): Printing DDC gathered Modelines:
[ 29.455] (II) modeset(0): Modeline "1920x1080"x0.0 142.46 1920 1968 2000 2103 1080 1090 1095 1129 -hsync -vsync (67.7 kHz eP)
[ 29.513] (--) NVIDIA(GPU-0): DFP-0: disconnected
[ 29.513] (--) NVIDIA(GPU-0): DFP-0: Internal DisplayPort
[ 29.513] (--) NVIDIA(GPU-0): DFP-0: 2670.0 MHz maximum pixel clock
[ 29.513] (--) NVIDIA(GPU-0):
[ 29.514] (--) NVIDIA(GPU-0): DFP-1: disconnected
[ 29.514] (--) NVIDIA(GPU-0): DFP-1: Internal TMDS
[ 29.514] (--) NVIDIA(GPU-0): DFP-1: 165.0 MHz maximum pixel clock
[ 29.514] (--) NVIDIA(GPU-0):
[ 29.559] (--) NVIDIA(GPU-0): Samsung C24F390 (DFP-2): connected
[ 29.559] (--) NVIDIA(GPU-0): Samsung C24F390 (DFP-2): Internal TMDS
[ 29.559] (--) NVIDIA(GPU-0): Samsung C24F390 (DFP-2): 600.0 MHz maximum pixel clock
[ 29.559] (--) NVIDIA(GPU-0):
[ 29.559] (--) NVIDIA(GPU-0): DFP-3: disconnected
[ 29.559] (--) NVIDIA(GPU-0): DFP-3: Internal DisplayPort
[ 29.559] (--) NVIDIA(GPU-0): DFP-3: 2670.0 MHz maximum pixel clock
[ 29.559] (--) NVIDIA(GPU-0):
[ 29.565] (II) modeset(0): EDID vendor "AUO", prod id 32429
[ 29.565] (II) modeset(0): Using hsync ranges from config file
[ 29.565] (II) modeset(0): Using vrefresh ranges from config file
[ 29.565] (II) modeset(0): Printing DDC gathered Modelines:
[ 29.565] (II) modeset(0): Modeline "1920x1080"x0.0 142.46 1920 1968 2000 2103 1080 1090 1095 1129 -hsync -vsync (67.7 kHz eP)
[ 29.625] (II) modeset(0): EDID vendor "AUO", prod id 32429
[ 29.625] (II) modeset(0): Using hsync ranges from config file
[ 29.625] (II) modeset(0): Using vrefresh ranges from config file
[ 29.625] (II) modeset(0): Printing DDC gathered Modelines:
[ 29.625] (II) modeset(0): Modeline "1920x1080"x0.0 142.46 1920 1968 2000 2103 1080 1090 1095 1129 -hsync -vsync (67.7 kHz eP)
[ 29.683] (--) NVIDIA(GPU-0): DFP-0: disconnected
[ 29.683] (--) NVIDIA(GPU-0): DFP-0: Internal DisplayPort
[ 29.683] (--) NVIDIA(GPU-0): DFP-0: 2670.0 MHz maximum pixel clock
[ 29.683] (--) NVIDIA(GPU-0):
[ 29.683] (--) NVIDIA(GPU-0): DFP-1: disconnected
[ 29.683] (--) NVIDIA(GPU-0): DFP-1: Internal TMDS
[ 29.683] (--) NVIDIA(GPU-0): DFP-1: 165.0 MHz maximum pixel clock
[ 29.683] (--) NVIDIA(GPU-0):
[ 29.729] (--) NVIDIA(GPU-0): Samsung C24F390 (DFP-2): connected
[ 29.729] (--) NVIDIA(GPU-0): Samsung C24F390 (DFP-2): Internal TMDS
[ 29.729] (--) NVIDIA(GPU-0): Samsung C24F390 (DFP-2): 600.0 MHz maximum pixel clock
[ 29.729] (--) NVIDIA(GPU-0):
[ 29.729] (--) NVIDIA(GPU-0): DFP-3: disconnected
[ 29.729] (--) NVIDIA(GPU-0): DFP-3: Internal DisplayPort
[ 29.729] (--) NVIDIA(GPU-0): DFP-3: 2670.0 MHz maximum pixel clock
[ 29.729] (--) NVIDIA(GPU-0):
[ 29.771] (II) modeset(0): Allocate new frame buffer 3840x1080 stride
[ 30.861] (II) NVIDIA(G0): Setting mode "HDMI-1-0: nvidia-auto-select @1920x1080 +0+0 {AllowGSYNC=Off, ViewPortIn=1920x1080, ViewPortOut=1920x1080+0+0}"
Last edited by Lem0nHead (2025-03-06 14:46:16)
Offline
Did you try to disable DRI3?
[ 24.591] (WW) NVIDIA(G0): Cannot find size of first mode for Samsung C24F390 (DFP-2);
[ 24.591] (WW) NVIDIA(G0): cannot compute DPI from Samsung C24F390 (DFP-2)'s EDID.
I don't really think this is the cause, but it's certainly odd and also not a problem when running on the nvidia driver.
xrandr --verbose
Offline
Did you try to disable DRI3?
I wasn't sure what you meant by "gloablly export LIBGL_DRI3_DISABLE=1"; do you mean adding to /etc/environment?
If so, I tried it and not much changed on the log (or behavior), diff below:
- (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:14.0/usb1/1-4/1-4.2/1-4.2.3/1-4.2.3:1.2/0003:046D:C539.0005/0003:046D:4087.0009/input/input23/event7"
+ (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:14.0/usb1/1-4/1-4.2/1-4.2.3/1-4.2.3:1.2/0003:046D:C539.000D/0003:046D:4087.000E/input/input42/event7"
- (II) config/udev: Adding input device Logitech G903 LS (/dev/input/mouse1)
+ (II) config/udev: Adding input device Logitech G903 LS (/dev/input/mouse0)
- (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:14.0/usb1/1-4/1-4.2/1-4.2.4/1-4.2.4:1.0/0003:13BA:0018.0007/input/input14/event13"
+ (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:14.0/usb1/1-4/1-4.2/1-4.2.4/1-4.2.4:1.0/0003:13BA:0018.000F/input/input43/event13"
- (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:14.0/usb1/1-4/1-4.2/1-4.2.4/1-4.2.4:1.1/0003:13BA:0018.0008/input/input15/event14"
+ (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:14.0/usb1/1-4/1-4.2/1-4.2.4/1-4.2.4:1.1/0003:13BA:0018.0010/input/input44/event14"
- (II) config/udev: Adding input device Barcode Reader Mouse (/dev/input/mouse0)
+ (II) config/udev: Adding input device Barcode Reader Mouse (/dev/input/mouse1)
- (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:14.0/usb1/1-4/1-4.2/1-4.2.4/1-4.2.4:1.1/0003:13BA:0018.0008/input/input16/event15"
+ (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:14.0/usb1/1-4/1-4.2/1-4.2.4/1-4.2.4:1.1/0003:13BA:0018.0010/input/input45/event15"
- (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:14.0/usb1/1-4/1-4.2/1-4.2.4/1-4.2.4:1.1/0003:13BA:0018.0008/input/input17/event16"
+ (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:14.0/usb1/1-4/1-4.2/1-4.2.4/1-4.2.4:1.1/0003:13BA:0018.0010/input/input46/event16"
- (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:14.0/usb1/1-4/1-4.2/1-4.2.3/1-4.2.3:1.2/0003:046D:C539.0005/0003:046D:4087.0009/input/input23/event7"
+ (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:14.0/usb1/1-4/1-4.2/1-4.2.3/1-4.2.3:1.2/0003:046D:C539.000D/0003:046D:4087.000E/input/input42/event7"
- (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:14.0/usb1/1-4/1-4.2/1-4.2.4/1-4.2.4:1.1/0003:13BA:0018.0008/input/input17/event16"
+ (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:14.0/usb1/1-4/1-4.2/1-4.2.4/1-4.2.4:1.1/0003:13BA:0018.0010/input/input46/event16"
+ (II) event7 - Logitech G903 LS: SYN_DROPPED event - some input events have been lost.
+ (II) event7 - Logitech G903 LS: SYN_DROPPED event - some input events have been lost.
xrandr (removed disconnected ones, assuming you don't care)
Screen 0: minimum 320 x 200, current 3840 x 1080, maximum 16384 x 16384
eDP-1 connected 1920x1080+1920+0 (0x4b) normal (normal left inverted right x axis y axis) 344mm x 193mm
Identifier: 0x42
Timestamp: 37087088
Subpixel: unknown
Gamma: 1.0:1.0:1.0
Brightness: 1.0
Clones:
CRTC: 1
CRTCs: 1 2 3 4
Transform: 1.000000 0.000000 0.000000
0.000000 1.000000 0.000000
0.000000 0.000000 1.000000
filter:
EDID:
00ffffffffffff0006afad7ead7e0000
18210104a5221378034e35a6544ba027
0f505400000001010101010101010101
010101010101a63780b7703831403020
a50058c110000018000000fd003090a3
a322010a202020202020000000fe0041
554f0a202020202020202020000000fe
004231353648414e31352e4b200a01f9
70207902002200148b3705847f07b600
2f801f0037043000090004002b000c27
003c8f00002700303b00008100106f1a
00000301309000005351535190000000
00000000000000000000000000000000
00000000000000000000000000000000
00000000000000000000000000000000
0000000000000000000000000000f190
vrr_capable: 1
range: (0, 1)
Colorspace: Default
supported: Default, BT709_YCC, XVYCC_601, XVYCC_709, SYCC_601, opYCC_601, opRGB, BT2020_CYCC, BT2020_RGB, BT2020_YCC, DCI-P3_RGB_D65, RGB_WIDE_FIXED, RGB_WIDE_FLOAT, BT601_YCC
max bpc: 12
range: (6, 12)
Broadcast RGB: Automatic
supported: Automatic, Full, Limited 16:235
panel orientation: Normal
supported: Normal, Upside Down, Left Side Up, Right Side Up
scaling mode: Full aspect
supported: Full, Center, Full aspect
link-status: Good
supported: Good, Bad
CONNECTOR_ID: 241
supported: 241
non-desktop: 0
range: (0, 1)
1920x1080 (0x4a) 341.900MHz +HSync -VSync +preferred
h: width 1920 start 1968 end 2000 total 2103 skew 0 clock 162.58KHz
v: height 1080 start 1090 end 1095 total 1129 clock 144.00Hz
1920x1080 (0x4b) 142.460MHz -HSync -VSync *current +preferred
h: width 1920 start 1968 end 2000 total 2103 skew 0 clock 67.74KHz
v: height 1080 start 1090 end 1095 total 1129 clock 60.00Hz
1920x1080 (0x4c) 266.500MHz +HSync -VSync DoubleScan
h: width 1920 start 1944 end 1960 total 2000 skew 0 clock 133.25KHz
v: height 1080 start 1081 end 1084 total 1111 clock 59.97Hz
1920x1080 (0x4d) 173.000MHz -HSync +VSync
h: width 1920 start 2048 end 2248 total 2576 skew 0 clock 67.16KHz
v: height 1080 start 1083 end 1088 total 1120 clock 59.96Hz
1920x1080 (0x4e) 138.500MHz +HSync -VSync
h: width 1920 start 1968 end 2000 total 2080 skew 0 clock 66.59KHz
v: height 1080 start 1083 end 1088 total 1111 clock 59.93Hz
1680x1050 (0x4f) 146.250MHz -HSync +VSync
h: width 1680 start 1784 end 1960 total 2240 skew 0 clock 65.29KHz
v: height 1050 start 1053 end 1059 total 1089 clock 59.95Hz
1680x1050 (0x50) 119.000MHz +HSync -VSync
h: width 1680 start 1728 end 1760 total 1840 skew 0 clock 64.67KHz
v: height 1050 start 1053 end 1059 total 1080 clock 59.88Hz
1400x1050 (0x51) 155.800MHz +HSync +VSync
h: width 1400 start 1464 end 1784 total 1912 skew 0 clock 81.49KHz
v: height 1050 start 1052 end 1064 total 1090 clock 74.76Hz
1400x1050 (0x52) 122.000MHz +HSync +VSync
h: width 1400 start 1488 end 1640 total 1880 skew 0 clock 64.89KHz
v: height 1050 start 1052 end 1064 total 1082 clock 59.98Hz
1600x900 (0x53) 246.000MHz -HSync +VSync DoubleScan
h: width 1600 start 1728 end 1900 total 2200 skew 0 clock 111.82KHz
v: height 900 start 901 end 904 total 932 clock 59.99Hz
1600x900 (0x54) 186.500MHz +HSync -VSync DoubleScan
h: width 1600 start 1624 end 1640 total 1680 skew 0 clock 111.01KHz
v: height 900 start 901 end 904 total 926 clock 59.94Hz
1600x900 (0x55) 118.250MHz -HSync +VSync
h: width 1600 start 1696 end 1856 total 2112 skew 0 clock 55.99KHz
v: height 900 start 903 end 908 total 934 clock 59.95Hz
1600x900 (0x56) 97.500MHz +HSync -VSync
h: width 1600 start 1648 end 1680 total 1760 skew 0 clock 55.40KHz
v: height 900 start 903 end 908 total 926 clock 59.82Hz
1280x1024 (0x57) 157.500MHz +HSync +VSync
h: width 1280 start 1344 end 1504 total 1728 skew 0 clock 91.15KHz
v: height 1024 start 1025 end 1028 total 1072 clock 85.02Hz
1280x1024 (0x58) 135.000MHz +HSync +VSync
h: width 1280 start 1296 end 1440 total 1688 skew 0 clock 79.98KHz
v: height 1024 start 1025 end 1028 total 1066 clock 75.02Hz
1280x1024 (0x59) 108.000MHz +HSync +VSync
h: width 1280 start 1328 end 1440 total 1688 skew 0 clock 63.98KHz
v: height 1024 start 1025 end 1028 total 1066 clock 60.02Hz
1400x900 (0x5a) 103.500MHz -HSync +VSync
h: width 1400 start 1480 end 1624 total 1848 skew 0 clock 56.01KHz
v: height 900 start 903 end 913 total 934 clock 59.96Hz
1400x900 (0x5b) 86.500MHz +HSync -VSync
h: width 1400 start 1448 end 1480 total 1560 skew 0 clock 55.45KHz
v: height 900 start 903 end 913 total 926 clock 59.88Hz
1280x960 (0x5c) 148.500MHz +HSync +VSync
h: width 1280 start 1344 end 1504 total 1728 skew 0 clock 85.94KHz
v: height 960 start 961 end 964 total 1011 clock 85.00Hz
1280x960 (0x5d) 108.000MHz +HSync +VSync
h: width 1280 start 1376 end 1488 total 1800 skew 0 clock 60.00KHz
v: height 960 start 961 end 964 total 1000 clock 60.00Hz
1440x810 (0x5e) 198.125MHz -HSync +VSync DoubleScan
h: width 1440 start 1548 end 1704 total 1968 skew 0 clock 100.67KHz
v: height 810 start 811 end 814 total 839 clock 60.00Hz
1440x810 (0x5f) 151.875MHz +HSync -VSync DoubleScan
h: width 1440 start 1464 end 1480 total 1520 skew 0 clock 99.92KHz
v: height 810 start 811 end 814 total 833 clock 59.97Hz
1368x768 (0x60) 85.250MHz -HSync +VSync
h: width 1368 start 1440 end 1576 total 1784 skew 0 clock 47.79KHz
v: height 768 start 771 end 781 total 798 clock 59.88Hz
1368x768 (0x61) 72.250MHz +HSync -VSync
h: width 1368 start 1416 end 1448 total 1528 skew 0 clock 47.28KHz
v: height 768 start 771 end 781 total 790 clock 59.85Hz
1280x800 (0x62) 174.250MHz -HSync +VSync DoubleScan
h: width 1280 start 1380 end 1516 total 1752 skew 0 clock 99.46KHz
v: height 800 start 801 end 804 total 829 clock 59.99Hz
1280x800 (0x63) 134.250MHz +HSync -VSync DoubleScan
h: width 1280 start 1304 end 1320 total 1360 skew 0 clock 98.71KHz
v: height 800 start 801 end 804 total 823 clock 59.97Hz
1280x800 (0x64) 83.500MHz -HSync +VSync
h: width 1280 start 1352 end 1480 total 1680 skew 0 clock 49.70KHz
v: height 800 start 803 end 809 total 831 clock 59.81Hz
1280x800 (0x65) 71.000MHz +HSync -VSync
h: width 1280 start 1328 end 1360 total 1440 skew 0 clock 49.31KHz
v: height 800 start 803 end 809 total 823 clock 59.91Hz
1152x864 (0x66) 108.000MHz +HSync +VSync
h: width 1152 start 1216 end 1344 total 1600 skew 0 clock 67.50KHz
v: height 864 start 865 end 868 total 900 clock 75.00Hz
1280x720 (0x67) 156.125MHz -HSync +VSync DoubleScan
h: width 1280 start 1376 end 1512 total 1744 skew 0 clock 89.52KHz
v: height 720 start 721 end 724 total 746 clock 60.00Hz
1280x720 (0x68) 120.750MHz +HSync -VSync DoubleScan
h: width 1280 start 1304 end 1320 total 1360 skew 0 clock 88.79KHz
v: height 720 start 721 end 724 total 740 clock 59.99Hz
1280x720 (0x69) 74.500MHz -HSync +VSync
h: width 1280 start 1344 end 1472 total 1664 skew 0 clock 44.77KHz
v: height 720 start 723 end 728 total 748 clock 59.86Hz
1280x720 (0x6a) 63.750MHz +HSync -VSync
h: width 1280 start 1328 end 1360 total 1440 skew 0 clock 44.27KHz
v: height 720 start 723 end 728 total 741 clock 59.74Hz
1024x768 (0x6b) 194.020MHz -HSync +VSync DoubleScan
h: width 1024 start 1108 end 1220 total 1416 skew 0 clock 137.02KHz
v: height 768 start 768 end 770 total 806 clock 85.00Hz
1024x768 (0x6c) 170.240MHz -HSync +VSync DoubleScan
h: width 1024 start 1108 end 1220 total 1416 skew 0 clock 120.23KHz
v: height 768 start 768 end 770 total 801 clock 75.05Hz
1024x768 (0x6d) 133.475MHz -HSync +VSync DoubleScan
h: width 1024 start 1100 end 1212 total 1400 skew 0 clock 95.34KHz
v: height 768 start 768 end 770 total 794 clock 60.04Hz
1024x768 (0x6e) 94.500MHz +HSync +VSync
h: width 1024 start 1072 end 1168 total 1376 skew 0 clock 68.68KHz
v: height 768 start 769 end 772 total 808 clock 85.00Hz
1024x768 (0x6f) 78.750MHz +HSync +VSync
h: width 1024 start 1040 end 1136 total 1312 skew 0 clock 60.02KHz
v: height 768 start 769 end 772 total 800 clock 75.03Hz
1024x768 (0x70) 75.000MHz -HSync -VSync
h: width 1024 start 1048 end 1184 total 1328 skew 0 clock 56.48KHz
v: height 768 start 771 end 777 total 806 clock 70.07Hz
1024x768 (0x71) 65.000MHz -HSync -VSync
h: width 1024 start 1048 end 1184 total 1344 skew 0 clock 48.36KHz
v: height 768 start 771 end 777 total 806 clock 60.00Hz
1024x768i (0x72) 44.900MHz +HSync +VSync Interlace
h: width 1024 start 1032 end 1208 total 1264 skew 0 clock 35.52KHz
v: height 768 start 768 end 776 total 817 clock 86.96Hz
960x720 (0x73) 170.675MHz -HSync +VSync DoubleScan
h: width 960 start 1036 end 1144 total 1328 skew 0 clock 128.52KHz
v: height 720 start 720 end 722 total 756 clock 85.00Hz
960x720 (0x74) 148.500MHz -HSync +VSync DoubleScan
h: width 960 start 1032 end 1144 total 1320 skew 0 clock 112.50KHz
v: height 720 start 720 end 722 total 750 clock 75.00Hz
960x720 (0x75) 117.000MHz -HSync +VSync DoubleScan
h: width 960 start 1024 end 1128 total 1300 skew 0 clock 90.00KHz
v: height 720 start 720 end 722 total 750 clock 60.00Hz
928x696 (0x76) 144.000MHz -HSync +VSync DoubleScan
h: width 928 start 992 end 1104 total 1280 skew 0 clock 112.50KHz
v: height 696 start 696 end 698 total 750 clock 75.00Hz
928x696 (0x77) 109.150MHz -HSync +VSync DoubleScan
h: width 928 start 976 end 1088 total 1264 skew 0 clock 86.35KHz
v: height 696 start 696 end 698 total 719 clock 60.05Hz
896x672 (0x78) 130.500MHz -HSync +VSync DoubleScan
h: width 896 start 944 end 1052 total 1228 skew 0 clock 106.27KHz
v: height 672 start 672 end 674 total 708 clock 75.05Hz
896x672 (0x79) 102.400MHz -HSync +VSync DoubleScan
h: width 896 start 960 end 1060 total 1224 skew 0 clock 83.66KHz
v: height 672 start 672 end 674 total 697 clock 60.01Hz
1024x576 (0x7a) 98.500MHz -HSync +VSync DoubleScan
h: width 1024 start 1092 end 1200 total 1376 skew 0 clock 71.58KHz
v: height 576 start 577 end 580 total 597 clock 59.95Hz
1024x576 (0x7b) 78.375MHz +HSync -VSync DoubleScan
h: width 1024 start 1048 end 1064 total 1104 skew 0 clock 70.99KHz
v: height 576 start 577 end 580 total 592 clock 59.96Hz
1024x576 (0x7c) 46.500MHz -HSync +VSync
h: width 1024 start 1064 end 1160 total 1296 skew 0 clock 35.88KHz
v: height 576 start 579 end 584 total 599 clock 59.90Hz
1024x576 (0x7d) 42.000MHz +HSync -VSync
h: width 1024 start 1072 end 1104 total 1184 skew 0 clock 35.47KHz
v: height 576 start 579 end 584 total 593 clock 59.82Hz
960x600 (0x7e) 96.625MHz -HSync +VSync DoubleScan
h: width 960 start 1028 end 1128 total 1296 skew 0 clock 74.56KHz
v: height 600 start 601 end 604 total 622 clock 59.93Hz
960x600 (0x7f) 77.000MHz +HSync -VSync DoubleScan
h: width 960 start 984 end 1000 total 1040 skew 0 clock 74.04KHz
v: height 600 start 601 end 604 total 617 clock 60.00Hz
832x624 (0x80) 57.284MHz -HSync -VSync
h: width 832 start 864 end 928 total 1152 skew 0 clock 49.73KHz
v: height 624 start 625 end 628 total 667 clock 74.55Hz
960x540 (0x81) 86.500MHz -HSync +VSync DoubleScan
h: width 960 start 1024 end 1124 total 1288 skew 0 clock 67.16KHz
v: height 540 start 541 end 544 total 560 clock 59.96Hz
960x540 (0x82) 69.250MHz +HSync -VSync DoubleScan
h: width 960 start 984 end 1000 total 1040 skew 0 clock 66.59KHz
v: height 540 start 541 end 544 total 555 clock 59.99Hz
960x540 (0x83) 40.750MHz -HSync +VSync
h: width 960 start 992 end 1088 total 1216 skew 0 clock 33.51KHz
v: height 540 start 543 end 548 total 562 clock 59.63Hz
960x540 (0x84) 37.250MHz +HSync -VSync
h: width 960 start 1008 end 1040 total 1120 skew 0 clock 33.26KHz
v: height 540 start 543 end 548 total 556 clock 59.82Hz
800x600 (0x85) 114.750MHz +HSync +VSync DoubleScan
h: width 800 start 832 end 928 total 1080 skew 0 clock 106.25KHz
v: height 600 start 600 end 602 total 625 clock 85.00Hz
800x600 (0x86) 101.250MHz +HSync +VSync DoubleScan
h: width 800 start 832 end 928 total 1080 skew 0 clock 93.75KHz
v: height 600 start 600 end 602 total 625 clock 75.00Hz
800x600 (0x87) 94.500MHz +HSync +VSync DoubleScan
h: width 800 start 832 end 928 total 1080 skew 0 clock 87.50KHz
v: height 600 start 600 end 602 total 625 clock 70.00Hz
800x600 (0x88) 87.750MHz +HSync +VSync DoubleScan
h: width 800 start 832 end 928 total 1080 skew 0 clock 81.25KHz
v: height 600 start 600 end 602 total 625 clock 65.00Hz
800x600 (0x89) 81.000MHz +HSync +VSync DoubleScan
h: width 800 start 832 end 928 total 1080 skew 0 clock 75.00KHz
v: height 600 start 600 end 602 total 625 clock 60.00Hz
800x600 (0x8a) 56.300MHz +HSync +VSync
h: width 800 start 832 end 896 total 1048 skew 0 clock 53.72KHz
v: height 600 start 601 end 604 total 631 clock 85.14Hz
800x600 (0x8b) 50.000MHz +HSync +VSync
h: width 800 start 856 end 976 total 1040 skew 0 clock 48.08KHz
v: height 600 start 637 end 643 total 666 clock 72.19Hz
800x600 (0x8c) 49.500MHz +HSync +VSync
h: width 800 start 816 end 896 total 1056 skew 0 clock 46.88KHz
v: height 600 start 601 end 604 total 625 clock 75.00Hz
800x600 (0x8d) 40.000MHz +HSync +VSync
h: width 800 start 840 end 968 total 1056 skew 0 clock 37.88KHz
v: height 600 start 601 end 605 total 628 clock 60.32Hz
800x600 (0x8e) 36.000MHz +HSync +VSync
h: width 800 start 824 end 896 total 1024 skew 0 clock 35.16KHz
v: height 600 start 601 end 603 total 625 clock 56.25Hz
840x525 (0x8f) 73.125MHz -HSync +VSync DoubleScan
h: width 840 start 892 end 980 total 1120 skew 0 clock 65.29KHz
v: height 525 start 526 end 529 total 544 clock 60.01Hz
840x525 (0x90) 59.500MHz +HSync -VSync DoubleScan
h: width 840 start 864 end 880 total 920 skew 0 clock 64.67KHz
v: height 525 start 526 end 529 total 540 clock 59.88Hz
864x486 (0x91) 32.500MHz -HSync +VSync
h: width 864 start 888 end 968 total 1072 skew 0 clock 30.32KHz
v: height 486 start 489 end 494 total 506 clock 59.92Hz
864x486 (0x92) 30.500MHz +HSync -VSync
h: width 864 start 912 end 944 total 1024 skew 0 clock 29.79KHz
v: height 486 start 489 end 494 total 500 clock 59.57Hz
700x525 (0x93) 77.900MHz +HSync +VSync DoubleScan
h: width 700 start 732 end 892 total 956 skew 0 clock 81.49KHz
v: height 525 start 526 end 532 total 545 clock 74.76Hz
700x525 (0x94) 61.000MHz +HSync +VSync DoubleScan
h: width 700 start 744 end 820 total 940 skew 0 clock 64.89KHz
v: height 525 start 526 end 532 total 541 clock 59.98Hz
800x450 (0x95) 59.125MHz -HSync +VSync DoubleScan
h: width 800 start 848 end 928 total 1056 skew 0 clock 55.99KHz
v: height 450 start 451 end 454 total 467 clock 59.95Hz
800x450 (0x96) 48.750MHz +HSync -VSync DoubleScan
h: width 800 start 824 end 840 total 880 skew 0 clock 55.40KHz
v: height 450 start 451 end 454 total 463 clock 59.82Hz
640x512 (0x97) 78.750MHz +HSync +VSync DoubleScan
h: width 640 start 672 end 752 total 864 skew 0 clock 91.15KHz
v: height 512 start 512 end 514 total 536 clock 85.02Hz
640x512 (0x98) 67.500MHz +HSync +VSync DoubleScan
h: width 640 start 648 end 720 total 844 skew 0 clock 79.98KHz
v: height 512 start 512 end 514 total 533 clock 75.02Hz
640x512 (0x99) 54.000MHz +HSync +VSync DoubleScan
h: width 640 start 664 end 720 total 844 skew 0 clock 63.98KHz
v: height 512 start 512 end 514 total 533 clock 60.02Hz
700x450 (0x9a) 51.750MHz -HSync +VSync DoubleScan
h: width 700 start 740 end 812 total 924 skew 0 clock 56.01KHz
v: height 450 start 451 end 456 total 467 clock 59.96Hz
700x450 (0x9b) 43.250MHz +HSync -VSync DoubleScan
h: width 700 start 724 end 740 total 780 skew 0 clock 55.45KHz
v: height 450 start 451 end 456 total 463 clock 59.88Hz
640x480 (0x9c) 74.250MHz +HSync +VSync DoubleScan
h: width 640 start 672 end 752 total 864 skew 0 clock 85.94KHz
v: height 480 start 480 end 482 total 505 clock 85.09Hz
640x480 (0x9d) 54.000MHz +HSync +VSync DoubleScan
h: width 640 start 688 end 744 total 900 skew 0 clock 60.00KHz
v: height 480 start 480 end 482 total 500 clock 60.00Hz
640x480 (0x9e) 36.000MHz -HSync -VSync
h: width 640 start 696 end 752 total 832 skew 0 clock 43.27KHz
v: height 480 start 481 end 484 total 509 clock 85.01Hz
640x480 (0x9f) 31.500MHz -HSync -VSync
h: width 640 start 664 end 704 total 832 skew 0 clock 37.86KHz
v: height 480 start 489 end 492 total 520 clock 72.81Hz
640x480 (0xa0) 31.500MHz -HSync -VSync
h: width 640 start 656 end 720 total 840 skew 0 clock 37.50KHz
v: height 480 start 481 end 484 total 500 clock 75.00Hz
640x480 (0xa1) 25.175MHz -HSync -VSync
h: width 640 start 656 end 752 total 800 skew 0 clock 31.47KHz
v: height 480 start 490 end 492 total 525 clock 59.94Hz
720x405 (0xa2) 22.500MHz -HSync +VSync
h: width 720 start 744 end 808 total 896 skew 0 clock 25.11KHz
v: height 405 start 408 end 413 total 422 clock 59.51Hz
720x405 (0xa3) 21.750MHz +HSync -VSync
h: width 720 start 768 end 800 total 880 skew 0 clock 24.72KHz
v: height 405 start 408 end 413 total 419 clock 58.99Hz
720x400 (0xa4) 35.500MHz -HSync +VSync
h: width 720 start 756 end 828 total 936 skew 0 clock 37.93KHz
v: height 400 start 401 end 404 total 446 clock 85.04Hz
684x384 (0xa5) 42.625MHz -HSync +VSync DoubleScan
h: width 684 start 720 end 788 total 892 skew 0 clock 47.79KHz
v: height 384 start 385 end 390 total 399 clock 59.88Hz
684x384 (0xa6) 36.125MHz +HSync -VSync DoubleScan
h: width 684 start 708 end 724 total 764 skew 0 clock 47.28KHz
v: height 384 start 385 end 390 total 395 clock 59.85Hz
640x400 (0xa7) 41.750MHz -HSync +VSync DoubleScan
h: width 640 start 676 end 740 total 840 skew 0 clock 49.70KHz
v: height 400 start 401 end 404 total 415 clock 59.88Hz
640x400 (0xa8) 35.500MHz +HSync -VSync DoubleScan
h: width 640 start 664 end 680 total 720 skew 0 clock 49.31KHz
v: height 400 start 401 end 404 total 411 clock 59.98Hz
640x400 (0xa9) 31.500MHz -HSync +VSync
h: width 640 start 672 end 736 total 832 skew 0 clock 37.86KHz
v: height 400 start 401 end 404 total 445 clock 85.08Hz
576x432 (0xaa) 54.000MHz +HSync +VSync DoubleScan
h: width 576 start 608 end 672 total 800 skew 0 clock 67.50KHz
v: height 432 start 432 end 434 total 450 clock 75.00Hz
640x360 (0xab) 37.250MHz -HSync +VSync DoubleScan
h: width 640 start 672 end 736 total 832 skew 0 clock 44.77KHz
v: height 360 start 361 end 364 total 374 clock 59.86Hz
640x360 (0xac) 31.875MHz +HSync -VSync DoubleScan
h: width 640 start 664 end 680 total 720 skew 0 clock 44.27KHz
v: height 360 start 361 end 364 total 370 clock 59.83Hz
640x360 (0xad) 18.000MHz -HSync +VSync
h: width 640 start 664 end 720 total 800 skew 0 clock 22.50KHz
v: height 360 start 363 end 368 total 376 clock 59.84Hz
640x360 (0xae) 17.750MHz +HSync -VSync
h: width 640 start 688 end 720 total 800 skew 0 clock 22.19KHz
v: height 360 start 363 end 368 total 374 clock 59.32Hz
640x350 (0xaf) 31.500MHz +HSync -VSync
h: width 640 start 672 end 736 total 832 skew 0 clock 37.86KHz
v: height 350 start 382 end 385 total 445 clock 85.08Hz
512x384 (0xb0) 47.250MHz +HSync +VSync DoubleScan
h: width 512 start 536 end 584 total 688 skew 0 clock 68.68KHz
v: height 384 start 384 end 386 total 404 clock 85.00Hz
512x384 (0xb1) 39.375MHz +HSync +VSync DoubleScan
h: width 512 start 520 end 568 total 656 skew 0 clock 60.02KHz
v: height 384 start 384 end 386 total 400 clock 75.03Hz
512x384 (0xb2) 37.500MHz -HSync -VSync DoubleScan
h: width 512 start 524 end 592 total 664 skew 0 clock 56.48KHz
v: height 384 start 385 end 388 total 403 clock 70.07Hz
512x384 (0xb3) 32.500MHz -HSync -VSync DoubleScan
h: width 512 start 524 end 592 total 672 skew 0 clock 48.36KHz
v: height 384 start 385 end 388 total 403 clock 60.00Hz
512x384i (0xb4) 22.450MHz +HSync +VSync Interlace DoubleScan
h: width 512 start 516 end 604 total 632 skew 0 clock 35.52KHz
v: height 384 start 384 end 388 total 408 clock 87.06Hz
512x288 (0xb5) 23.250MHz -HSync +VSync DoubleScan
h: width 512 start 532 end 580 total 648 skew 0 clock 35.88KHz
v: height 288 start 289 end 292 total 299 clock 60.00Hz
512x288 (0xb6) 21.000MHz +HSync -VSync DoubleScan
h: width 512 start 536 end 552 total 592 skew 0 clock 35.47KHz
v: height 288 start 289 end 292 total 296 clock 59.92Hz
416x312 (0xb7) 28.642MHz -HSync -VSync DoubleScan
h: width 416 start 432 end 464 total 576 skew 0 clock 49.73KHz
v: height 312 start 312 end 314 total 333 clock 74.66Hz
480x270 (0xb8) 20.375MHz -HSync +VSync DoubleScan
h: width 480 start 496 end 544 total 608 skew 0 clock 33.51KHz
v: height 270 start 271 end 274 total 281 clock 59.63Hz
480x270 (0xb9) 18.625MHz +HSync -VSync DoubleScan
h: width 480 start 504 end 520 total 560 skew 0 clock 33.26KHz
v: height 270 start 271 end 274 total 278 clock 59.82Hz
400x300 (0xba) 28.150MHz +HSync +VSync DoubleScan
h: width 400 start 416 end 448 total 524 skew 0 clock 53.72KHz
v: height 300 start 300 end 302 total 315 clock 85.27Hz
400x300 (0xbb) 25.000MHz +HSync +VSync DoubleScan
h: width 400 start 428 end 488 total 520 skew 0 clock 48.08KHz
v: height 300 start 318 end 321 total 333 clock 72.19Hz
400x300 (0xbc) 24.750MHz +HSync +VSync DoubleScan
h: width 400 start 408 end 448 total 528 skew 0 clock 46.88KHz
v: height 300 start 300 end 302 total 312 clock 75.12Hz
400x300 (0xbd) 20.000MHz +HSync +VSync DoubleScan
h: width 400 start 420 end 484 total 528 skew 0 clock 37.88KHz
v: height 300 start 300 end 302 total 314 clock 60.32Hz
400x300 (0xbe) 18.000MHz +HSync +VSync DoubleScan
h: width 400 start 412 end 448 total 512 skew 0 clock 35.16KHz
v: height 300 start 300 end 301 total 312 clock 56.34Hz
432x243 (0xbf) 16.250MHz -HSync +VSync DoubleScan
h: width 432 start 444 end 484 total 536 skew 0 clock 30.32KHz
v: height 243 start 244 end 247 total 253 clock 59.92Hz
432x243 (0xc0) 15.250MHz +HSync -VSync DoubleScan
h: width 432 start 456 end 472 total 512 skew 0 clock 29.79KHz
v: height 243 start 244 end 247 total 250 clock 59.57Hz
320x240 (0xc1) 18.000MHz -HSync -VSync DoubleScan
h: width 320 start 348 end 376 total 416 skew 0 clock 43.27KHz
v: height 240 start 240 end 242 total 254 clock 85.18Hz
320x240 (0xc2) 15.750MHz -HSync -VSync DoubleScan
h: width 320 start 332 end 352 total 416 skew 0 clock 37.86KHz
v: height 240 start 244 end 246 total 260 clock 72.81Hz
320x240 (0xc3) 15.750MHz -HSync -VSync DoubleScan
h: width 320 start 328 end 360 total 420 skew 0 clock 37.50KHz
v: height 240 start 240 end 242 total 250 clock 75.00Hz
320x240 (0xc4) 12.587MHz -HSync -VSync DoubleScan
h: width 320 start 328 end 376 total 400 skew 0 clock 31.47KHz
v: height 240 start 245 end 246 total 262 clock 60.05Hz
360x202 (0xc5) 11.250MHz -HSync +VSync DoubleScan
h: width 360 start 372 end 404 total 448 skew 0 clock 25.11KHz
v: height 202 start 204 end 206 total 211 clock 59.51Hz
360x202 (0xc6) 10.875MHz +HSync -VSync DoubleScan
h: width 360 start 384 end 400 total 440 skew 0 clock 24.72KHz
v: height 202 start 204 end 206 total 209 clock 59.13Hz
360x200 (0xc7) 17.750MHz -HSync +VSync DoubleScan
h: width 360 start 378 end 414 total 468 skew 0 clock 37.93KHz
v: height 200 start 200 end 202 total 223 clock 85.04Hz
320x200 (0xc8) 15.750MHz -HSync +VSync DoubleScan
h: width 320 start 336 end 368 total 416 skew 0 clock 37.86KHz
v: height 200 start 200 end 202 total 222 clock 85.27Hz
320x180 (0xc9) 9.000MHz -HSync +VSync DoubleScan
h: width 320 start 332 end 360 total 400 skew 0 clock 22.50KHz
v: height 180 start 181 end 184 total 188 clock 59.84Hz
320x180 (0xca) 8.875MHz +HSync -VSync DoubleScan
h: width 320 start 344 end 360 total 400 skew 0 clock 22.19KHz
v: height 180 start 181 end 184 total 187 clock 59.32Hz
320x175 (0xcb) 15.750MHz +HSync -VSync DoubleScan
h: width 320 start 336 end 368 total 416 skew 0 clock 37.86KHz
v: height 175 start 191 end 192 total 222 clock 85.27Hz
HDMI-1 disconnected (normal left inverted right x axis y axis)
DP-1 disconnected (normal left inverted right x axis y axis)
HDMI-2 disconnected (normal left inverted right x axis y axis)
HDMI-3 disconnected (normal left inverted right x axis y axis)
DP-2 disconnected (normal left inverted right x axis y axis)
HDMI-4 disconnected (normal left inverted right x axis y axis)
DP-1-0 disconnected (normal left inverted right x axis y axis)
DP-1-1 disconnected (normal left inverted right x axis y axis)
HDMI-1-0 connected primary 1920x1080+0+0 (0x27b) normal (normal left inverted right x axis y axis) 521mm x 293mm
Identifier: 0x27a
Timestamp: 37087088
Subpixel: unknown
Gamma: 1.0:1.0:1.0
Brightness: 0.50
Clones:
CRTC: 0
CRTCs: 0 5 6 7
Transform: 1.000000 0.000000 0.000000
0.000000 1.000000 0.000000
0.000000 0.000000 1.000000
filter:
EDID:
00ffffffffffff004c2d2c0d4d535a42
2a1e010380341d782a5295a556549d25
0e5054bb8c00b30081c0810081809500
a9c001010101023a801871382d40582c
450009252100001e000000fd0032481e
5111000a202020202020000000fc0043
3234463339300a2020202020000000ff
0048345a4e4131323436390a20200129
02031af14690041f1312032309070783
01000066030c00100080011d00bc52d0
1e20b828554009252100001e8c0ad090
204031200c4055000925210000188c0a
d08a20e02d10103e9600092521000018
00000000000000000000000000000000
00000000000000000000000000000000
000000000000000000000000000000c9
PRIME Synchronization: supported: ?, ?
CTM: 1.000000 0.000000 0.000000
0.000000 1.000000 0.000000
0.000000 0.000000 1.000000
CscMatrix: 65536 0 0 0 0 65536 0 0 0 0 65536 0
BorderDimensions: 4
supported: 4
Border: 0 0 0 0
range: (0, 65535)
SignalFormat: TMDS
supported: TMDS
ConnectorType: HDMI
ConnectorNumber: 2
_ConnectorLocation: 2
non-desktop: 0
supported: 0, 1
1920x1080 (0x27b) 148.500MHz +HSync +VSync *current +preferred
h: width 1920 start 2008 end 2052 total 2200 skew 0 clock 67.50KHz
v: height 1080 start 1084 end 1089 total 1125 clock 60.00Hz
1920x1080 (0x27c) 148.350MHz +HSync +VSync
h: width 1920 start 2008 end 2052 total 2200 skew 0 clock 67.43KHz
v: height 1080 start 1084 end 1089 total 1125 clock 59.94Hz
1920x1080 (0x27d) 148.500MHz +HSync +VSync
h: width 1920 start 2448 end 2492 total 2640 skew 0 clock 56.25KHz
v: height 1080 start 1084 end 1089 total 1125 clock 50.00Hz
1680x1050 (0x4f) 146.250MHz -HSync +VSync
h: width 1680 start 1784 end 1960 total 2240 skew 0 clock 65.29KHz
v: height 1050 start 1053 end 1059 total 1089 clock 59.95Hz
1600x900 (0x27e) 108.000MHz +HSync +VSync
h: width 1600 start 1624 end 1704 total 1800 skew 0 clock 60.00KHz
v: height 900 start 901 end 904 total 1000 clock 60.00Hz
1440x900 (0x27f) 106.500MHz -HSync +VSync
h: width 1440 start 1520 end 1672 total 1904 skew 0 clock 55.93KHz
v: height 900 start 903 end 909 total 934 clock 59.89Hz
1280x1024 (0x59) 108.000MHz +HSync +VSync
h: width 1280 start 1328 end 1440 total 1688 skew 0 clock 63.98KHz
v: height 1024 start 1025 end 1028 total 1066 clock 60.02Hz
1280x800 (0x64) 83.500MHz -HSync +VSync
h: width 1280 start 1352 end 1480 total 1680 skew 0 clock 49.70KHz
v: height 800 start 803 end 809 total 831 clock 59.81Hz
1280x720 (0x280) 74.250MHz +HSync +VSync
h: width 1280 start 1390 end 1430 total 1650 skew 0 clock 45.00KHz
v: height 720 start 725 end 730 total 750 clock 60.00Hz
1280x720 (0x281) 74.180MHz +HSync +VSync
h: width 1280 start 1390 end 1430 total 1650 skew 0 clock 44.96KHz
v: height 720 start 725 end 730 total 750 clock 59.94Hz
1280x720 (0x282) 74.250MHz +HSync +VSync
h: width 1280 start 1720 end 1760 total 1980 skew 0 clock 37.50KHz
v: height 720 start 725 end 730 total 750 clock 50.00Hz
1024x768 (0x70) 75.000MHz -HSync -VSync
h: width 1024 start 1048 end 1184 total 1328 skew 0 clock 56.48KHz
v: height 768 start 771 end 777 total 806 clock 70.07Hz
1024x768 (0x71) 65.000MHz -HSync -VSync
h: width 1024 start 1048 end 1184 total 1344 skew 0 clock 48.36KHz
v: height 768 start 771 end 777 total 806 clock 60.00Hz
800x600 (0x8b) 50.000MHz +HSync +VSync
h: width 800 start 856 end 976 total 1040 skew 0 clock 48.08KHz
v: height 600 start 637 end 643 total 666 clock 72.19Hz
800x600 (0x8d) 40.000MHz +HSync +VSync
h: width 800 start 840 end 968 total 1056 skew 0 clock 37.88KHz
v: height 600 start 601 end 605 total 628 clock 60.32Hz
800x600 (0x8e) 36.000MHz +HSync +VSync
h: width 800 start 824 end 896 total 1024 skew 0 clock 35.16KHz
v: height 600 start 601 end 603 total 625 clock 56.25Hz
720x576 (0x283) 27.000MHz -HSync -VSync
h: width 720 start 732 end 796 total 864 skew 0 clock 31.25KHz
v: height 576 start 581 end 586 total 625 clock 50.00Hz
720x480 (0x284) 27.000MHz -HSync -VSync
h: width 720 start 736 end 798 total 858 skew 0 clock 31.47KHz
v: height 480 start 489 end 495 total 525 clock 59.94Hz
640x480 (0x285) 31.500MHz -HSync -VSync
h: width 640 start 656 end 696 total 832 skew 0 clock 37.86KHz
v: height 480 start 481 end 484 total 520 clock 72.81Hz
640x480 (0xa1) 25.175MHz -HSync -VSync
h: width 640 start 656 end 752 total 800 skew 0 clock 31.47KHz
v: height 480 start 490 end 492 total 525 clock 59.94Hz
DP-1-2 disconnected (normal left inverted right x axis y axis)
Offline
hm, ok, mystery pretty much solved!
I'm using a KVM to share my external monitor between 2 laptops; if I connect my external monitor directly to the laptop, things seem to work!
I checked xorg log diff after I did that, and nothing changed; xrandr changes though!
the external monitor goes from:
- PRIME Synchronization: supported: ?, ?
to
+ PRIME Synchronization: 1
+ supported: 0, 1
I have no idea what it means, but apparently it's important...
Offline
ha, no, sorry about the red herring
it still doesn't work
it looked like it worked because I launched gnome-calculator from the build-in monitor and it did work fine! I could even drag it to the external monitor
but if I launch on the external monitor, then I don't see the window
interestingly enough, I tried doing this again and this time the external monitor blinked when I dragged the app and seems to have changed resolution.. other times it freezes and I need to change to tty and back to GUI to refresh it..
some driver is really messed up..
Offline
it looked like it worked because I launched gnome-calculator from the build-in monitor and it did work fine! I could even drag it to the external monitor
but if I launch on the external monitor, then I don't see the window
This should hardly make any difference, coincidental?
Remove the KVM, disable prime-sync and globally export "vblank_mode=0" "__GL_SYNC_TO_VBLANK=0" "adaptive_sync=false"
https://wiki.archlinux.org/title/PRIME# … ronization (obviously set it to 0)
Offline
interesting, it seems like this helped, but everything is really weird!
I managed to run `gnome-calculator` with those configs a few times now, but I tried again after a while (and loading firefox, for instance) and then it frozen the whole external monitor screen - I can still move my mouse to the laptop built-in monitor, but the external monitor screen is fully frozen
I recover from that by going to the built-in monitor, killing gnome-calculator (on the terminal), and then I have to do a ctrl-alt-f6/f7 dance
and the launch thing is not a coincidence: gnome-calculator launches where my mouse is - if it's on the built-in monitor, it works fine; if it's on the external monitor then it shows the app on the app bar, but not the window (except a few times earlier where it did, but then froze the screen)
Offline
I get why the window would work on the non-redirected by not on the redirected output, but not why that would depend on the output it was started on (maybe dpi calculation problems aside, but that would not be a GL thing)
Is glxgears btw. affected?
You could try to downgrade to the 565xx nvidia driver (or use https://aur.archlinux.org/packages/nvidia-550xx-dkms )
Offline
I get why the window would work on the non-redirected by not on the redirected output, but not why that would depend on the output it was started on (maybe dpi calculation problems aside, but that would not be a GL thing)
random hypothesis: what breaks it is something it's doing during startup (e.g. initializing menu)
Is glxgears btw. affected?
good question, I was trying to find some better test; it's not affected
`transmission-gtk` is affected though (just to rule out gnome-calculator as the culprit)
You could try to downgrade to the 565xx nvidia driver (or use https://aur.archlinux.org/packages/nvidia-550xx-dkms )
will try that and report back
Offline
What about eg. kitty/alacritty or some Qt GL client?
The problem might be very much GTK…
Offline
Thanks for all the help
I tried to downgrade to nvidia-dkms-550, but it required me to set a `pacman --override` for some elg-gbm stuff; it ended up working, but my external monitor didn't come back after reboot
I've invested too much time on trying to fix this properly by now, so I'll do the usual when graphic stuff breaks on Linux - use a workaround (GSK_RENDERER=cairo) and try again in 2 months
Offline
You'd need to remove the egl-* packages, they were at some point split out from nvidia-utils.
my external monitor didn't come back after reboot
I suspect something went wrong w/ the driver installation, but we might also be looking at the entirely wrong end.
What about eg. kitty/alacritty or some Qt GL client?
The problem might be very much GTK…
Offline
What about eg. kitty/alacritty or some Qt GL client?
The problem might be very much GTK…
I'm currently using `cairo` renderer by default as I mentioned, since it solved gnome-calculator. So I thought it had fixed everything, but it turns out:
1. glxgears don't work anymore
2. I installed kitty and it also doesn't work
only way I managed to make those work (I tried all other renderers) was to use LIBGL_ALWAYS_SOFTWARE=1
now, one thing I'm finding a bit odd is that I'm using nvidia proprietary drivers, but:
$ glxinfo | grep "OpenGL"
OpenGL vendor string: Intel
OpenGL renderer string: Mesa Intel(R) Graphics (RPL-S)
OpenGL core profile version string: 4.6 (Core Profile) Mesa 24.3.4-arch1.1
I didn't expect to see Mesa there.
I tried to ask some GPT and learned about optimus.. which seems to be related
so I tried prime-run:
prime-run glxinfo | grep -i rendere
OpenGL renderer string: NVIDIA GeForce RTX 4060 Laptop GPU/PCIe/SSE2
interestingly/sadly just running this text command with prime-run froze my external monitor (refreshed moving to tty and back).. so now I'm suspecting there's some shenanigans related to optimus
Offline
Offline
thanks! everything works now with "nvidia_drm.modeset=1 nvidia.NVreg_EnableGpuFirmware=0" (I didn't try removing modeset=1), no other workaround!
I guess I'll still try removing them after the next nvidia driver update, but I've had similar issues before and it's not uncommon for those things to take a few versions to get resolved.. so might wait a little bit more
Offline