You are not logged in.

#1 2024-07-02 22:47:39

NightDazer22
Member
Registered: 2024-06-14
Posts: 13

on trying to have dual monitors using different GPUs

given that my laptop was dual gpu and that my dual monitor setup did seem to reduce performance on my games, i decided to make some changes so that my laptop screen and hdmi monitor were to use different GPUs. for some time now ive been using this in my /etc/X11/xorg.conf.d/10-monitor.conf:

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

Section "Monitor"
    Identifier "HDMI-1-0"
EndSection

Section "Screen"
    Identifier "Screen0"
    Monitor "eDP"
    Option "Monitor-HDMI-1-0" "HDMI-1-0"
EndSection

Section "ServerLayout"
    Identifier "DefaultLayout"
    Screen 0 "Screen0"
EndSection 

this made it so that my two screens used my NVIDIA card. i updated it to this:

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

Section "Monitor"
    Identifier "HDMI-1-0"
EndSection

Section "Device"
    Identifier  "NVIDIA"
    Driver      "nvidia"
    BusID       "PCI:1:0:0"                                       
    Screen      0
EndSection

Section "Device"
    Identifier  "AMDGPU"
    Driver      "amdgpu"
    BusID       "PCI:6:0:0"                                   
    Screen      1
EndSection

Section "Screen"
    Identifier "Screen0"
    Monitor "eDP"
    Device     "NVIDIA"
EndSection

Section "Screen"
    Identifier "Screen1"
    Monitor "HDMI-1-0"
    Device     "AMDGPU"
EndSection

Section "ServerLayout"
    Identifier "DefaultLayout"
    Screen 0 "Screen0"
    Screen 1 "Screen1"
EndSection

to try make it so that my HDMI monitor used the AMD GPU and my laptop monitor the NVIDIA gpu. what happened instead was that only the hdmi monitor would display using the nvidia gpu, while my laptop screen is just black. how do i deal w this?

Offline

#2 2024-07-03 06:49:25

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

Re: on trying to have dual monitors using different GPUs

You've configured a zaphod setup, you'll have to run two sessions - one on each screen.
The alternative to that is xinerama, but that kills xrandr which is meanwhile a silent dependency for a lot of X11 clients (most fat DEs blatantly expect its presence) or … xrandr offloading.
On top of that from your description and by most common setups, you've cross-configured the outputs (ie. tried to make the outputs run on the GPU they're not wired to)

my dual monitor setup did seem to reduce performance on my games

Please elaborate on the problem and remove your xorg configs and post the xorg log.

Offline

#3 2024-07-03 15:08:51

NightDazer22
Member
Registered: 2024-06-14
Posts: 13

Re: on trying to have dual monitors using different GPUs

Please elaborate on the problem

i once ran black mesa just as a test on my setup, apparently even on lowest settings i would get at best around 30 fps, same with marvel's spiderman. i then made it so that i would only use one screen then ran black mesa and it ran pretty well on up to high settings iirc

Offline

#4 2024-07-03 22:17:27

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

Re: on trying to have dual monitors using different GPUs

This very much sounds like a vsync issue, but you'll have to be more specific about the setup (where what outputs are connected, what GPU you ran the session and game on and what kind of session/compositor you're running) - your xorg log will know where the outputs are connected and what GPU you're running the X11 server on.

Offline

#5 2024-07-04 11:16:10

NightDazer22
Member
Registered: 2024-06-14
Posts: 13

Re: on trying to have dual monitors using different GPUs

this should be it. this is from when i was playing black mesa

[zoroark@archlinux ~]$ cat /var/log/Xorg.0.log
[     8.688] 
X.Org X Server 1.21.1.13
X Protocol Version 11, Revision 0
[     8.688] Current Operating System: Linux archlinux 6.9.6-arch1-1 #1 SMP PREEMPT_DYNAMIC Fri, 21 Jun 2024 19:49:19 +0000 x86_64
[     8.688] Kernel command line: initrd=\initramfs-linux.img root=PARTUUID=ac6f0ebc-bb16-4d33-bf63-328585898bad zswap.enabled=0 rw rootfstype=ext4
[     8.688]  
[     8.688] Current version of pixman: 0.43.4
[     8.688]    Before reporting problems, check http://wiki.x.org
        to make sure that you have the latest version.
[     8.688] Markers: (--) probed, (**) from config file, (==) default setting,
        (++) from command line, (!!) notice, (II) informational,
        (WW) warning, (EE) error, (NI) not implemented, (??) unknown.
[     8.688] (==) Log file: "/var/log/Xorg.0.log", Time: Thu Jul  4 18:33:36 2024
[     8.690] (==) Using config file: "/etc/X11/xorg.conf"
[     8.690] (==) Using config directory: "/etc/X11/xorg.conf.d"
[     8.690] (==) Using system config directory "/usr/share/X11/xorg.conf.d"
[     8.691] (==) ServerLayout "DefaultLayout"
[     8.691] (**) |-->Screen "Screen0" (0)
[     8.691] (**) |   |-->Monitor "eDP"
[     8.692] (**) Allowing byte-swapped clients
[     8.692] (==) Automatically adding devices
[     8.692] (==) Automatically enabling devices
[     8.692] (==) Automatically adding GPU devices
[     8.692] (==) Automatically binding GPU devices
[     8.692] (==) Max clients allowed: 256, resource mask: 0x1fffff
[     8.692] (WW) The directory "/usr/share/fonts/misc" does not exist.
[     8.692]    Entry deleted from font path.
[     8.692] (WW) The directory "/usr/share/fonts/OTF" does not exist.
[     8.692]    Entry deleted from font path.
[     8.693] (WW) The directory "/usr/share/fonts/Type1" does not exist.
[     8.693]    Entry deleted from font path.
[     8.694] (==) FontPath set to:
        /usr/share/fonts/TTF,
        /usr/share/fonts/100dpi,
        /usr/share/fonts/75dpi
[     8.694] (==) ModulePath set to "/usr/lib/xorg/modules"
[     8.694] (II) The server relies on udev to provide the list of input devices.
        If no devices become available, reconfigure udev or disable AutoAddDevices.
[     8.694] (II) Module ABI versions:
[     8.694]    X.Org ANSI C Emulation: 0.4
[     8.694]    X.Org Video Driver: 25.2
[     8.694]    X.Org XInput driver : 24.4
[     8.694]    X.Org Server Extension : 10.0
[     8.694] (++) using VT number 7

[     8.694] (II) systemd-logind: logind integration requires -keeptty and -keeptty was not provided, disabling logind integration
[     8.695] (II) xfree86: Adding drm device (/dev/dri/card0)
[     8.695] (II) Platform probe for /sys/devices/pci0000:00/0000:00:01.1/0000:01:00.0/drm/card0
[     8.726] (II) xfree86: Adding drm device (/dev/dri/card1)
[     8.726] (II) Platform probe for /sys/devices/pci0000:00/0000:00:08.1/0000:06:00.0/drm/card1
[     8.775] (**) OutputClass "nvidia" ModulePath extended to "/usr/lib/nvidia/xorg,/usr/lib/xorg/modules,/usr/lib/xorg/modules"
[     8.777] (--) PCI: (1@0:0:0) 10de:1f99:1025:1447 rev 161, Mem @ 0xd0000000/16777216, 0xfcc0000000/268435456, 0xfcd0000000/33554432, I/O @ 0x00003000/128, BIOS @ 0x????????/524288
[     8.777] (--) PCI:*(6@0:0:0) 1002:1636:1025:1455 rev 199, Mem @ 0xfce0000000/268435456, 0xfcf0000000/2097152, 0xd1500000/524288, I/O @ 0x00001000/256
[     8.777] (WW) Open ACPI failed (/var/run/acpid.socket) (No such file or directory)
[     8.777] (II) LoadModule: "glx"
[     8.779] (II) Loading /usr/lib/xorg/modules/extensions/libglx.so
[     8.784] (II) Module glx: vendor="X.Org Foundation"
[     8.784]    compiled for 1.21.1.13, module version = 1.0.0
[     8.784]    ABI class: X.Org Server Extension, version 10.0
[     8.784] (II) Applying OutputClass "AMDgpu" to /dev/dri/card1
[     8.784]    loading driver: amdgpu
[     8.784] (II) Applying OutputClass "nvidia" to /dev/dri/card0
[     8.784]    loading driver: nvidia
[     8.784] (==) Matched amdgpu as autoconfigured driver 0
[     8.784] (==) Matched ati as autoconfigured driver 1
[     8.784] (==) Matched nvidia as autoconfigured driver 2
[     8.784] (==) Matched nouveau as autoconfigured driver 3
[     8.784] (==) Matched nv as autoconfigured driver 4
[     8.784] (==) Matched modesetting as autoconfigured driver 5
[     8.784] (==) Matched fbdev as autoconfigured driver 6
[     8.784] (==) Matched vesa as autoconfigured driver 7
[     8.784] (==) Assigned the driver to the xf86ConfigLayout
[     8.784] (II) LoadModule: "amdgpu"
[     8.784] (II) Loading /usr/lib/xorg/modules/drivers/amdgpu_drv.so
[     8.787] (II) Module amdgpu: vendor="X.Org Foundation"
[     8.787]    compiled for 1.21.1.11, module version = 23.0.0
[     8.787]    Module class: X.Org Video Driver
[     8.787]    ABI class: X.Org Video Driver, version 25.2
[     8.787] (II) LoadModule: "ati"
[     8.787] (WW) Warning, couldn't open module ati
[     8.787] (EE) Failed to load module "ati" (module does not exist, 0)
[     8.787] (II) LoadModule: "nvidia"
[     8.787] (II) Loading /usr/lib/xorg/modules/drivers/nvidia_drv.so
[     8.790] (II) Module nvidia: vendor="NVIDIA Corporation"
[     8.790]    compiled for 1.6.99.901, module version = 1.0.0
[     8.790]    Module class: X.Org Video Driver
[     8.791] (II) LoadModule: "nouveau"
[     8.791] (WW) Warning, couldn't open module nouveau
[     8.791] (EE) Failed to load module "nouveau" (module does not exist, 0)
[     8.791] (II) LoadModule: "nv"
[     8.791] (WW) Warning, couldn't open module nv
[     8.791] (EE) Failed to load module "nv" (module does not exist, 0)
[     8.791] (II) LoadModule: "modesetting"
[     8.791] (II) Loading /usr/lib/xorg/modules/drivers/modesetting_drv.so
[     8.792] (II) Module modesetting: vendor="X.Org Foundation"
[     8.792]    compiled for 1.21.1.13, module version = 1.21.1
[     8.792]    Module class: X.Org Video Driver
[     8.792]    ABI class: X.Org Video Driver, version 25.2
[     8.792] (II) LoadModule: "fbdev"
[     8.792] (WW) Warning, couldn't open module fbdev
[     8.792] (EE) Failed to load module "fbdev" (module does not exist, 0)
[     8.792] (II) LoadModule: "vesa"
[     8.792] (II) Loading /usr/lib/xorg/modules/drivers/vesa_drv.so
[     8.792] (II) Module vesa: vendor="X.Org Foundation"
[     8.792]    compiled for 1.21.1.11, module version = 2.6.0
[     8.792]    Module class: X.Org Video Driver
[     8.792]    ABI class: X.Org Video Driver, version 25.2
[     8.792] (II) AMDGPU: Driver for AMD Radeon:
        All GPUs supported by the amdgpu kernel driver
[     8.792] (II) NVIDIA dlloader X Driver  550.90.07  Fri May 31 09:34:34 UTC 2024
[     8.792] (II) NVIDIA Unified Driver for all Supported NVIDIA GPUs
[     8.793] (II) modesetting: Driver for Modesetting Kernel Drivers: kms
[     8.793] (II) VESA: driver for VESA chipsets: vesa
[     8.812] (WW) Falling back to old probe method for modesetting
[     8.847] (II) Loading sub module "fb"
[     8.847] (II) LoadModule: "fb"
[     8.847] (II) Module "fb" already built-in
[     8.847] (II) Loading sub module "wfb"
[     8.847] (II) LoadModule: "wfb"
[     8.848] (II) Loading /usr/lib/xorg/modules/libwfb.so
[     8.849] (II) Module wfb: vendor="X.Org Foundation"
[     8.849]    compiled for 1.21.1.13, module version = 1.0.0
[     8.849]    ABI class: X.Org ANSI C Emulation, version 0.4
[     8.849] (II) AMDGPU(0): Creating default Display subsection in Screen section
        "Screen0" for depth/fbbpp 24/32
[     8.849] (==) AMDGPU(0): Depth 24, (--) framebuffer bpp 32
[     8.849] (II) AMDGPU(0): Pixel depth = 24 bits stored in 4 bytes (32 bpp pixmaps)
[     8.849] (==) AMDGPU(0): Default visual is TrueColor
[     8.849] (II) Applying OutputClass "AMDgpu" options to /dev/dri/card1
[     8.849] (==) AMDGPU(0): RGB weight 888
[     8.849] (II) AMDGPU(0): Using 8 bits per RGB (8 bit DAC)
[     8.849] (--) AMDGPU(0): Chipset: "AMD Radeon Graphics" (ChipID = 0x1636)
[     8.849] (II) Loading sub module "fb"
[     8.849] (II) LoadModule: "fb"
[     8.849] (II) Module "fb" already built-in
[     8.849] (II) Loading sub module "dri2"
[     8.849] (II) LoadModule: "dri2"
[     8.849] (II) Module "dri2" already built-in
[     8.971] (II) Loading sub module "glamoregl"
[     8.971] (II) LoadModule: "glamoregl"
[     8.971] (II) Loading /usr/lib/xorg/modules/libglamoregl.so
[     8.977] (II) Module glamoregl: vendor="X.Org Foundation"
[     8.977]    compiled for 1.21.1.13, module version = 1.0.1
[     8.977]    ABI class: X.Org ANSI C Emulation, version 0.4
[     9.054] (II) AMDGPU(0): glamor X acceleration enabled on AMD Radeon Graphics (radeonsi, renoir, LLVM 17.0.6, DRM 3.57, 6.9.6-arch1-1)
[     9.054] (II) AMDGPU(0): glamor detected, initialising EGL layer.
[     9.054] (==) AMDGPU(0): TearFree property default: auto
[     9.054] (==) AMDGPU(0): VariableRefresh: disabled
[     9.054] (==) AMDGPU(0): AsyncFlipSecondaries: disabled
[     9.054] (II) AMDGPU(0): KMS Pageflipping: enabled
[     9.058] (II) AMDGPU(0): Output eDP using monitor section eDP
[     9.058] (**) AMDGPU(0): Option "Primary" "true"
[     9.076] (II) AMDGPU(0): EDID for output eDP
[     9.076] (II) AMDGPU(0): Manufacturer: BOE  Model: 819  Serial#: 0
[     9.076] (II) AMDGPU(0): Year: 2018  Week: 32
[     9.076] (II) AMDGPU(0): EDID Version: 1.4
[     9.076] (II) AMDGPU(0): Digital Display Input
[     9.076] (II) AMDGPU(0): 6 bits per channel
[     9.076] (II) AMDGPU(0): Digital interface is DisplayPort
[     9.076] (II) AMDGPU(0): Max Image Size [cm]: horiz.: 34  vert.: 19
[     9.076] (II) AMDGPU(0): Gamma: 2.20
[     9.076] (II) AMDGPU(0): No DPMS capabilities specified
[     9.076] (II) AMDGPU(0): Supported color encodings: RGB 4:4:4 
[     9.076] (II) AMDGPU(0): First detailed timing is preferred mode
[     9.076] (II) AMDGPU(0): Preferred mode is native pixel format and refresh rate
[     9.076] (II) AMDGPU(0): redX: 0.585 redY: 0.363   greenX: 0.350 greenY: 0.567
[     9.076] (II) AMDGPU(0): blueX: 0.162 blueY: 0.123   whiteX: 0.312 whiteY: 0.328
[     9.076] (II) AMDGPU(0): Manufacturer's mask: 0
[     9.076] (II) AMDGPU(0): Supported detailed timing:
[     9.076] (II) AMDGPU(0): clock: 151.3 MHz   Image Size:  344 x 194 mm
[     9.076] (II) AMDGPU(0): h_active: 1920  h_sync: 1968  h_sync_end 2000 h_blank_end 2212 h_border: 0
[     9.076] (II) AMDGPU(0): v_active: 1080  v_sync: 1083  v_sync_end 1089 v_blanking: 1140 v_border: 0
[     9.076] (II) AMDGPU(0): Supported detailed timing:
[     9.076] (II) AMDGPU(0): clock: 121.0 MHz   Image Size:  344 x 194 mm
[     9.076] (II) AMDGPU(0): h_active: 1920  h_sync: 1968  h_sync_end 2000 h_blank_end 2212 h_border: 0
[     9.076] (II) AMDGPU(0): v_active: 1080  v_sync: 1083  v_sync_end 1089 v_blanking: 1140 v_border: 0
[     9.076] (II) AMDGPU(0):  T1WD3NV15N3D
[     9.076] (II) AMDGPU(0): Unknown vendor-specific block 0
[     9.076] (II) AMDGPU(0): EDID (in hex):
[     9.076] (II) AMDGPU(0):    00ffffffffffff0009e5190800000000
[     9.076] (II) AMDGPU(0):    201c01049522137802c9a0955d599129
[     9.076] (II) AMDGPU(0):    1f505400000001010101010101010101
[     9.076] (II) AMDGPU(0):    0101010101011a3b802471383c403020
[     9.076] (II) AMDGPU(0):    360058c21000001a482f802471383c40
[     9.076] (II) AMDGPU(0):    3020360058c21000001a000000fe0054
[     9.076] (II) AMDGPU(0):    31574433804e5631354e334400000000
[     9.076] (II) AMDGPU(0):    0000412196001000000a010a20200042
[     9.076] (II) AMDGPU(0): Printing probed modes for output eDP
[     9.076] (II) AMDGPU(0): Modeline "1920x1080"x60.0  151.30  1920 1968 2000 2212  1080 1083 1089 1140 +hsync -vsync (68.4 kHz eP)
[     9.076] (II) AMDGPU(0): Modeline "1920x1080"x48.0  121.04  1920 1968 2000 2212  1080 1083 1089 1140 +hsync -vsync (54.7 kHz e)
[     9.076] (II) AMDGPU(0): Modeline "1680x1050"x60.0  151.30  1680 1968 2000 2212  1050 1083 1089 1140 +hsync -vsync (68.4 kHz e)
[     9.076] (II) AMDGPU(0): Modeline "1280x1024"x60.0  151.30  1280 1968 2000 2212  1024 1083 1089 1140 +hsync -vsync (68.4 kHz e)
[     9.076] (II) AMDGPU(0): Modeline "1440x900"x60.0  151.30  1440 1968 2000 2212  900 1083 1089 1140 +hsync -vsync (68.4 kHz e)
[     9.076] (II) AMDGPU(0): Modeline "1280x800"x60.0  151.30  1280 1968 2000 2212  800 1083 1089 1140 +hsync -vsync (68.4 kHz e)
[     9.076] (II) AMDGPU(0): Modeline "1280x720"x60.0  151.30  1280 1968 2000 2212  720 1083 1089 1140 +hsync -vsync (68.4 kHz e)
[     9.076] (II) AMDGPU(0): Modeline "1024x768"x60.0  151.30  1024 1968 2000 2212  768 1083 1089 1140 +hsync -vsync (68.4 kHz e)
[     9.076] (II) AMDGPU(0): Modeline "800x600"x60.0  151.30  800 1968 2000 2212  600 1083 1089 1140 +hsync -vsync (68.4 kHz e)
[     9.076] (II) AMDGPU(0): Modeline "640x480"x60.0  151.30  640 1968 2000 2212  480 1083 1089 1140 +hsync -vsync (68.4 kHz e)
[     9.076] (II) AMDGPU(0): Output eDP connected
[     9.076] (II) AMDGPU(0): Using exact sizes for initial modes
[     9.076] (II) AMDGPU(0): Output eDP using initial mode 1920x1080 +0+0
[     9.076] (II) AMDGPU(0): mem size init: gart size :1df2bd000 vram size: s:1df68000 visible:1df68000
[     9.076] (==) AMDGPU(0): DPI set to (96, 96)
[     9.076] (==) AMDGPU(0): Using gamma correction (1.0, 1.0, 1.0)
[     9.076] (II) Loading sub module "ramdac"
[     9.076] (II) LoadModule: "ramdac"
[     9.076] (II) Module "ramdac" already built-in
[     9.076] (==) NVIDIA(G0): Depth 24, (==) framebuffer bpp 32
[     9.076] (==) NVIDIA(G0): RGB weight 888
[     9.076] (==) NVIDIA(G0): Default visual is TrueColor
[     9.076] (==) NVIDIA(G0): Using gamma correction (1.0, 1.0, 1.0)
[     9.076] (II) Applying OutputClass "nvidia" options to /dev/dri/card0
[     9.076] (**) NVIDIA(G0): Option "AllowEmptyInitialConfiguration"
[     9.076] (**) NVIDIA(G0): Enabling 2D acceleration
[     9.076] (II) Loading sub module "glxserver_nvidia"
[     9.076] (II) LoadModule: "glxserver_nvidia"
[     9.076] (II) Loading /usr/lib/nvidia/xorg/libglxserver_nvidia.so
[     9.108] (II) Module glxserver_nvidia: vendor="NVIDIA Corporation"
[     9.108]    compiled for 1.6.99.901, module version = 1.0.0
[     9.108]    Module class: X.Org Server Extension
[     9.108] (II) NVIDIA GLX Module  550.90.07  Fri May 31 09:34:56 UTC 2024
[     9.108] (II) NVIDIA: The X server supports PRIME Render Offload.
[     9.109] (--) NVIDIA(0): Valid display device(s) on GPU-0 at PCI:1:0:0
[     9.109] (--) NVIDIA(0):     DFP-0 (boot)
[     9.110] (II) NVIDIA(G0): NVIDIA GPU NVIDIA GeForce GTX 1650 (TU117-A) at PCI:1:0:0
[     9.110] (II) NVIDIA(G0):     (GPU-0)
[     9.110] (--) NVIDIA(G0): Memory: 4194304 kBytes
[     9.110] (--) NVIDIA(G0): VideoBIOS: 90.17.48.00.0f
[     9.110] (II) NVIDIA(G0): Detected PCI Express Link width: 16X
[     9.154] (--) NVIDIA(GPU-0): MDA EG24S1 (DFP-0): connected
[     9.154] (--) NVIDIA(GPU-0): MDA EG24S1 (DFP-0): Internal TMDS
[     9.154] (--) NVIDIA(GPU-0): MDA EG24S1 (DFP-0): 600.0 MHz maximum pixel clock
[     9.154] (--) NVIDIA(GPU-0): 
[     9.202] (II) NVIDIA(G0): Validated MetaModes:
[     9.202] (II) NVIDIA(G0):     "NULL"
[     9.202] (II) NVIDIA(G0): Virtual screen size determined to be 640 x 480
[     9.368] (WW) NVIDIA(G0): Cannot find size of first mode for MDA EG24S1 (DFP-0); cannot
[     9.368] (WW) NVIDIA(G0):     compute DPI from MDA EG24S1 (DFP-0)'s EDID.
[     9.368] (==) NVIDIA(G0): DPI set to (75, 75); computed from built-in default
[     9.368] (II) UnloadModule: "modesetting"
[     9.368] (II) Unloading modesetting
[     9.368] (II) UnloadModule: "vesa"
[     9.368] (II) Unloading vesa
[     9.369] (II) AMDGPU(0): [DRI2] Setup complete
[     9.369] (II) AMDGPU(0): [DRI2]   DRI driver: radeonsi
[     9.369] (II) AMDGPU(0): [DRI2]   VDPAU driver: radeonsi
[     9.425] (II) AMDGPU(0): Front buffer pitch: 7680 bytes
[     9.426] (II) AMDGPU(0): SYNC extension fences enabled
[     9.426] (II) AMDGPU(0): Present extension enabled
[     9.426] (==) AMDGPU(0): DRI3 enabled
[     9.426] (==) AMDGPU(0): Backing store enabled
[     9.426] (II) AMDGPU(0): Direct rendering enabled
[     9.438] (II) AMDGPU(0): Use GLAMOR acceleration.
[     9.438] (II) AMDGPU(0): Acceleration enabled
[     9.438] (==) AMDGPU(0): DPMS enabled
[     9.438] (==) AMDGPU(0): Silken mouse enabled
[     9.438] (II) AMDGPU(0): Set up textured video (glamor)
[     9.456] (WW) AMDGPU(0): Option "HotplugDriver" is not used
[     9.456] (WW) AMDGPU(0): Option "Primary" is not used
[     9.456] (WW) AMDGPU(0): Option "Monitor-HDMI-1-0" is not used
[     9.457] (II) NVIDIA: Reserving 24576.00 MB of virtual memory for indirect memory
[     9.457] (II) NVIDIA:     access.
[     9.466] (II) NVIDIA(G0): ACPI: failed to connect to the ACPI event daemon; the daemon
[     9.466] (II) NVIDIA(G0):     may not be running or the "AcpidSocketPath" X
[     9.466] (II) NVIDIA(G0):     configuration option may not be set correctly.  When the
[     9.466] (II) NVIDIA(G0):     ACPI event daemon is available, the NVIDIA X driver will
[     9.466] (II) NVIDIA(G0):     try to use it to receive ACPI event notifications.  For
[     9.466] (II) NVIDIA(G0):     details, please see the "ConnectToAcpid" and
[     9.466] (II) NVIDIA(G0):     "AcpidSocketPath" X configuration options in Appendix B: X
[     9.466] (II) NVIDIA(G0):     Config Options in the README.
[     9.482] (II) NVIDIA(G0): Setting mode "NULL"
[     9.496] (==) NVIDIA(G0): Disabling shared memory pixmaps
[     9.496] (==) NVIDIA(G0): Backing store enabled
[     9.496] (==) NVIDIA(G0): Silken mouse enabled
[     9.496] (==) NVIDIA(G0): DPMS enabled
[     9.497] (II) Loading sub module "dri2"
[     9.497] (II) LoadModule: "dri2"
[     9.497] (II) Module "dri2" already built-in
[     9.497] (II) NVIDIA(G0): [DRI2] Setup complete
[     9.497] (II) NVIDIA(G0): [DRI2]   VDPAU driver: nvidia
[     9.497] (II) Initializing extension Generic Event Extension
[     9.497] (II) Initializing extension SHAPE
[     9.497] (II) Initializing extension MIT-SHM
[     9.497] (II) Initializing extension XInputExtension
[     9.497] (II) Initializing extension XTEST
[     9.497] (II) Initializing extension BIG-REQUESTS
[     9.497] (II) Initializing extension SYNC
[     9.497] (II) Initializing extension XKEYBOARD
[     9.497] (II) Initializing extension XC-MISC
[     9.498] (II) Initializing extension SECURITY
[     9.498] (II) Initializing extension XFIXES
[     9.498] (II) Initializing extension RENDER
[     9.498] (II) Initializing extension RANDR
[     9.498] (II) Initializing extension COMPOSITE
[     9.498] (II) Initializing extension DAMAGE
[     9.498] (II) Initializing extension MIT-SCREEN-SAVER
[     9.498] (II) Initializing extension DOUBLE-BUFFER
[     9.498] (II) Initializing extension RECORD
[     9.498] (II) Initializing extension DPMS
[     9.498] (II) Initializing extension Present
[     9.498] (II) Initializing extension DRI3
[     9.498] (II) Initializing extension X-Resource
[     9.498] (II) Initializing extension XVideo
[     9.498] (II) Initializing extension XVideo-MotionCompensation
[     9.498] (II) Initializing extension GLX
[     9.498] (II) Initializing extension GLX
[     9.498] (II) Indirect GLX disabled.
[     9.503] (II) AIGLX: Loaded and initialized radeonsi
[     9.503] (II) GLX: Initialized DRI2 GL provider for screen 0
[     9.503] (II) Initializing extension XFree86-VidModeExtension
[     9.503] (II) Initializing extension XFree86-DGA
[     9.503] (II) Initializing extension XFree86-DRI
[     9.503] (II) Initializing extension DRI2
[     9.503] (II) Initializing extension NV-GLX
[     9.503] (II) Initializing extension NV-CONTROL
[     9.503] (II) AMDGPU(0): Setting screen physical size to 508 x 285
[     9.606] (II) config/udev: Adding input device Acer Wireless Radio Control (/dev/input/event5)
[     9.606] (**) Acer Wireless Radio Control: Applying InputClass "libinput keyboard catchall"
[     9.606] (**) Acer Wireless Radio Control: Applying InputClass "system-keyboard"
[     9.606] (II) LoadModule: "libinput"
[     9.606] (II) Loading /usr/lib/xorg/modules/input/libinput_drv.so
[     9.608] (II) Module libinput: vendor="X.Org Foundation"
[     9.608]    compiled for 1.21.1.8, module version = 1.4.0
[     9.608]    Module class: X.Org XInput Driver
[     9.608]    ABI class: X.Org XInput driver, version 24.4
[     9.608] (II) Using input driver 'libinput' for 'Acer Wireless Radio Control'
[     9.608] (**) Acer Wireless Radio Control: always reports core events
[     9.608] (**) Option "Device" "/dev/input/event5"
[     9.614] (II) event5  - Acer Wireless Radio Control: is tagged by udev as: Keyboard
[     9.614] (II) event5  - Acer Wireless Radio Control: device is a keyboard
[     9.614] (II) event5  - Acer Wireless Radio Control: device removed
[     9.660] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/10251229:00/input/input5/event5"
[     9.660] (II) XINPUT: Adding extended input device "Acer Wireless Radio Control" (type: KEYBOARD, id 6)
[     9.660] (**) Option "xkb_model" "pc105"
[     9.660] (**) Option "xkb_layout" "es"
[     9.660] (**) Option "xkb_options" "terminate:ctrl_alt_bksp"
[     9.677] (II) event5  - Acer Wireless Radio Control: is tagged by udev as: Keyboard
[     9.677] (II) event5  - Acer Wireless Radio Control: device is a keyboard
[     9.677] (II) config/udev: Adding input device Power Button (/dev/input/event3)
[     9.677] (**) Power Button: Applying InputClass "libinput keyboard catchall"
[     9.677] (**) Power Button: Applying InputClass "system-keyboard"
[     9.677] (II) Using input driver 'libinput' for 'Power Button'
[     9.677] (**) Power Button: always reports core events
[     9.677] (**) Option "Device" "/dev/input/event3"
[     9.678] (II) event3  - Power Button: is tagged by udev as: Keyboard
[     9.678] (II) event3  - Power Button: device is a keyboard
[     9.678] (II) event3  - Power Button: device removed
[     9.743] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/LNXPWRBN:00/input/input3/event3"
[     9.743] (II) XINPUT: Adding extended input device "Power Button" (type: KEYBOARD, id 7)
[     9.743] (**) Option "xkb_model" "pc105"
[     9.743] (**) Option "xkb_layout" "es"
[     9.743] (**) Option "xkb_options" "terminate:ctrl_alt_bksp"
[     9.744] (II) event3  - Power Button: is tagged by udev as: Keyboard
[     9.744] (II) event3  - Power Button: device is a keyboard
[     9.745] (II) config/udev: Adding input device Video Bus (/dev/input/event7)
[     9.745] (**) Video Bus: Applying InputClass "libinput keyboard catchall"
[     9.745] (**) Video Bus: Applying InputClass "system-keyboard"
[     9.745] (II) Using input driver 'libinput' for 'Video Bus'
[     9.745] (**) Video Bus: always reports core events
[     9.745] (**) Option "Device" "/dev/input/event7"
[     9.746] (II) event7  - Video Bus: is tagged by udev as: Keyboard
[     9.746] (II) event7  - Video Bus: device is a keyboard
[     9.746] (II) event7  - Video Bus: device removed
[     9.813] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:00/LNXVIDEO:00/input/input7/event7"
[     9.813] (II) XINPUT: Adding extended input device "Video Bus" (type: KEYBOARD, id 8)
[     9.813] (**) Option "xkb_model" "pc105"
[     9.813] (**) Option "xkb_layout" "es"
[     9.813] (**) Option "xkb_options" "terminate:ctrl_alt_bksp"
[     9.815] (II) event7  - Video Bus: is tagged by udev as: Keyboard
[     9.815] (II) event7  - Video Bus: device is a keyboard
[     9.816] (II) config/udev: Adding input device Video Bus (/dev/input/event8)
[     9.816] (**) Video Bus: Applying InputClass "libinput keyboard catchall"
[     9.816] (**) Video Bus: Applying InputClass "system-keyboard"
[     9.816] (II) Using input driver 'libinput' for 'Video Bus'
[     9.816] (**) Video Bus: always reports core events
[     9.816] (**) Option "Device" "/dev/input/event8"
[     9.817] (II) event8  - Video Bus: is tagged by udev as: Keyboard
[     9.817] (II) event8  - Video Bus: device is a keyboard
[     9.817] (II) event8  - Video Bus: device removed
[     9.890] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:0f/LNXVIDEO:01/input/input8/event8"
[     9.890] (II) XINPUT: Adding extended input device "Video Bus" (type: KEYBOARD, id 9)
[     9.890] (**) Option "xkb_model" "pc105"
[     9.890] (**) Option "xkb_layout" "es"
[     9.890] (**) Option "xkb_options" "terminate:ctrl_alt_bksp"
[     9.892] (II) event8  - Video Bus: is tagged by udev as: Keyboard
[     9.892] (II) event8  - Video Bus: device is a keyboard
[     9.892] (II) config/udev: Adding input device Lid Switch (/dev/input/event2)
[     9.892] (II) No input driver specified, ignoring this device.
[     9.892] (II) This device may have been added with another device file.
[     9.893] (II) config/udev: Adding input device Power Button (/dev/input/event0)
[     9.893] (**) Power Button: Applying InputClass "libinput keyboard catchall"
[     9.893] (**) Power Button: Applying InputClass "system-keyboard"
[     9.893] (II) Using input driver 'libinput' for 'Power Button'
[     9.893] (**) Power Button: always reports core events
[     9.893] (**) Option "Device" "/dev/input/event0"
[     9.893] (II) event0  - Power Button: is tagged by udev as: Keyboard
[     9.893] (II) event0  - Power Button: device is a keyboard
[     9.893] (II) event0  - Power Button: device removed
[     9.937] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0C:00/input/input0/event0"
[     9.937] (II) XINPUT: Adding extended input device "Power Button" (type: KEYBOARD, id 10)
[     9.937] (**) Option "xkb_model" "pc105"
[     9.937] (**) Option "xkb_layout" "es"
[     9.937] (**) Option "xkb_options" "terminate:ctrl_alt_bksp"
[     9.938] (II) event0  - Power Button: is tagged by udev as: Keyboard
[     9.938] (II) event0  - Power Button: device is a keyboard
[     9.938] (II) config/udev: Adding input device Sleep Button (/dev/input/event1)
[     9.938] (**) Sleep Button: Applying InputClass "libinput keyboard catchall"
[     9.938] (**) Sleep Button: Applying InputClass "system-keyboard"
[     9.938] (II) Using input driver 'libinput' for 'Sleep Button'
[     9.938] (**) Sleep Button: always reports core events
[     9.938] (**) Option "Device" "/dev/input/event1"
[     9.939] (II) event1  - Sleep Button: is tagged by udev as: Keyboard
[     9.939] (II) event1  - Sleep Button: device is a keyboard
[     9.939] (II) event1  - Sleep Button: device removed
[     9.963] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0E:00/input/input1/event1"
[     9.963] (II) XINPUT: Adding extended input device "Sleep Button" (type: KEYBOARD, id 11)
[     9.963] (**) Option "xkb_model" "pc105"
[     9.963] (**) Option "xkb_layout" "es"
[     9.963] (**) Option "xkb_options" "terminate:ctrl_alt_bksp"
[     9.965] (II) event1  - Sleep Button: is tagged by udev as: Keyboard
[     9.965] (II) event1  - Sleep Button: device is a keyboard
[     9.965] (II) config/udev: Adding input device HDA NVidia HDMI/DP,pcm=3 (/dev/input/event12)
[     9.965] (II) No input driver specified, ignoring this device.
[     9.965] (II) This device may have been added with another device file.
[     9.966] (II) config/udev: Adding input device HDA NVidia HDMI/DP,pcm=7 (/dev/input/event13)
[     9.966] (II) No input driver specified, ignoring this device.
[     9.966] (II) This device may have been added with another device file.
[     9.966] (II) config/udev: Adding input device HDA NVidia HDMI/DP,pcm=8 (/dev/input/event14)
[     9.966] (II) No input driver specified, ignoring this device.
[     9.966] (II) This device may have been added with another device file.
[     9.966] (II) config/udev: Adding input device HDA NVidia HDMI/DP,pcm=9 (/dev/input/event15)
[     9.966] (II) No input driver specified, ignoring this device.
[     9.966] (II) This device may have been added with another device file.
[     9.967] (II) config/udev: Adding input device HD-Audio Generic Headphone (/dev/input/event16)
[     9.967] (II) No input driver specified, ignoring this device.
[     9.967] (II) This device may have been added with another device file.
[     9.967] (II) config/udev: Adding input device ELAN050A:01 04F3:3158 Mouse (/dev/input/event9)
[     9.967] (**) ELAN050A:01 04F3:3158 Mouse: Applying InputClass "libinput pointer catchall"
[     9.967] (II) Using input driver 'libinput' for 'ELAN050A:01 04F3:3158 Mouse'
[     9.967] (**) ELAN050A:01 04F3:3158 Mouse: always reports core events
[     9.967] (**) Option "Device" "/dev/input/event9"
[     9.968] (II) event9  - ELAN050A:01 04F3:3158 Mouse: is tagged by udev as: Mouse Pointingstick
[     9.968] (II) event9  - ELAN050A:01 04F3:3158 Mouse: device is a pointer
[     9.969] (II) event9  - ELAN050A:01 04F3:3158 Mouse: device removed
[    10.020] (II) libinput: ELAN050A:01 04F3:3158 Mouse: Step value 0 was provided, libinput Fallback acceleration function is used.
[    10.020] (II) libinput: ELAN050A:01 04F3:3158 Mouse: Step value 0 was provided, libinput Fallback acceleration function is used.
[    10.020] (II) libinput: ELAN050A:01 04F3:3158 Mouse: Step value 0 was provided, libinput Fallback acceleration function is used.
[    10.020] (**) Option "config_info" "udev:/sys/devices/platform/AMDI0010:03/i2c-0/i2c-ELAN050A:01/0018:04F3:3158.0001/input/input13/event9"
[    10.020] (II) XINPUT: Adding extended input device "ELAN050A:01 04F3:3158 Mouse" (type: MOUSE, id 12)
[    10.020] (**) Option "AccelerationScheme" "none"
[    10.020] (**) ELAN050A:01 04F3:3158 Mouse: (accel) selected scheme none/0
[    10.020] (**) ELAN050A:01 04F3:3158 Mouse: (accel) acceleration factor: 2.000
[    10.020] (**) ELAN050A:01 04F3:3158 Mouse: (accel) acceleration threshold: 4
[    10.021] (II) event9  - ELAN050A:01 04F3:3158 Mouse: is tagged by udev as: Mouse Pointingstick
[    10.022] (II) event9  - ELAN050A:01 04F3:3158 Mouse: device is a pointer
[    10.023] (II) config/udev: Adding input device ELAN050A:01 04F3:3158 Mouse (/dev/input/mouse0)
[    10.023] (II) No input driver specified, ignoring this device.
[    10.023] (II) This device may have been added with another device file.
[    10.023] (II) config/udev: Adding input device ELAN050A:01 04F3:3158 Touchpad (/dev/input/event10)
[    10.023] (**) ELAN050A:01 04F3:3158 Touchpad: Applying InputClass "libinput touchpad catchall"
[    10.023] (II) Using input driver 'libinput' for 'ELAN050A:01 04F3:3158 Touchpad'
[    10.023] (**) ELAN050A:01 04F3:3158 Touchpad: always reports core events
[    10.023] (**) Option "Device" "/dev/input/event10"
[    10.024] (II) event10 - ELAN050A:01 04F3:3158 Touchpad: is tagged by udev as: Touchpad
[    10.025] (II) event10 - ELAN050A:01 04F3:3158 Touchpad: device is a touchpad
[    10.025] (II) event10 - ELAN050A:01 04F3:3158 Touchpad: device removed
[    10.093] (II) libinput: ELAN050A:01 04F3:3158 Touchpad: Step value 0 was provided, libinput Fallback acceleration function is used.
[    10.093] (II) libinput: ELAN050A:01 04F3:3158 Touchpad: Step value 0 was provided, libinput Fallback acceleration function is used.
[    10.093] (II) libinput: ELAN050A:01 04F3:3158 Touchpad: Step value 0 was provided, libinput Fallback acceleration function is used.
[    10.094] (**) Option "config_info" "udev:/sys/devices/platform/AMDI0010:03/i2c-0/i2c-ELAN050A:01/0018:04F3:3158.0001/input/input15/event10"
[    10.094] (II) XINPUT: Adding extended input device "ELAN050A:01 04F3:3158 Touchpad" (type: TOUCHPAD, id 13)
[    10.096] (**) Option "AccelerationScheme" "none"
[    10.096] (**) ELAN050A:01 04F3:3158 Touchpad: (accel) selected scheme none/0
[    10.096] (**) ELAN050A:01 04F3:3158 Touchpad: (accel) acceleration factor: 2.000
[    10.096] (**) ELAN050A:01 04F3:3158 Touchpad: (accel) acceleration threshold: 4
[    10.096] (II) event10 - ELAN050A:01 04F3:3158 Touchpad: is tagged by udev as: Touchpad
[    10.098] (II) event10 - ELAN050A:01 04F3:3158 Touchpad: device is a touchpad
[    10.099] (II) config/udev: Adding input device ELAN050A:01 04F3:3158 Touchpad (/dev/input/mouse1)
[    10.099] (II) No input driver specified, ignoring this device.
[    10.099] (II) This device may have been added with another device file.
[    10.099] (II) config/udev: Adding input device AT Translated Set 2 keyboard (/dev/input/event4)
[    10.099] (**) AT Translated Set 2 keyboard: Applying InputClass "libinput keyboard catchall"
[    10.099] (**) AT Translated Set 2 keyboard: Applying InputClass "system-keyboard"
[    10.099] (II) Using input driver 'libinput' for 'AT Translated Set 2 keyboard'
[    10.099] (**) AT Translated Set 2 keyboard: always reports core events
[    10.099] (**) Option "Device" "/dev/input/event4"
[    10.100] (II) event4  - AT Translated Set 2 keyboard: is tagged by udev as: Keyboard
[    10.100] (II) event4  - AT Translated Set 2 keyboard: device is a keyboard
[    10.100] (II) event4  - AT Translated Set 2 keyboard: device removed
[    10.140] (**) Option "config_info" "udev:/sys/devices/platform/i8042/serio0/input/input4/event4"
[    10.140] (II) XINPUT: Adding extended input device "AT Translated Set 2 keyboard" (type: KEYBOARD, id 14)
[    10.140] (**) Option "xkb_model" "pc105"
[    10.140] (**) Option "xkb_layout" "es"
[    10.140] (**) Option "xkb_options" "terminate:ctrl_alt_bksp"
[    10.141] (II) event4  - AT Translated Set 2 keyboard: is tagged by udev as: Keyboard
[    10.141] (II) event4  - AT Translated Set 2 keyboard: device is a keyboard
[    10.142] (II) config/udev: Adding input device PC Speaker (/dev/input/event6)
[    10.142] (II) No input driver specified, ignoring this device.
[    10.142] (II) This device may have been added with another device file.
[    10.145] (II) config/udev: Adding input device Acer WMI hotkeys (/dev/input/event11)
[    10.145] (**) Acer WMI hotkeys: Applying InputClass "libinput keyboard catchall"
[    10.145] (**) Acer WMI hotkeys: Applying InputClass "system-keyboard"
[    10.145] (II) Using input driver 'libinput' for 'Acer WMI hotkeys'
[    10.145] (**) Acer WMI hotkeys: always reports core events
[    10.145] (**) Option "Device" "/dev/input/event11"
[    10.145] (II) event11 - Acer WMI hotkeys: is tagged by udev as: Keyboard
[    10.145] (II) event11 - Acer WMI hotkeys: device is a keyboard
[    10.145] (II) event11 - Acer WMI hotkeys: device removed
[    10.187] (**) Option "config_info" "udev:/sys/devices/virtual/input/input12/event11"
[    10.187] (II) XINPUT: Adding extended input device "Acer WMI hotkeys" (type: KEYBOARD, id 15)
[    10.187] (**) Option "xkb_model" "pc105"
[    10.187] (**) Option "xkb_layout" "es"
[    10.187] (**) Option "xkb_options" "terminate:ctrl_alt_bksp"
[    10.188] (II) event11 - Acer WMI hotkeys: is tagged by udev as: Keyboard
[    10.188] (II) event11 - Acer WMI hotkeys: device is a keyboard
[    64.823] (II) AMDGPU(0): EDID vendor "BOE", prod id 2073
[    64.823] (II) AMDGPU(0): Printing DDC gathered Modelines:
[    64.823] (II) AMDGPU(0): Modeline "1920x1080"x0.0  151.30  1920 1968 2000 2212  1080 1083 1089 1140 +hsync -vsync (68.4 kHz eP)
[    64.823] (II) AMDGPU(0): Modeline "1920x1080"x0.0  121.04  1920 1968 2000 2212  1080 1083 1089 1140 +hsync -vsync (54.7 kHz e)
[    64.828] (II) AMDGPU(0): EDID vendor "BOE", prod id 2073
[    64.828] (II) AMDGPU(0): Printing DDC gathered Modelines:
[    64.828] (II) AMDGPU(0): Modeline "1920x1080"x0.0  151.30  1920 1968 2000 2212  1080 1083 1089 1140 +hsync -vsync (68.4 kHz eP)
[    64.828] (II) AMDGPU(0): Modeline "1920x1080"x0.0  121.04  1920 1968 2000 2212  1080 1083 1089 1140 +hsync -vsync (54.7 kHz e)
[    64.873] (--) NVIDIA(GPU-0): MDA EG24S1 (DFP-0): connected
[    64.873] (--) NVIDIA(GPU-0): MDA EG24S1 (DFP-0): Internal TMDS
[    64.873] (--) NVIDIA(GPU-0): MDA EG24S1 (DFP-0): 600.0 MHz maximum pixel clock
[    64.873] (--) NVIDIA(GPU-0): 
[    67.717] (II) AMDGPU(0): EDID vendor "BOE", prod id 2073
[    67.717] (II) AMDGPU(0): Printing DDC gathered Modelines:
[    67.717] (II) AMDGPU(0): Modeline "1920x1080"x0.0  151.30  1920 1968 2000 2212  1080 1083 1089 1140 +hsync -vsync (68.4 kHz eP)
[    67.717] (II) AMDGPU(0): Modeline "1920x1080"x0.0  121.04  1920 1968 2000 2212  1080 1083 1089 1140 +hsync -vsync (54.7 kHz e)
[    67.721] (II) AMDGPU(0): EDID vendor "BOE", prod id 2073
[    67.721] (II) AMDGPU(0): Printing DDC gathered Modelines:
[    67.721] (II) AMDGPU(0): Modeline "1920x1080"x0.0  151.30  1920 1968 2000 2212  1080 1083 1089 1140 +hsync -vsync (68.4 kHz eP)
[    67.721] (II) AMDGPU(0): Modeline "1920x1080"x0.0  121.04  1920 1968 2000 2212  1080 1083 1089 1140 +hsync -vsync (54.7 kHz e)
[    67.766] (--) NVIDIA(GPU-0): MDA EG24S1 (DFP-0): connected
[    67.766] (--) NVIDIA(GPU-0): MDA EG24S1 (DFP-0): Internal TMDS
[    67.766] (--) NVIDIA(GPU-0): MDA EG24S1 (DFP-0): 600.0 MHz maximum pixel clock
[    67.766] (--) NVIDIA(GPU-0): 
[    67.943] (II) AMDGPU(0): Allocate new frame buffer 3840x1080
[    67.944] (II) AMDGPU(0):  => pitch 15360 bytes
[    67.954] (WW) AMDGPU(0): flip queue failed: Invalid argument
[    67.954] (WW) AMDGPU(0): Page flip failed: Invalid argument
[    68.012] randr: falling back to unsynchronized pixmap sharing
[    68.024] (II) NVIDIA(G0): Setting mode "HDMI-1-0: nvidia-auto-select @1920x1080 +0+0 {AllowGSYNC=Off, ViewPortIn=1920x1080, ViewPortOut=1920x1080+0+0}"
[    70.347] (II) config/udev: Adding input device Logitech USB Optical Mouse (/dev/input/mouse2)
[    70.347] (II) No input driver specified, ignoring this device.
[    70.347] (II) This device may have been added with another device file.
[    70.393] (II) config/udev: Adding input device Logitech USB Optical Mouse (/dev/input/event17)
[    70.393] (**) Logitech USB Optical Mouse: Applying InputClass "libinput pointer catchall"
[    70.393] (II) Using input driver 'libinput' for 'Logitech USB Optical Mouse'
[    70.393] (**) Logitech USB Optical Mouse: always reports core events
[    70.393] (**) Option "Device" "/dev/input/event17"
[    70.394] (II) event17 - Logitech USB Optical Mouse: is tagged by udev as: Mouse
[    70.395] (II) event17 - Logitech USB Optical Mouse: device is a pointer
[    70.395] (II) event17 - Logitech USB Optical Mouse: device removed
[    70.457] (II) libinput: Logitech USB Optical Mouse: Step value 0 was provided, libinput Fallback acceleration function is used.
[    70.457] (II) libinput: Logitech USB Optical Mouse: Step value 0 was provided, libinput Fallback acceleration function is used.
[    70.457] (II) libinput: Logitech USB Optical Mouse: Step value 0 was provided, libinput Fallback acceleration function is used.
[    70.457] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:08.1/0000:06:00.3/usb1/1-2/1-2.3/1-2.3:1.0/0003:046D:C077.0002/input/input21/event17"
[    70.457] (II) XINPUT: Adding extended input device "Logitech USB Optical Mouse" (type: MOUSE, id 16)
[    70.457] (**) Option "AccelerationScheme" "none"
[    70.458] (**) Logitech USB Optical Mouse: (accel) selected scheme none/0
[    70.458] (**) Logitech USB Optical Mouse: (accel) acceleration factor: 2.000
[    70.458] (**) Logitech USB Optical Mouse: (accel) acceleration threshold: 4
[    70.459] (II) event17 - Logitech USB Optical Mouse: is tagged by udev as: Mouse
[    70.459] (II) event17 - Logitech USB Optical Mouse: device is a pointer
[   157.134] (II) AMDGPU(0): EDID vendor "BOE", prod id 2073
[   157.134] (II) AMDGPU(0): Printing DDC gathered Modelines:
[   157.134] (II) AMDGPU(0): Modeline "1920x1080"x0.0  151.30  1920 1968 2000 2212  1080 1083 1089 1140 +hsync -vsync (68.4 kHz eP)
[   157.134] (II) AMDGPU(0): Modeline "1920x1080"x0.0  121.04  1920 1968 2000 2212  1080 1083 1089 1140 +hsync -vsync (54.7 kHz e)
[   157.138] (II) AMDGPU(0): EDID vendor "BOE", prod id 2073
[   157.138] (II) AMDGPU(0): Printing DDC gathered Modelines:
[   157.138] (II) AMDGPU(0): Modeline "1920x1080"x0.0  151.30  1920 1968 2000 2212  1080 1083 1089 1140 +hsync -vsync (68.4 kHz eP)
[   157.138] (II) AMDGPU(0): Modeline "1920x1080"x0.0  121.04  1920 1968 2000 2212  1080 1083 1089 1140 +hsync -vsync (54.7 kHz e)
[   157.182] (--) NVIDIA(GPU-0): MDA EG24S1 (DFP-0): connected
[   157.182] (--) NVIDIA(GPU-0): MDA EG24S1 (DFP-0): Internal TMDS
[   157.182] (--) NVIDIA(GPU-0): MDA EG24S1 (DFP-0): 600.0 MHz maximum pixel clock
[   157.182] (--) NVIDIA(GPU-0): 
[   220.020] (II) AMDGPU(0): EDID vendor "BOE", prod id 2073
[   220.020] (II) AMDGPU(0): Printing DDC gathered Modelines:
[   220.020] (II) AMDGPU(0): Modeline "1920x1080"x0.0  151.30  1920 1968 2000 2212  1080 1083 1089 1140 +hsync -vsync (68.4 kHz eP)
[   220.020] (II) AMDGPU(0): Modeline "1920x1080"x0.0  121.04  1920 1968 2000 2212  1080 1083 1089 1140 +hsync -vsync (54.7 kHz e)
[   220.023] (II) AMDGPU(0): EDID vendor "BOE", prod id 2073
[   220.023] (II) AMDGPU(0): Printing DDC gathered Modelines:
[   220.023] (II) AMDGPU(0): Modeline "1920x1080"x0.0  151.30  1920 1968 2000 2212  1080 1083 1089 1140 +hsync -vsync (68.4 kHz eP)
[   220.023] (II) AMDGPU(0): Modeline "1920x1080"x0.0  121.04  1920 1968 2000 2212  1080 1083 1089 1140 +hsync -vsync (54.7 kHz e)
[   220.069] (--) NVIDIA(GPU-0): MDA EG24S1 (DFP-0): connected
[   220.069] (--) NVIDIA(GPU-0): MDA EG24S1 (DFP-0): Internal TMDS
[   220.069] (--) NVIDIA(GPU-0): MDA EG24S1 (DFP-0): 600.0 MHz maximum pixel clock
[   220.069] (--) NVIDIA(GPU-0): 
[   365.076] (II) AMDGPU(0): EDID vendor "BOE", prod id 2073
[   365.076] (II) AMDGPU(0): Printing DDC gathered Modelines:
[   365.076] (II) AMDGPU(0): Modeline "1920x1080"x0.0  151.30  1920 1968 2000 2212  1080 1083 1089 1140 +hsync -vsync (68.4 kHz eP)
[   365.076] (II) AMDGPU(0): Modeline "1920x1080"x0.0  121.04  1920 1968 2000 2212  1080 1083 1089 1140 +hsync -vsync (54.7 kHz e)
[   365.080] (II) AMDGPU(0): EDID vendor "BOE", prod id 2073
[   365.080] (II) AMDGPU(0): Printing DDC gathered Modelines:
[   365.080] (II) AMDGPU(0): Modeline "1920x1080"x0.0  151.30  1920 1968 2000 2212  1080 1083 1089 1140 +hsync -vsync (68.4 kHz eP)
[   365.080] (II) AMDGPU(0): Modeline "1920x1080"x0.0  121.04  1920 1968 2000 2212  1080 1083 1089 1140 +hsync -vsync (54.7 kHz e)
[   365.124] (--) NVIDIA(GPU-0): MDA EG24S1 (DFP-0): connected
[   365.124] (--) NVIDIA(GPU-0): MDA EG24S1 (DFP-0): Internal TMDS
[   365.124] (--) NVIDIA(GPU-0): MDA EG24S1 (DFP-0): 600.0 MHz maximum pixel clock
[   365.124] (--) NVIDIA(GPU-0): 
[   365.274] (II) AMDGPU(0): EDID vendor "BOE", prod id 2073
[   365.274] (II) AMDGPU(0): Printing DDC gathered Modelines:
[   365.274] (II) AMDGPU(0): Modeline "1920x1080"x0.0  151.30  1920 1968 2000 2212  1080 1083 1089 1140 +hsync -vsync (68.4 kHz eP)
[   365.274] (II) AMDGPU(0): Modeline "1920x1080"x0.0  121.04  1920 1968 2000 2212  1080 1083 1089 1140 +hsync -vsync (54.7 kHz e)
[   365.278] (II) AMDGPU(0): EDID vendor "BOE", prod id 2073
[   365.278] (II) AMDGPU(0): Printing DDC gathered Modelines:
[   365.278] (II) AMDGPU(0): Modeline "1920x1080"x0.0  151.30  1920 1968 2000 2212  1080 1083 1089 1140 +hsync -vsync (68.4 kHz eP)
[   365.278] (II) AMDGPU(0): Modeline "1920x1080"x0.0  121.04  1920 1968 2000 2212  1080 1083 1089 1140 +hsync -vsync (54.7 kHz e)
[   365.322] (--) NVIDIA(GPU-0): MDA EG24S1 (DFP-0): connected
[   365.322] (--) NVIDIA(GPU-0): MDA EG24S1 (DFP-0): Internal TMDS
[   365.322] (--) NVIDIA(GPU-0): MDA EG24S1 (DFP-0): 600.0 MHz maximum pixel clock
[   365.322] (--) NVIDIA(GPU-0): 
[   588.335] (II) AMDGPU(0): EDID vendor "BOE", prod id 2073
[   588.335] (II) AMDGPU(0): Printing DDC gathered Modelines:
[   588.335] (II) AMDGPU(0): Modeline "1920x1080"x0.0  151.30  1920 1968 2000 2212  1080 1083 1089 1140 +hsync -vsync (68.4 kHz eP)
[   588.335] (II) AMDGPU(0): Modeline "1920x1080"x0.0  121.04  1920 1968 2000 2212  1080 1083 1089 1140 +hsync -vsync (54.7 kHz e)
[   588.339] (II) AMDGPU(0): EDID vendor "BOE", prod id 2073
[   588.339] (II) AMDGPU(0): Printing DDC gathered Modelines:
[   588.339] (II) AMDGPU(0): Modeline "1920x1080"x0.0  151.30  1920 1968 2000 2212  1080 1083 1089 1140 +hsync -vsync (68.4 kHz eP)
[   588.339] (II) AMDGPU(0): Modeline "1920x1080"x0.0  121.04  1920 1968 2000 2212  1080 1083 1089 1140 +hsync -vsync (54.7 kHz e)
[   588.383] (--) NVIDIA(GPU-0): MDA EG24S1 (DFP-0): connected
[   588.383] (--) NVIDIA(GPU-0): MDA EG24S1 (DFP-0): Internal TMDS
[   588.383] (--) NVIDIA(GPU-0): MDA EG24S1 (DFP-0): 600.0 MHz maximum pixel clock
[   588.383] (--) NVIDIA(GPU-0): 
[   588.391] (II) AMDGPU(0): EDID vendor "BOE", prod id 2073
[   588.391] (II) AMDGPU(0): Printing DDC gathered Modelines:
[   588.391] (II) AMDGPU(0): Modeline "1920x1080"x0.0  151.30  1920 1968 2000 2212  1080 1083 1089 1140 +hsync -vsync (68.4 kHz eP)
[   588.391] (II) AMDGPU(0): Modeline "1920x1080"x0.0  121.04  1920 1968 2000 2212  1080 1083 1089 1140 +hsync -vsync (54.7 kHz e)
[   588.394] (II) AMDGPU(0): EDID vendor "BOE", prod id 2073
[   588.394] (II) AMDGPU(0): Printing DDC gathered Modelines:
[   588.394] (II) AMDGPU(0): Modeline "1920x1080"x0.0  151.30  1920 1968 2000 2212  1080 1083 1089 1140 +hsync -vsync (68.4 kHz eP)
[   588.394] (II) AMDGPU(0): Modeline "1920x1080"x0.0  121.04  1920 1968 2000 2212  1080 1083 1089 1140 +hsync -vsync (54.7 kHz e)
[   588.438] (--) NVIDIA(GPU-0): MDA EG24S1 (DFP-0): connected
[   588.438] (--) NVIDIA(GPU-0): MDA EG24S1 (DFP-0): Internal TMDS
[   588.438] (--) NVIDIA(GPU-0): MDA EG24S1 (DFP-0): 600.0 MHz maximum pixel clock
[   588.438] (--) NVIDIA(GPU-0): 
[   592.881] (WW) AMDGPU(0): flip queue failed: Invalid argument
[   592.881] (WW) AMDGPU(0): Page flip failed: Invalid argument
[  1038.469] (II) AMDGPU(0): EDID vendor "BOE", prod id 2073
[  1038.469] (II) AMDGPU(0): Printing DDC gathered Modelines:
[  1038.469] (II) AMDGPU(0): Modeline "1920x1080"x0.0  151.30  1920 1968 2000 2212  1080 1083 1089 1140 +hsync -vsync (68.4 kHz eP)
[  1038.469] (II) AMDGPU(0): Modeline "1920x1080"x0.0  121.04  1920 1968 2000 2212  1080 1083 1089 1140 +hsync -vsync (54.7 kHz e)
[  1038.472] (II) AMDGPU(0): EDID vendor "BOE", prod id 2073
[  1038.472] (II) AMDGPU(0): Printing DDC gathered Modelines:
[  1038.472] (II) AMDGPU(0): Modeline "1920x1080"x0.0  151.30  1920 1968 2000 2212  1080 1083 1089 1140 +hsync -vsync (68.4 kHz eP)
[  1038.472] (II) AMDGPU(0): Modeline "1920x1080"x0.0  121.04  1920 1968 2000 2212  1080 1083 1089 1140 +hsync -vsync (54.7 kHz e)
[  1038.516] (--) NVIDIA(GPU-0): MDA EG24S1 (DFP-0): connected
[  1038.516] (--) NVIDIA(GPU-0): MDA EG24S1 (DFP-0): Internal TMDS
[  1038.516] (--) NVIDIA(GPU-0): MDA EG24S1 (DFP-0): 600.0 MHz maximum pixel clock
[  1038.516] (--) NVIDIA(GPU-0): 
[  1038.522] (II) AMDGPU(0): EDID vendor "BOE", prod id 2073
[  1038.522] (II) AMDGPU(0): Printing DDC gathered Modelines:
[  1038.522] (II) AMDGPU(0): Modeline "1920x1080"x0.0  151.30  1920 1968 2000 2212  1080 1083 1089 1140 +hsync -vsync (68.4 kHz eP)
[  1038.522] (II) AMDGPU(0): Modeline "1920x1080"x0.0  121.04  1920 1968 2000 2212  1080 1083 1089 1140 +hsync -vsync (54.7 kHz e)
[  1038.525] (II) AMDGPU(0): EDID vendor "BOE", prod id 2073
[  1038.525] (II) AMDGPU(0): Printing DDC gathered Modelines:
[  1038.525] (II) AMDGPU(0): Modeline "1920x1080"x0.0  151.30  1920 1968 2000 2212  1080 1083 1089 1140 +hsync -vsync (68.4 kHz eP)
[  1038.525] (II) AMDGPU(0): Modeline "1920x1080"x0.0  121.04  1920 1968 2000 2212  1080 1083 1089 1140 +hsync -vsync (54.7 kHz e)
[  1038.569] (--) NVIDIA(GPU-0): MDA EG24S1 (DFP-0): connected
[  1038.569] (--) NVIDIA(GPU-0): MDA EG24S1 (DFP-0): Internal TMDS
[  1038.569] (--) NVIDIA(GPU-0): MDA EG24S1 (DFP-0): 600.0 MHz maximum pixel clock
[  1038.569] (--) NVIDIA(GPU-0): 
[  1042.900] (WW) AMDGPU(0): flip queue failed: Invalid argument
[  1042.900] (WW) AMDGPU(0): Page flip failed: Invalid argument

Offline

#6 2024-07-04 21:07:19

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

Re: on trying to have dual monitors using different GPUs

[     8.690] (==) Using config file: "/etc/X11/xorg.conf"

Move away that file, remove xf86-video-amdgpu and enable https://wiki.archlinux.org/title/NVIDIA … de_setting - use the "nvidia_drm.modeset=1" kernel parameter

Also we lack information on

seth wrote:

what GPU you ran […] the game on and what kind of session/compositor you're running

Offline

#7 2024-07-05 16:48:54

NightDazer22
Member
Registered: 2024-06-14
Posts: 13

Re: on trying to have dual monitors using different GPUs

i launched the game and used glxinfo | grep "OpenGL renderer" and it says that its using my amd gpu. as for session its openbox-kde

Offline

#8 2024-07-05 20:15:03

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

Re: on trying to have dual monitors using different GPUs

Please don't paraphrase, https://bbs.archlinux.org/viewtopic.php?id=57855
But what glxinfo says is less relevant, though I guess we can assume you're not prime-running the game then?
Did you try?

Do you also run a compositor (picom)?

Did you remove the xf86-video-amdgpu package and add the kernel parameter?
Please post your updated Xorg log, https://wiki.archlinux.org/title/Xorg#General

Offline

#9 2024-07-05 20:48:06

NightDazer22
Member
Registered: 2024-06-14
Posts: 13

Re: on trying to have dual monitors using different GPUs

managed to do those too, heres what i got after running the game:

[zoroark@archlinux ~]$ cat /var/log/Xorg.0.log
[     8.044] 
X.Org X Server 1.21.1.13
X Protocol Version 11, Revision 0
[     8.044] Current Operating System: Linux archlinux 6.9.6-arch1-1 #1 SMP PREEMPT_DYNAMIC Fri, 21 Jun 2024 19:49:19 +0000 x86_64
[     8.044] Kernel command line: initrd=\initramfs-linux.img root=PARTUUID=ac6f0ebc-bb16-4d33-bf63-328585898bad zswap.enabled=0 rw rootfstype=ext4
[     8.044]  
[     8.044] Current version of pixman: 0.43.4
[     8.044]    Before reporting problems, check http://wiki.x.org
        to make sure that you have the latest version.
[     8.044] Markers: (--) probed, (**) from config file, (==) default setting,
        (++) from command line, (!!) notice, (II) informational,
        (WW) warning, (EE) error, (NI) not implemented, (??) unknown.
[     8.044] (==) Log file: "/var/log/Xorg.0.log", Time: Sat Jul  6 04:42:16 2024
[     8.046] (==) Using config file: "/etc/X11/xorg.conf"
[     8.046] (==) Using config directory: "/etc/X11/xorg.conf.d"
[     8.046] (==) Using system config directory "/usr/share/X11/xorg.conf.d"
[     8.048] (==) ServerLayout "DefaultLayout"
[     8.048] (**) |-->Screen "Screen0" (0)
[     8.048] (**) |   |-->Monitor "eDP"
[     8.048] (**) Allowing byte-swapped clients
[     8.048] (==) Automatically adding devices
[     8.048] (==) Automatically enabling devices
[     8.048] (==) Automatically adding GPU devices
[     8.048] (==) Automatically binding GPU devices
[     8.048] (==) Max clients allowed: 256, resource mask: 0x1fffff
[     8.048] (WW) The directory "/usr/share/fonts/misc" does not exist.
[     8.048]    Entry deleted from font path.
[     8.049] (WW) The directory "/usr/share/fonts/OTF" does not exist.
[     8.049]    Entry deleted from font path.
[     8.049] (WW) The directory "/usr/share/fonts/Type1" does not exist.
[     8.049]    Entry deleted from font path.
[     8.050] (==) FontPath set to:
        /usr/share/fonts/TTF,
        /usr/share/fonts/100dpi,
        /usr/share/fonts/75dpi
[     8.050] (==) ModulePath set to "/usr/lib/xorg/modules"
[     8.050] (II) The server relies on udev to provide the list of input devices.
        If no devices become available, reconfigure udev or disable AutoAddDevices.
[     8.050] (II) Module ABI versions:
[     8.050]    X.Org ANSI C Emulation: 0.4
[     8.050]    X.Org Video Driver: 25.2
[     8.051]    X.Org XInput driver : 24.4
[     8.051]    X.Org Server Extension : 10.0
[     8.051] (++) using VT number 7

[     8.051] (II) systemd-logind: logind integration requires -keeptty and -keeptty was not provided, disabling logind integration
[     8.053] (II) xfree86: Adding drm device (/dev/dri/card0)
[     8.053] (II) Platform probe for /sys/devices/pci0000:00/0000:00:01.1/0000:01:00.0/drm/card0
[     8.082] (II) xfree86: Adding drm device (/dev/dri/card1)
[     8.082] (II) Platform probe for /sys/devices/pci0000:00/0000:00:08.1/0000:06:00.0/drm/card1
[     8.115] (**) OutputClass "nvidia" ModulePath extended to "/usr/lib/nvidia/xorg,/usr/lib/xorg/modules,/usr/lib/xorg/modules"
[     8.117] (--) PCI: (1@0:0:0) 10de:1f99:1025:1447 rev 161, Mem @ 0xd0000000/16777216, 0xfcc0000000/268435456, 0xfcd0000000/33554432, I/O @ 0x00003000/128, BIOS @ 0x????????/524288
[     8.117] (--) PCI:*(6@0:0:0) 1002:1636:1025:1455 rev 199, Mem @ 0xfce0000000/268435456, 0xfcf0000000/2097152, 0xd1500000/524288, I/O @ 0x00001000/256
[     8.117] (WW) Open ACPI failed (/var/run/acpid.socket) (No such file or directory)
[     8.117] (II) LoadModule: "glx"
[     8.118] (II) Loading /usr/lib/xorg/modules/extensions/libglx.so
[     8.123] (II) Module glx: vendor="X.Org Foundation"
[     8.123]    compiled for 1.21.1.13, module version = 1.0.0
[     8.123]    ABI class: X.Org Server Extension, version 10.0
[     8.123] (II) Applying OutputClass "nvidia" to /dev/dri/card0
[     8.123]    loading driver: nvidia
[     8.123] (==) Matched ati as autoconfigured driver 0
[     8.123] (==) Matched nvidia as autoconfigured driver 1
[     8.123] (==) Matched nouveau as autoconfigured driver 2
[     8.123] (==) Matched nv as autoconfigured driver 3
[     8.123] (==) Matched modesetting as autoconfigured driver 4
[     8.123] (==) Matched fbdev as autoconfigured driver 5
[     8.123] (==) Matched vesa as autoconfigured driver 6
[     8.123] (==) Assigned the driver to the xf86ConfigLayout
[     8.123] (II) LoadModule: "ati"
[     8.123] (WW) Warning, couldn't open module ati
[     8.123] (EE) Failed to load module "ati" (module does not exist, 0)
[     8.123] (II) LoadModule: "nvidia"
[     8.123] (II) Loading /usr/lib/xorg/modules/drivers/nvidia_drv.so
[     8.127] (II) Module nvidia: vendor="NVIDIA Corporation"
[     8.127]    compiled for 1.6.99.901, module version = 1.0.0
[     8.127]    Module class: X.Org Video Driver
[     8.127] (II) LoadModule: "nouveau"
[     8.127] (WW) Warning, couldn't open module nouveau
[     8.127] (EE) Failed to load module "nouveau" (module does not exist, 0)
[     8.127] (II) LoadModule: "nv"
[     8.127] (WW) Warning, couldn't open module nv
[     8.127] (EE) Failed to load module "nv" (module does not exist, 0)
[     8.127] (II) LoadModule: "modesetting"
[     8.127] (II) Loading /usr/lib/xorg/modules/drivers/modesetting_drv.so
[     8.129] (II) Module modesetting: vendor="X.Org Foundation"
[     8.129]    compiled for 1.21.1.13, module version = 1.21.1
[     8.129]    Module class: X.Org Video Driver
[     8.129]    ABI class: X.Org Video Driver, version 25.2
[     8.129] (II) LoadModule: "fbdev"
[     8.130] (WW) Warning, couldn't open module fbdev
[     8.130] (EE) Failed to load module "fbdev" (module does not exist, 0)
[     8.130] (II) LoadModule: "vesa"
[     8.130] (II) Loading /usr/lib/xorg/modules/drivers/vesa_drv.so
[     8.130] (II) Module vesa: vendor="X.Org Foundation"
[     8.130]    compiled for 1.21.1.11, module version = 2.6.0
[     8.130]    Module class: X.Org Video Driver
[     8.130]    ABI class: X.Org Video Driver, version 25.2
[     8.130] (II) NVIDIA dlloader X Driver  550.90.07  Fri May 31 09:34:34 UTC 2024
[     8.130] (II) NVIDIA Unified Driver for all Supported NVIDIA GPUs
[     8.130] (II) modesetting: Driver for Modesetting Kernel Drivers: kms
[     8.130] (II) VESA: driver for VESA chipsets: vesa
[     8.196] (II) modeset(0): using drv /dev/dri/card1
[     8.197] (II) Loading sub module "fb"
[     8.197] (II) LoadModule: "fb"
[     8.197] (II) Module "fb" already built-in
[     8.197] (II) Loading sub module "wfb"
[     8.197] (II) LoadModule: "wfb"
[     8.197] (II) Loading /usr/lib/xorg/modules/libwfb.so
[     8.198] (II) Module wfb: vendor="X.Org Foundation"
[     8.198]    compiled for 1.21.1.13, module version = 1.0.0
[     8.198]    ABI class: X.Org ANSI C Emulation, version 0.4
[     8.199] (II) modeset(0): Creating default Display subsection in Screen section
        "Screen0" for depth/fbbpp 24/32
[     8.200] (==) modeset(0): Depth 24, (==) framebuffer bpp 32
[     8.200] (==) modeset(0): RGB weight 888
[     8.200] (==) modeset(0): Default visual is TrueColor
[     8.200] (II) Loading sub module "glamoregl"
[     8.200] (II) LoadModule: "glamoregl"
[     8.200] (II) Loading /usr/lib/xorg/modules/libglamoregl.so
[     8.204] (II) Module glamoregl: vendor="X.Org Foundation"
[     8.204]    compiled for 1.21.1.13, module version = 1.0.1
[     8.204]    ABI class: X.Org ANSI C Emulation, version 0.4
[     8.399] (II) modeset(0): glamor X acceleration enabled on AMD Radeon Graphics (radeonsi, renoir, LLVM 17.0.6, DRM 3.57, 6.9.6-arch1-1)
[     8.399] (II) modeset(0): glamor initialized
[     8.399] (==) modeset(0): VariableRefresh: disabled
[     8.399] (==) modeset(0): AsyncFlipSecondaries: disabled
[     8.403] (II) modeset(0): Output eDP-1 using monitor section eDP
[     8.403] (**) modeset(0): Option "Primary" "true"
[     8.406] (II) modeset(0): EDID for output eDP-1
[     8.406] (II) modeset(0): Manufacturer: BOE  Model: 819  Serial#: 0
[     8.406] (II) modeset(0): Year: 2018  Week: 32
[     8.406] (II) modeset(0): EDID Version: 1.4
[     8.406] (II) modeset(0): Digital Display Input
[     8.406] (II) modeset(0): 6 bits per channel
[     8.406] (II) modeset(0): Digital interface is DisplayPort
[     8.406] (II) modeset(0): Max Image Size [cm]: horiz.: 34  vert.: 19
[     8.406] (II) modeset(0): Gamma: 2.20
[     8.406] (II) modeset(0): No DPMS capabilities specified
[     8.406] (II) modeset(0): Supported color encodings: RGB 4:4:4 
[     8.407] (II) modeset(0): First detailed timing is preferred mode
[     8.407] (II) modeset(0): Preferred mode is native pixel format and refresh rate
[     8.407] (II) modeset(0): redX: 0.585 redY: 0.363   greenX: 0.350 greenY: 0.567
[     8.407] (II) modeset(0): blueX: 0.162 blueY: 0.123   whiteX: 0.312 whiteY: 0.328
[     8.407] (II) modeset(0): Manufacturer's mask: 0
[     8.407] (II) modeset(0): Supported detailed timing:
[     8.407] (II) modeset(0): clock: 151.3 MHz   Image Size:  344 x 194 mm
[     8.407] (II) modeset(0): h_active: 1920  h_sync: 1968  h_sync_end 2000 h_blank_end 2212 h_border: 0
[     8.407] (II) modeset(0): v_active: 1080  v_sync: 1083  v_sync_end 1089 v_blanking: 1140 v_border: 0
[     8.407] (II) modeset(0): Supported detailed timing:
[     8.407] (II) modeset(0): clock: 121.0 MHz   Image Size:  344 x 194 mm
[     8.407] (II) modeset(0): h_active: 1920  h_sync: 1968  h_sync_end 2000 h_blank_end 2212 h_border: 0
[     8.407] (II) modeset(0): v_active: 1080  v_sync: 1083  v_sync_end 1089 v_blanking: 1140 v_border: 0
[     8.407] (II) modeset(0):  T1WD3NV15N3D
[     8.407] (II) modeset(0): Unknown vendor-specific block 0
[     8.407] (II) modeset(0): EDID (in hex):
[     8.407] (II) modeset(0):   00ffffffffffff0009e5190800000000
[     8.407] (II) modeset(0):   201c01049522137802c9a0955d599129
[     8.407] (II) modeset(0):   1f505400000001010101010101010101
[     8.407] (II) modeset(0):   0101010101011a3b802471383c403020
[     8.407] (II) modeset(0):   360058c21000001a482f802471383c40
[     8.407] (II) modeset(0):   3020360058c21000001a000000fe0054
[     8.407] (II) modeset(0):   31574433804e5631354e334400000000
[     8.407] (II) modeset(0):   0000412196001000000a010a20200042
[     8.407] (II) modeset(0): Printing probed modes for output eDP-1
[     8.407] (II) modeset(0): Modeline "1920x1080"x60.0  151.30  1920 1968 2000 2212  1080 1083 1089 1140 +hsync -vsync (68.4 kHz eP)
[     8.407] (II) modeset(0): Modeline "1920x1080"x119.9  266.50  1920 1944 1960 2000  1080 1081 1084 1111 doublescan +hsync -vsync (133.2 kHz d)
[     8.407] (II) modeset(0): Modeline "1920x1080"x60.0  173.00  1920 2048 2248 2576  1080 1083 1088 1120 -hsync +vsync (67.2 kHz d)
[     8.407] (II) modeset(0): Modeline "1920x1080"x59.9  138.50  1920 1968 2000 2080  1080 1083 1088 1111 +hsync -vsync (66.6 kHz d)
[     8.407] (II) modeset(0): Modeline "1920x1080"x48.0  121.04  1920 1968 2000 2212  1080 1083 1089 1140 +hsync -vsync (54.7 kHz e)
[     8.407] (II) modeset(0): Modeline "1680x1050"x60.0  151.30  1680 1968 2000 2212  1050 1083 1089 1140 +hsync -vsync (68.4 kHz e)
[     8.407] (II) modeset(0): Modeline "1680x1050"x60.0  146.25  1680 1784 1960 2240  1050 1053 1059 1089 -hsync +vsync (65.3 kHz d)
[     8.407] (II) modeset(0): Modeline "1680x1050"x59.9  119.00  1680 1728 1760 1840  1050 1053 1059 1080 +hsync -vsync (64.7 kHz d)
[     8.407] (II) modeset(0): Modeline "1400x1050"x60.0  122.00  1400 1488 1640 1880  1050 1052 1064 1082 +hsync +vsync (64.9 kHz d)
[     8.407] (II) modeset(0): Modeline "1600x900"x120.0  246.00  1600 1728 1900 2200  900 901 904 932 doublescan -hsync +vsync (111.8 kHz d)
[     8.407] (II) modeset(0): Modeline "1600x900"x119.9  186.50  1600 1624 1640 1680  900 901 904 926 doublescan +hsync -vsync (111.0 kHz d)
[     8.407] (II) modeset(0): Modeline "1600x900"x59.9  118.25  1600 1696 1856 2112  900 903 908 934 -hsync +vsync (56.0 kHz d)
[     8.407] (II) modeset(0): Modeline "1600x900"x59.8   97.50  1600 1648 1680 1760  900 903 908 926 +hsync -vsync (55.4 kHz d)
[     8.407] (II) modeset(0): Modeline "1280x1024"x60.0  151.30  1280 1968 2000 2212  1024 1083 1089 1140 +hsync -vsync (68.4 kHz e)
[     8.407] (II) modeset(0): Modeline "1280x1024"x60.0  108.00  1280 1328 1440 1688  1024 1025 1028 1066 +hsync +vsync (64.0 kHz d)
[     8.407] (II) modeset(0): Modeline "1440x900"x60.0  151.30  1440 1968 2000 2212  900 1083 1089 1140 +hsync -vsync (68.4 kHz e)
[     8.407] (II) modeset(0): Modeline "1400x900"x60.0  103.50  1400 1480 1624 1848  900 903 913 934 -hsync +vsync (56.0 kHz d)
[     8.407] (II) modeset(0): Modeline "1400x900"x59.9   86.50  1400 1448 1480 1560  900 903 913 926 +hsync -vsync (55.4 kHz d)
[     8.407] (II) modeset(0): Modeline "1280x960"x60.0  108.00  1280 1376 1488 1800  960 961 964 1000 +hsync +vsync (60.0 kHz d)
[     8.407] (II) modeset(0): Modeline "1440x810"x120.0  198.12  1440 1548 1704 1968  810 811 814 839 doublescan -hsync +vsync (100.7 kHz d)
[     8.407] (II) modeset(0): Modeline "1440x810"x119.9  151.88  1440 1464 1480 1520  810 811 814 833 doublescan +hsync -vsync (99.9 kHz d)
[     8.407] (II) modeset(0): Modeline "1368x768"x59.9   85.25  1368 1440 1576 1784  768 771 781 798 -hsync +vsync (47.8 kHz d)
[     8.407] (II) modeset(0): Modeline "1368x768"x59.9   72.25  1368 1416 1448 1528  768 771 781 790 +hsync -vsync (47.3 kHz d)
[     8.407] (II) modeset(0): Modeline "1280x800"x120.0  174.25  1280 1380 1516 1752  800 801 804 829 doublescan -hsync +vsync (99.5 kHz d)
[     8.407] (II) modeset(0): Modeline "1280x800"x60.0  151.30  1280 1968 2000 2212  800 1083 1089 1140 +hsync -vsync (68.4 kHz e)
[     8.407] (II) modeset(0): Modeline "1280x800"x119.9  134.25  1280 1304 1320 1360  800 801 804 823 doublescan +hsync -vsync (98.7 kHz d)
[     8.407] (II) modeset(0): Modeline "1280x800"x59.8   83.50  1280 1352 1480 1680  800 803 809 831 -hsync +vsync (49.7 kHz d)
[     8.407] (II) modeset(0): Modeline "1280x800"x59.9   71.00  1280 1328 1360 1440  800 803 809 823 +hsync -vsync (49.3 kHz d)
[     8.407] (II) modeset(0): Modeline "1280x720"x120.0  156.12  1280 1376 1512 1744  720 721 724 746 doublescan -hsync +vsync (89.5 kHz d)
[     8.407] (II) modeset(0): Modeline "1280x720"x60.0  151.30  1280 1968 2000 2212  720 1083 1089 1140 +hsync -vsync (68.4 kHz e)
[     8.407] (II) modeset(0): Modeline "1280x720"x120.0  120.75  1280 1304 1320 1360  720 721 724 740 doublescan +hsync -vsync (88.8 kHz d)
[     8.407] (II) modeset(0): Modeline "1280x720"x59.9   74.50  1280 1344 1472 1664  720 723 728 748 -hsync +vsync (44.8 kHz d)
[     8.407] (II) modeset(0): Modeline "1280x720"x59.7   63.75  1280 1328 1360 1440  720 723 728 741 +hsync -vsync (44.3 kHz d)
[     8.407] (II) modeset(0): Modeline "1024x768"x60.0  151.30  1024 1968 2000 2212  768 1083 1089 1140 +hsync -vsync (68.4 kHz e)
[     8.407] (II) modeset(0): Modeline "1024x768"x120.1  133.47  1024 1100 1212 1400  768 768 770 794 doublescan -hsync +vsync (95.3 kHz d)
[     8.407] (II) modeset(0): Modeline "1024x768"x60.0   65.00  1024 1048 1184 1344  768 771 777 806 -hsync -vsync (48.4 kHz d)
[     8.407] (II) modeset(0): Modeline "960x720"x120.0  117.00  960 1024 1128 1300  720 720 722 750 doublescan -hsync +vsync (90.0 kHz d)
[     8.407] (II) modeset(0): Modeline "928x696"x120.1  109.15  928 976 1088 1264  696 696 698 719 doublescan -hsync +vsync (86.4 kHz d)
[     8.407] (II) modeset(0): Modeline "896x672"x120.0  102.40  896 960 1060 1224  672 672 674 697 doublescan -hsync +vsync (83.7 kHz d)
[     8.407] (II) modeset(0): Modeline "1024x576"x119.9   98.50  1024 1092 1200 1376  576 577 580 597 doublescan -hsync +vsync (71.6 kHz d)
[     8.407] (II) modeset(0): Modeline "1024x576"x119.9   78.38  1024 1048 1064 1104  576 577 580 592 doublescan +hsync -vsync (71.0 kHz d)
[     8.407] (II) modeset(0): Modeline "1024x576"x59.9   46.50  1024 1064 1160 1296  576 579 584 599 -hsync +vsync (35.9 kHz d)
[     8.407] (II) modeset(0): Modeline "1024x576"x59.8   42.00  1024 1072 1104 1184  576 579 584 593 +hsync -vsync (35.5 kHz d)
[     8.407] (II) modeset(0): Modeline "960x600"x119.9   96.62  960 1028 1128 1296  600 601 604 622 doublescan -hsync +vsync (74.6 kHz d)
[     8.407] (II) modeset(0): Modeline "960x600"x120.0   77.00  960 984 1000 1040  600 601 604 617 doublescan +hsync -vsync (74.0 kHz d)
[     8.407] (II) modeset(0): Modeline "960x540"x119.9   86.50  960 1024 1124 1288  540 541 544 560 doublescan -hsync +vsync (67.2 kHz d)
[     8.407] (II) modeset(0): Modeline "960x540"x120.0   69.25  960 984 1000 1040  540 541 544 555 doublescan +hsync -vsync (66.6 kHz d)
[     8.407] (II) modeset(0): Modeline "960x540"x59.6   40.75  960 992 1088 1216  540 543 548 562 -hsync +vsync (33.5 kHz d)
[     8.407] (II) modeset(0): Modeline "960x540"x59.8   37.25  960 1008 1040 1120  540 543 548 556 +hsync -vsync (33.3 kHz d)
[     8.407] (II) modeset(0): Modeline "800x600"x60.0  151.30  800 1968 2000 2212  600 1083 1089 1140 +hsync -vsync (68.4 kHz e)
[     8.407] (II) modeset(0): Modeline "800x600"x120.0   81.00  800 832 928 1080  600 600 602 625 doublescan +hsync +vsync (75.0 kHz d)
[     8.407] (II) modeset(0): Modeline "800x600"x60.3   40.00  800 840 968 1056  600 601 605 628 +hsync +vsync (37.9 kHz d)
[     8.407] (II) modeset(0): Modeline "800x600"x56.2   36.00  800 824 896 1024  600 601 603 625 +hsync +vsync (35.2 kHz d)
[     8.407] (II) modeset(0): Modeline "840x525"x120.0   73.12  840 892 980 1120  525 526 529 544 doublescan -hsync +vsync (65.3 kHz d)
[     8.407] (II) modeset(0): Modeline "840x525"x119.8   59.50  840 864 880 920  525 526 529 540 doublescan +hsync -vsync (64.7 kHz d)
[     8.407] (II) modeset(0): Modeline "864x486"x59.9   32.50  864 888 968 1072  486 489 494 506 -hsync +vsync (30.3 kHz d)
[     8.407] (II) modeset(0): Modeline "864x486"x59.6   30.50  864 912 944 1024  486 489 494 500 +hsync -vsync (29.8 kHz d)
[     8.407] (II) modeset(0): Modeline "700x525"x120.0   61.00  700 744 820 940  525 526 532 541 doublescan +hsync +vsync (64.9 kHz d)
[     8.407] (II) modeset(0): Modeline "800x450"x119.9   59.12  800 848 928 1056  450 451 454 467 doublescan -hsync +vsync (56.0 kHz d)
[     8.407] (II) modeset(0): Modeline "800x450"x119.6   48.75  800 824 840 880  450 451 454 463 doublescan +hsync -vsync (55.4 kHz d)
[     8.407] (II) modeset(0): Modeline "640x512"x120.0   54.00  640 664 720 844  512 512 514 533 doublescan +hsync +vsync (64.0 kHz d)
[     8.407] (II) modeset(0): Modeline "700x450"x119.9   51.75  700 740 812 924  450 451 456 467 doublescan -hsync +vsync (56.0 kHz d)
[     8.407] (II) modeset(0): Modeline "700x450"x119.8   43.25  700 724 740 780  450 451 456 463 doublescan +hsync -vsync (55.4 kHz d)
[     8.407] (II) modeset(0): Modeline "640x480"x60.0  151.30  640 1968 2000 2212  480 1083 1089 1140 +hsync -vsync (68.4 kHz e)
[     8.407] (II) modeset(0): Modeline "640x480"x120.0   54.00  640 688 744 900  480 480 482 500 doublescan +hsync +vsync (60.0 kHz d)
[     8.407] (II) modeset(0): Modeline "640x480"x59.9   25.18  640 656 752 800  480 490 492 525 -hsync -vsync (31.5 kHz d)
[     8.407] (II) modeset(0): Modeline "720x405"x59.5   22.50  720 744 808 896  405 408 413 422 -hsync +vsync (25.1 kHz d)
[     8.407] (II) modeset(0): Modeline "720x405"x59.0   21.75  720 768 800 880  405 408 413 419 +hsync -vsync (24.7 kHz d)
[     8.407] (II) modeset(0): Modeline "684x384"x119.8   42.62  684 720 788 892  384 385 390 399 doublescan -hsync +vsync (47.8 kHz d)
[     8.407] (II) modeset(0): Modeline "684x384"x119.7   36.12  684 708 724 764  384 385 390 395 doublescan +hsync -vsync (47.3 kHz d)
[     8.407] (II) modeset(0): Modeline "640x400"x119.8   41.75  640 676 740 840  400 401 404 415 doublescan -hsync +vsync (49.7 kHz d)
[     8.407] (II) modeset(0): Modeline "640x400"x120.0   35.50  640 664 680 720  400 401 404 411 doublescan +hsync -vsync (49.3 kHz d)
[     8.407] (II) modeset(0): Modeline "640x360"x119.7   37.25  640 672 736 832  360 361 364 374 doublescan -hsync +vsync (44.8 kHz d)
[     8.407] (II) modeset(0): Modeline "640x360"x119.7   31.88  640 664 680 720  360 361 364 370 doublescan +hsync -vsync (44.3 kHz d)
[     8.407] (II) modeset(0): Modeline "640x360"x59.8   18.00  640 664 720 800  360 363 368 376 -hsync +vsync (22.5 kHz d)
[     8.407] (II) modeset(0): Modeline "640x360"x59.3   17.75  640 688 720 800  360 363 368 374 +hsync -vsync (22.2 kHz d)
[     8.407] (II) modeset(0): Modeline "512x384"x120.0   32.50  512 524 592 672  384 385 388 403 doublescan -hsync -vsync (48.4 kHz d)
[     8.407] (II) modeset(0): Modeline "512x288"x120.0   23.25  512 532 580 648  288 289 292 299 doublescan -hsync +vsync (35.9 kHz d)
[     8.407] (II) modeset(0): Modeline "512x288"x119.8   21.00  512 536 552 592  288 289 292 296 doublescan +hsync -vsync (35.5 kHz d)
[     8.407] (II) modeset(0): Modeline "480x270"x119.3   20.38  480 496 544 608  270 271 274 281 doublescan -hsync +vsync (33.5 kHz d)
[     8.407] (II) modeset(0): Modeline "480x270"x119.6   18.62  480 504 520 560  270 271 274 278 doublescan +hsync -vsync (33.3 kHz d)
[     8.407] (II) modeset(0): Modeline "400x300"x120.6   20.00  400 420 484 528  300 300 302 314 doublescan +hsync +vsync (37.9 kHz d)
[     8.407] (II) modeset(0): Modeline "400x300"x112.7   18.00  400 412 448 512  300 300 301 312 doublescan +hsync +vsync (35.2 kHz d)
[     8.407] (II) modeset(0): Modeline "432x243"x119.8   16.25  432 444 484 536  243 244 247 253 doublescan -hsync +vsync (30.3 kHz d)
[     8.407] (II) modeset(0): Modeline "432x243"x119.1   15.25  432 456 472 512  243 244 247 250 doublescan +hsync -vsync (29.8 kHz d)
[     8.407] (II) modeset(0): Modeline "320x240"x120.1   12.59  320 328 376 400  240 245 246 262 doublescan -hsync -vsync (31.5 kHz d)
[     8.407] (II) modeset(0): Modeline "360x202"x119.0   11.25  360 372 404 448  202 204 206 211 doublescan -hsync +vsync (25.1 kHz d)
[     8.407] (II) modeset(0): Modeline "360x202"x118.3   10.88  360 384 400 440  202 204 206 209 doublescan +hsync -vsync (24.7 kHz d)
[     8.407] (II) modeset(0): Modeline "320x180"x119.7    9.00  320 332 360 400  180 181 184 188 doublescan -hsync +vsync (22.5 kHz d)
[     8.407] (II) modeset(0): Modeline "320x180"x118.6    8.88  320 344 360 400  180 181 184 187 doublescan +hsync -vsync (22.2 kHz d)
[     8.407] (II) modeset(0): Output eDP-1 connected
[     8.407] (II) modeset(0): Using exact sizes for initial modes
[     8.407] (II) modeset(0): Output eDP-1 using initial mode 1920x1080 +0+0
[     8.407] (==) modeset(0): Using gamma correction (1.0, 1.0, 1.0)
[     8.407] (==) modeset(0): DPI set to (96, 96)
[     8.407] (II) Loading sub module "fb"
[     8.407] (II) LoadModule: "fb"
[     8.407] (II) Module "fb" already built-in
[     8.407] (==) NVIDIA(G0): Depth 24, (==) framebuffer bpp 32
[     8.407] (==) NVIDIA(G0): RGB weight 888
[     8.407] (==) NVIDIA(G0): Default visual is TrueColor
[     8.407] (==) NVIDIA(G0): Using gamma correction (1.0, 1.0, 1.0)
[     8.408] (II) Applying OutputClass "nvidia" options to /dev/dri/card0
[     8.408] (**) NVIDIA(G0): Option "AllowEmptyInitialConfiguration"
[     8.408] (**) NVIDIA(G0): Enabling 2D acceleration
[     8.408] (II) Loading sub module "glxserver_nvidia"
[     8.408] (II) LoadModule: "glxserver_nvidia"
[     8.408] (II) Loading /usr/lib/nvidia/xorg/libglxserver_nvidia.so
[     8.438] (II) Module glxserver_nvidia: vendor="NVIDIA Corporation"
[     8.438]    compiled for 1.6.99.901, module version = 1.0.0
[     8.438]    Module class: X.Org Server Extension
[     8.438] (II) NVIDIA GLX Module  550.90.07  Fri May 31 09:34:56 UTC 2024
[     8.439] (II) NVIDIA: The X server supports PRIME Render Offload.
[     8.439] (--) NVIDIA(0): Valid display device(s) on GPU-0 at PCI:1:0:0
[     8.439] (--) NVIDIA(0):     DFP-0 (boot)
[     8.441] (II) NVIDIA(G0): NVIDIA GPU NVIDIA GeForce GTX 1650 (TU117-A) at PCI:1:0:0
[     8.441] (II) NVIDIA(G0):     (GPU-0)
[     8.441] (--) NVIDIA(G0): Memory: 4194304 kBytes
[     8.441] (--) NVIDIA(G0): VideoBIOS: 90.17.48.00.0f
[     8.441] (II) NVIDIA(G0): Detected PCI Express Link width: 16X
[     8.487] (--) NVIDIA(GPU-0): MDA EG24S1 (DFP-0): connected
[     8.487] (--) NVIDIA(GPU-0): MDA EG24S1 (DFP-0): Internal TMDS
[     8.487] (--) NVIDIA(GPU-0): MDA EG24S1 (DFP-0): 600.0 MHz maximum pixel clock
[     8.487] (--) NVIDIA(GPU-0): 
[     8.538] (II) NVIDIA(G0): Validated MetaModes:
[     8.538] (II) NVIDIA(G0):     "NULL"
[     8.539] (II) NVIDIA(G0): Virtual screen size determined to be 640 x 480
[     8.704] (WW) NVIDIA(G0): Cannot find size of first mode for MDA EG24S1 (DFP-0); cannot
[     8.704] (WW) NVIDIA(G0):     compute DPI from MDA EG24S1 (DFP-0)'s EDID.
[     8.704] (==) NVIDIA(G0): DPI set to (75, 75); computed from built-in default
[     8.704] (II) UnloadModule: "vesa"
[     8.704] (II) Unloading vesa
[     8.772] (==) modeset(0): Backing store enabled
[     8.772] (==) modeset(0): Silken mouse enabled
[     8.773] (II) modeset(0): Initializing kms color map for depth 24, 8 bpc.
[     8.773] (==) modeset(0): DPMS enabled
[     8.773] (WW) modeset(0): Option "Primary" is not used
[     8.773] (WW) modeset(0): Option "Monitor-HDMI-1-0" is not used
[     8.773] (II) modeset(0): [DRI2] Setup complete
[     8.773] (II) modeset(0): [DRI2]   DRI driver: radeonsi
[     8.773] (II) modeset(0): [DRI2]   VDPAU driver: radeonsi
[     8.773] (II) NVIDIA: Reserving 24576.00 MB of virtual memory for indirect memory
[     8.773] (II) NVIDIA:     access.
[     8.782] (II) NVIDIA(G0): ACPI: failed to connect to the ACPI event daemon; the daemon
[     8.782] (II) NVIDIA(G0):     may not be running or the "AcpidSocketPath" X
[     8.782] (II) NVIDIA(G0):     configuration option may not be set correctly.  When the
[     8.782] (II) NVIDIA(G0):     ACPI event daemon is available, the NVIDIA X driver will
[     8.782] (II) NVIDIA(G0):     try to use it to receive ACPI event notifications.  For
[     8.782] (II) NVIDIA(G0):     details, please see the "ConnectToAcpid" and
[     8.782] (II) NVIDIA(G0):     "AcpidSocketPath" X configuration options in Appendix B: X
[     8.782] (II) NVIDIA(G0):     Config Options in the README.
[     8.798] (II) NVIDIA(G0): Setting mode "NULL"
[     8.813] (==) NVIDIA(G0): Disabling shared memory pixmaps
[     8.813] (==) NVIDIA(G0): Backing store enabled
[     8.813] (==) NVIDIA(G0): Silken mouse enabled
[     8.813] (==) NVIDIA(G0): DPMS enabled
[     8.813] (II) Loading sub module "dri2"
[     8.813] (II) LoadModule: "dri2"
[     8.813] (II) Module "dri2" already built-in
[     8.813] (II) NVIDIA(G0): [DRI2] Setup complete
[     8.813] (II) NVIDIA(G0): [DRI2]   VDPAU driver: nvidia
[     8.813] (II) Initializing extension Generic Event Extension
[     8.813] (II) Initializing extension SHAPE
[     8.813] (II) Initializing extension MIT-SHM
[     8.814] (II) Initializing extension XInputExtension
[     8.814] (II) Initializing extension XTEST
[     8.814] (II) Initializing extension BIG-REQUESTS
[     8.814] (II) Initializing extension SYNC
[     8.814] (II) Initializing extension XKEYBOARD
[     8.814] (II) Initializing extension XC-MISC
[     8.814] (II) Initializing extension SECURITY
[     8.814] (II) Initializing extension XFIXES
[     8.814] (II) Initializing extension RENDER
[     8.814] (II) Initializing extension RANDR
[     8.814] (II) Initializing extension COMPOSITE
[     8.814] (II) Initializing extension DAMAGE
[     8.814] (II) Initializing extension MIT-SCREEN-SAVER
[     8.814] (II) Initializing extension DOUBLE-BUFFER
[     8.815] (II) Initializing extension RECORD
[     8.815] (II) Initializing extension DPMS
[     8.815] (II) Initializing extension Present
[     8.815] (II) Initializing extension DRI3
[     8.815] (II) Initializing extension X-Resource
[     8.815] (II) Initializing extension XVideo
[     8.815] (II) Initializing extension XVideo-MotionCompensation
[     8.815] (II) Initializing extension GLX
[     8.815] (II) Initializing extension GLX
[     8.815] (II) Indirect GLX disabled.
[     8.819] (II) AIGLX: Loaded and initialized radeonsi
[     8.819] (II) GLX: Initialized DRI2 GL provider for screen 0
[     8.819] (II) Initializing extension XFree86-VidModeExtension
[     8.819] (II) Initializing extension XFree86-DGA
[     8.819] (II) Initializing extension XFree86-DRI
[     8.819] (II) Initializing extension DRI2
[     8.820] (II) Initializing extension NV-GLX
[     8.820] (II) Initializing extension NV-CONTROL
[     8.820] (II) modeset(0): Damage tracking initialized
[     8.820] (II) modeset(0): Setting screen physical size to 508 x 285
[     8.902] (II) config/udev: Adding input device Acer Wireless Radio Control (/dev/input/event5)
[     8.902] (**) Acer Wireless Radio Control: Applying InputClass "libinput keyboard catchall"
[     8.902] (**) Acer Wireless Radio Control: Applying InputClass "system-keyboard"
[     8.902] (II) LoadModule: "libinput"
[     8.902] (II) Loading /usr/lib/xorg/modules/input/libinput_drv.so
[     8.905] (II) Module libinput: vendor="X.Org Foundation"
[     8.905]    compiled for 1.21.1.8, module version = 1.4.0
[     8.905]    Module class: X.Org XInput Driver
[     8.905]    ABI class: X.Org XInput driver, version 24.4
[     8.905] (II) Using input driver 'libinput' for 'Acer Wireless Radio Control'
[     8.905] (**) Acer Wireless Radio Control: always reports core events
[     8.905] (**) Option "Device" "/dev/input/event5"
[     8.911] (II) event5  - Acer Wireless Radio Control: is tagged by udev as: Keyboard
[     8.911] (II) event5  - Acer Wireless Radio Control: device is a keyboard
[     8.911] (II) event5  - Acer Wireless Radio Control: device removed
[     8.993] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/10251229:00/input/input5/event5"
[     8.993] (II) XINPUT: Adding extended input device "Acer Wireless Radio Control" (type: KEYBOARD, id 6)
[     8.993] (**) Option "xkb_model" "pc105"
[     8.993] (**) Option "xkb_layout" "es"
[     8.993] (**) Option "xkb_options" "terminate:ctrl_alt_bksp"
[     9.020] (II) event5  - Acer Wireless Radio Control: is tagged by udev as: Keyboard
[     9.020] (II) event5  - Acer Wireless Radio Control: device is a keyboard
[     9.021] (II) config/udev: Adding input device Power Button (/dev/input/event3)
[     9.021] (**) Power Button: Applying InputClass "libinput keyboard catchall"
[     9.021] (**) Power Button: Applying InputClass "system-keyboard"
[     9.021] (II) Using input driver 'libinput' for 'Power Button'
[     9.021] (**) Power Button: always reports core events
[     9.021] (**) Option "Device" "/dev/input/event3"
[     9.021] (II) event3  - Power Button: is tagged by udev as: Keyboard
[     9.021] (II) event3  - Power Button: device is a keyboard
[     9.021] (II) event3  - Power Button: device removed
[     9.063] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/LNXPWRBN:00/input/input3/event3"
[     9.063] (II) XINPUT: Adding extended input device "Power Button" (type: KEYBOARD, id 7)
[     9.063] (**) Option "xkb_model" "pc105"
[     9.063] (**) Option "xkb_layout" "es"
[     9.063] (**) Option "xkb_options" "terminate:ctrl_alt_bksp"
[     9.064] (II) event3  - Power Button: is tagged by udev as: Keyboard
[     9.064] (II) event3  - Power Button: device is a keyboard
[     9.065] (II) config/udev: Adding input device Video Bus (/dev/input/event7)
[     9.065] (**) Video Bus: Applying InputClass "libinput keyboard catchall"
[     9.065] (**) Video Bus: Applying InputClass "system-keyboard"
[     9.065] (II) Using input driver 'libinput' for 'Video Bus'
[     9.065] (**) Video Bus: always reports core events
[     9.065] (**) Option "Device" "/dev/input/event7"
[     9.065] (II) event7  - Video Bus: is tagged by udev as: Keyboard
[     9.066] (II) event7  - Video Bus: device is a keyboard
[     9.066] (II) event7  - Video Bus: device removed
[     9.133] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:00/LNXVIDEO:00/input/input7/event7"
[     9.133] (II) XINPUT: Adding extended input device "Video Bus" (type: KEYBOARD, id 8)
[     9.133] (**) Option "xkb_model" "pc105"
[     9.133] (**) Option "xkb_layout" "es"
[     9.133] (**) Option "xkb_options" "terminate:ctrl_alt_bksp"
[     9.135] (II) event7  - Video Bus: is tagged by udev as: Keyboard
[     9.135] (II) event7  - Video Bus: device is a keyboard
[     9.135] (II) config/udev: Adding input device Video Bus (/dev/input/event8)
[     9.135] (**) Video Bus: Applying InputClass "libinput keyboard catchall"
[     9.135] (**) Video Bus: Applying InputClass "system-keyboard"
[     9.135] (II) Using input driver 'libinput' for 'Video Bus'
[     9.135] (**) Video Bus: always reports core events
[     9.135] (**) Option "Device" "/dev/input/event8"
[     9.136] (II) event8  - Video Bus: is tagged by udev as: Keyboard
[     9.136] (II) event8  - Video Bus: device is a keyboard
[     9.136] (II) event8  - Video Bus: device removed
[     9.206] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:0f/LNXVIDEO:01/input/input8/event8"
[     9.206] (II) XINPUT: Adding extended input device "Video Bus" (type: KEYBOARD, id 9)
[     9.206] (**) Option "xkb_model" "pc105"
[     9.206] (**) Option "xkb_layout" "es"
[     9.206] (**) Option "xkb_options" "terminate:ctrl_alt_bksp"
[     9.208] (II) event8  - Video Bus: is tagged by udev as: Keyboard
[     9.208] (II) event8  - Video Bus: device is a keyboard
[     9.208] (II) config/udev: Adding input device Lid Switch (/dev/input/event2)
[     9.208] (II) No input driver specified, ignoring this device.
[     9.208] (II) This device may have been added with another device file.
[     9.209] (II) config/udev: Adding input device Power Button (/dev/input/event0)
[     9.209] (**) Power Button: Applying InputClass "libinput keyboard catchall"
[     9.209] (**) Power Button: Applying InputClass "system-keyboard"
[     9.209] (II) Using input driver 'libinput' for 'Power Button'
[     9.209] (**) Power Button: always reports core events
[     9.209] (**) Option "Device" "/dev/input/event0"
[     9.209] (II) event0  - Power Button: is tagged by udev as: Keyboard
[     9.209] (II) event0  - Power Button: device is a keyboard
[     9.210] (II) event0  - Power Button: device removed
[     9.253] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0C:00/input/input0/event0"
[     9.253] (II) XINPUT: Adding extended input device "Power Button" (type: KEYBOARD, id 10)
[     9.253] (**) Option "xkb_model" "pc105"
[     9.253] (**) Option "xkb_layout" "es"
[     9.253] (**) Option "xkb_options" "terminate:ctrl_alt_bksp"
[     9.255] (II) event0  - Power Button: is tagged by udev as: Keyboard
[     9.255] (II) event0  - Power Button: device is a keyboard
[     9.255] (II) config/udev: Adding input device Sleep Button (/dev/input/event1)
[     9.255] (**) Sleep Button: Applying InputClass "libinput keyboard catchall"
[     9.255] (**) Sleep Button: Applying InputClass "system-keyboard"
[     9.255] (II) Using input driver 'libinput' for 'Sleep Button'
[     9.255] (**) Sleep Button: always reports core events
[     9.255] (**) Option "Device" "/dev/input/event1"
[     9.256] (II) event1  - Sleep Button: is tagged by udev as: Keyboard
[     9.256] (II) event1  - Sleep Button: device is a keyboard
[     9.256] (II) event1  - Sleep Button: device removed
[     9.273] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0E:00/input/input1/event1"
[     9.273] (II) XINPUT: Adding extended input device "Sleep Button" (type: KEYBOARD, id 11)
[     9.273] (**) Option "xkb_model" "pc105"
[     9.273] (**) Option "xkb_layout" "es"
[     9.273] (**) Option "xkb_options" "terminate:ctrl_alt_bksp"
[     9.275] (II) event1  - Sleep Button: is tagged by udev as: Keyboard
[     9.275] (II) event1  - Sleep Button: device is a keyboard
[     9.276] (II) config/udev: Adding input device HDA NVidia HDMI/DP,pcm=3 (/dev/input/event13)
[     9.276] (II) No input driver specified, ignoring this device.
[     9.276] (II) This device may have been added with another device file.
[     9.276] (II) config/udev: Adding input device HDA NVidia HDMI/DP,pcm=7 (/dev/input/event14)
[     9.276] (II) No input driver specified, ignoring this device.
[     9.276] (II) This device may have been added with another device file.
[     9.277] (II) config/udev: Adding input device HDA NVidia HDMI/DP,pcm=8 (/dev/input/event15)
[     9.277] (II) No input driver specified, ignoring this device.
[     9.277] (II) This device may have been added with another device file.
[     9.277] (II) config/udev: Adding input device HDA NVidia HDMI/DP,pcm=9 (/dev/input/event16)
[     9.277] (II) No input driver specified, ignoring this device.
[     9.277] (II) This device may have been added with another device file.
[     9.278] (II) config/udev: Adding input device Logitech USB Optical Mouse (/dev/input/event9)
[     9.278] (**) Logitech USB Optical Mouse: Applying InputClass "libinput pointer catchall"
[     9.278] (II) Using input driver 'libinput' for 'Logitech USB Optical Mouse'
[     9.278] (**) Logitech USB Optical Mouse: always reports core events
[     9.278] (**) Option "Device" "/dev/input/event9"
[     9.279] (II) event9  - Logitech USB Optical Mouse: is tagged by udev as: Mouse
[     9.279] (II) event9  - Logitech USB Optical Mouse: device is a pointer
[     9.279] (II) event9  - Logitech USB Optical Mouse: device removed
[     9.343] (II) libinput: Logitech USB Optical Mouse: Step value 0 was provided, libinput Fallback acceleration function is used.
[     9.344] (II) libinput: Logitech USB Optical Mouse: Step value 0 was provided, libinput Fallback acceleration function is used.
[     9.344] (II) libinput: Logitech USB Optical Mouse: Step value 0 was provided, libinput Fallback acceleration function is used.
[     9.344] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:08.1/0000:06:00.3/usb1/1-2/1-2.3/1-2.3:1.0/0003:046D:C077.0001/input/input9/event9"
[     9.344] (II) XINPUT: Adding extended input device "Logitech USB Optical Mouse" (type: MOUSE, id 12)
[     9.344] (**) Option "AccelerationScheme" "none"
[     9.344] (**) Logitech USB Optical Mouse: (accel) selected scheme none/0
[     9.344] (**) Logitech USB Optical Mouse: (accel) acceleration factor: 2.000
[     9.344] (**) Logitech USB Optical Mouse: (accel) acceleration threshold: 4
[     9.346] (II) event9  - Logitech USB Optical Mouse: is tagged by udev as: Mouse
[     9.346] (II) event9  - Logitech USB Optical Mouse: device is a pointer
[     9.347] (II) config/udev: Adding input device Logitech USB Optical Mouse (/dev/input/mouse0)
[     9.347] (II) No input driver specified, ignoring this device.
[     9.347] (II) This device may have been added with another device file.
[     9.347] (II) config/udev: Adding input device HD-Audio Generic Headphone (/dev/input/event17)
[     9.347] (II) No input driver specified, ignoring this device.
[     9.347] (II) This device may have been added with another device file.
[     9.347] (II) config/udev: Adding input device ELAN050A:01 04F3:3158 Mouse (/dev/input/event11)
[     9.347] (**) ELAN050A:01 04F3:3158 Mouse: Applying InputClass "libinput pointer catchall"
[     9.347] (II) Using input driver 'libinput' for 'ELAN050A:01 04F3:3158 Mouse'
[     9.347] (**) ELAN050A:01 04F3:3158 Mouse: always reports core events
[     9.347] (**) Option "Device" "/dev/input/event11"
[     9.348] (II) event11 - ELAN050A:01 04F3:3158 Mouse: is tagged by udev as: Mouse Pointingstick
[     9.348] (II) event11 - ELAN050A:01 04F3:3158 Mouse: device is a pointer
[     9.349] (II) event11 - ELAN050A:01 04F3:3158 Mouse: device removed
[     9.417] (II) libinput: ELAN050A:01 04F3:3158 Mouse: Step value 0 was provided, libinput Fallback acceleration function is used.
[     9.417] (II) libinput: ELAN050A:01 04F3:3158 Mouse: Step value 0 was provided, libinput Fallback acceleration function is used.
[     9.417] (II) libinput: ELAN050A:01 04F3:3158 Mouse: Step value 0 was provided, libinput Fallback acceleration function is used.
[     9.417] (**) Option "config_info" "udev:/sys/devices/platform/AMDI0010:03/i2c-0/i2c-ELAN050A:01/0018:04F3:3158.0002/input/input14/event11"
[     9.417] (II) XINPUT: Adding extended input device "ELAN050A:01 04F3:3158 Mouse" (type: MOUSE, id 13)
[     9.417] (**) Option "AccelerationScheme" "none"
[     9.417] (**) ELAN050A:01 04F3:3158 Mouse: (accel) selected scheme none/0
[     9.417] (**) ELAN050A:01 04F3:3158 Mouse: (accel) acceleration factor: 2.000
[     9.417] (**) ELAN050A:01 04F3:3158 Mouse: (accel) acceleration threshold: 4
[     9.418] (II) event11 - ELAN050A:01 04F3:3158 Mouse: is tagged by udev as: Mouse Pointingstick
[     9.419] (II) event11 - ELAN050A:01 04F3:3158 Mouse: device is a pointer
[     9.420] (II) config/udev: Adding input device ELAN050A:01 04F3:3158 Mouse (/dev/input/mouse1)
[     9.420] (II) No input driver specified, ignoring this device.
[     9.420] (II) This device may have been added with another device file.
[     9.420] (II) config/udev: Adding input device ELAN050A:01 04F3:3158 Touchpad (/dev/input/event12)
[     9.420] (**) ELAN050A:01 04F3:3158 Touchpad: Applying InputClass "libinput touchpad catchall"
[     9.420] (II) Using input driver 'libinput' for 'ELAN050A:01 04F3:3158 Touchpad'
[     9.420] (**) ELAN050A:01 04F3:3158 Touchpad: always reports core events
[     9.420] (**) Option "Device" "/dev/input/event12"
[     9.421] (II) event12 - ELAN050A:01 04F3:3158 Touchpad: is tagged by udev as: Touchpad
[     9.422] (II) event12 - ELAN050A:01 04F3:3158 Touchpad: device is a touchpad
[     9.422] (II) event12 - ELAN050A:01 04F3:3158 Touchpad: device removed
[     9.490] (II) libinput: ELAN050A:01 04F3:3158 Touchpad: Step value 0 was provided, libinput Fallback acceleration function is used.
[     9.490] (II) libinput: ELAN050A:01 04F3:3158 Touchpad: Step value 0 was provided, libinput Fallback acceleration function is used.
[     9.490] (II) libinput: ELAN050A:01 04F3:3158 Touchpad: Step value 0 was provided, libinput Fallback acceleration function is used.
[     9.491] (**) Option "config_info" "udev:/sys/devices/platform/AMDI0010:03/i2c-0/i2c-ELAN050A:01/0018:04F3:3158.0002/input/input16/event12"
[     9.491] (II) XINPUT: Adding extended input device "ELAN050A:01 04F3:3158 Touchpad" (type: TOUCHPAD, id 14)
[     9.492] (**) Option "AccelerationScheme" "none"
[     9.492] (**) ELAN050A:01 04F3:3158 Touchpad: (accel) selected scheme none/0
[     9.492] (**) ELAN050A:01 04F3:3158 Touchpad: (accel) acceleration factor: 2.000
[     9.492] (**) ELAN050A:01 04F3:3158 Touchpad: (accel) acceleration threshold: 4
[     9.493] (II) event12 - ELAN050A:01 04F3:3158 Touchpad: is tagged by udev as: Touchpad
[     9.494] (II) event12 - ELAN050A:01 04F3:3158 Touchpad: device is a touchpad
[     9.495] (II) config/udev: Adding input device ELAN050A:01 04F3:3158 Touchpad (/dev/input/mouse2)
[     9.495] (II) No input driver specified, ignoring this device.
[     9.495] (II) This device may have been added with another device file.
[     9.495] (II) config/udev: Adding input device AT Translated Set 2 keyboard (/dev/input/event4)
[     9.495] (**) AT Translated Set 2 keyboard: Applying InputClass "libinput keyboard catchall"
[     9.495] (**) AT Translated Set 2 keyboard: Applying InputClass "system-keyboard"
[     9.495] (II) Using input driver 'libinput' for 'AT Translated Set 2 keyboard'
[     9.495] (**) AT Translated Set 2 keyboard: always reports core events
[     9.495] (**) Option "Device" "/dev/input/event4"
[     9.496] (II) event4  - AT Translated Set 2 keyboard: is tagged by udev as: Keyboard
[     9.496] (II) event4  - AT Translated Set 2 keyboard: device is a keyboard
[     9.497] (II) event4  - AT Translated Set 2 keyboard: device removed
[     9.530] (**) Option "config_info" "udev:/sys/devices/platform/i8042/serio0/input/input4/event4"
[     9.530] (II) XINPUT: Adding extended input device "AT Translated Set 2 keyboard" (type: KEYBOARD, id 15)
[     9.530] (**) Option "xkb_model" "pc105"
[     9.530] (**) Option "xkb_layout" "es"
[     9.530] (**) Option "xkb_options" "terminate:ctrl_alt_bksp"
[     9.531] (II) event4  - AT Translated Set 2 keyboard: is tagged by udev as: Keyboard
[     9.531] (II) event4  - AT Translated Set 2 keyboard: device is a keyboard
[     9.532] (II) config/udev: Adding input device PC Speaker (/dev/input/event6)
[     9.532] (II) No input driver specified, ignoring this device.
[     9.532] (II) This device may have been added with another device file.
[     9.535] (II) config/udev: Adding input device Acer WMI hotkeys (/dev/input/event10)
[     9.535] (**) Acer WMI hotkeys: Applying InputClass "libinput keyboard catchall"
[     9.535] (**) Acer WMI hotkeys: Applying InputClass "system-keyboard"
[     9.535] (II) Using input driver 'libinput' for 'Acer WMI hotkeys'
[     9.535] (**) Acer WMI hotkeys: always reports core events
[     9.535] (**) Option "Device" "/dev/input/event10"
[     9.535] (II) event10 - Acer WMI hotkeys: is tagged by udev as: Keyboard
[     9.535] (II) event10 - Acer WMI hotkeys: device is a keyboard
[     9.535] (II) event10 - Acer WMI hotkeys: device removed
[     9.590] (**) Option "config_info" "udev:/sys/devices/virtual/input/input13/event10"
[     9.590] (II) XINPUT: Adding extended input device "Acer WMI hotkeys" (type: KEYBOARD, id 16)
[     9.590] (**) Option "xkb_model" "pc105"
[     9.590] (**) Option "xkb_layout" "es"
[     9.590] (**) Option "xkb_options" "terminate:ctrl_alt_bksp"
[     9.591] (II) event10 - Acer WMI hotkeys: is tagged by udev as: Keyboard
[     9.591] (II) event10 - Acer WMI hotkeys: device is a keyboard
[    10.421] (II) modeset(0): Disabling kernel dirty updates, not required.
[    16.929] (II) modeset(0): EDID vendor "BOE", prod id 2073
[    16.929] (II) modeset(0): Printing DDC gathered Modelines:
[    16.929] (II) modeset(0): Modeline "1920x1080"x0.0  151.30  1920 1968 2000 2212  1080 1083 1089 1140 +hsync -vsync (68.4 kHz eP)
[    16.929] (II) modeset(0): Modeline "1920x1080"x0.0  121.04  1920 1968 2000 2212  1080 1083 1089 1140 +hsync -vsync (54.7 kHz e)
[    16.933] (II) modeset(0): EDID vendor "BOE", prod id 2073
[    16.933] (II) modeset(0): Printing DDC gathered Modelines:
[    16.933] (II) modeset(0): Modeline "1920x1080"x0.0  151.30  1920 1968 2000 2212  1080 1083 1089 1140 +hsync -vsync (68.4 kHz eP)
[    16.933] (II) modeset(0): Modeline "1920x1080"x0.0  121.04  1920 1968 2000 2212  1080 1083 1089 1140 +hsync -vsync (54.7 kHz e)
[    16.977] (--) NVIDIA(GPU-0): MDA EG24S1 (DFP-0): connected
[    16.977] (--) NVIDIA(GPU-0): MDA EG24S1 (DFP-0): Internal TMDS
[    16.977] (--) NVIDIA(GPU-0): MDA EG24S1 (DFP-0): 600.0 MHz maximum pixel clock
[    16.977] (--) NVIDIA(GPU-0): 
[    19.895] (II) modeset(0): EDID vendor "BOE", prod id 2073
[    19.895] (II) modeset(0): Printing DDC gathered Modelines:
[    19.895] (II) modeset(0): Modeline "1920x1080"x0.0  151.30  1920 1968 2000 2212  1080 1083 1089 1140 +hsync -vsync (68.4 kHz eP)
[    19.895] (II) modeset(0): Modeline "1920x1080"x0.0  121.04  1920 1968 2000 2212  1080 1083 1089 1140 +hsync -vsync (54.7 kHz e)
[    19.899] (II) modeset(0): EDID vendor "BOE", prod id 2073
[    19.899] (II) modeset(0): Printing DDC gathered Modelines:
[    19.899] (II) modeset(0): Modeline "1920x1080"x0.0  151.30  1920 1968 2000 2212  1080 1083 1089 1140 +hsync -vsync (68.4 kHz eP)
[    19.899] (II) modeset(0): Modeline "1920x1080"x0.0  121.04  1920 1968 2000 2212  1080 1083 1089 1140 +hsync -vsync (54.7 kHz e)
[    19.944] (--) NVIDIA(GPU-0): MDA EG24S1 (DFP-0): connected
[    19.944] (--) NVIDIA(GPU-0): MDA EG24S1 (DFP-0): Internal TMDS
[    19.944] (--) NVIDIA(GPU-0): MDA EG24S1 (DFP-0): 600.0 MHz maximum pixel clock
[    19.944] (--) NVIDIA(GPU-0): 
[    20.057] (II) NVIDIA(G0): Setting mode "HDMI-1-0: nvidia-auto-select @1920x1080 +0+0 {AllowGSYNC=Off, ViewPortIn=1920x1080, ViewPortOut=1920x1080+0+0}"
[    30.995] (II) modeset(0): EDID vendor "BOE", prod id 2073
[    30.995] (II) modeset(0): Printing DDC gathered Modelines:
[    30.995] (II) modeset(0): Modeline "1920x1080"x0.0  151.30  1920 1968 2000 2212  1080 1083 1089 1140 +hsync -vsync (68.4 kHz eP)
[    30.995] (II) modeset(0): Modeline "1920x1080"x0.0  121.04  1920 1968 2000 2212  1080 1083 1089 1140 +hsync -vsync (54.7 kHz e)
[    30.999] (II) modeset(0): EDID vendor "BOE", prod id 2073
[    31.000] (II) modeset(0): Printing DDC gathered Modelines:
[    31.000] (II) modeset(0): Modeline "1920x1080"x0.0  151.30  1920 1968 2000 2212  1080 1083 1089 1140 +hsync -vsync (68.4 kHz eP)
[    31.000] (II) modeset(0): Modeline "1920x1080"x0.0  121.04  1920 1968 2000 2212  1080 1083 1089 1140 +hsync -vsync (54.7 kHz e)
[    31.044] (--) NVIDIA(GPU-0): MDA EG24S1 (DFP-0): connected
[    31.044] (--) NVIDIA(GPU-0): MDA EG24S1 (DFP-0): Internal TMDS
[    31.044] (--) NVIDIA(GPU-0): MDA EG24S1 (DFP-0): 600.0 MHz maximum pixel clock
[    31.044] (--) NVIDIA(GPU-0): 
[    31.192] (II) modeset(0): EDID vendor "BOE", prod id 2073
[    31.192] (II) modeset(0): Printing DDC gathered Modelines:
[    31.192] (II) modeset(0): Modeline "1920x1080"x0.0  151.30  1920 1968 2000 2212  1080 1083 1089 1140 +hsync -vsync (68.4 kHz eP)
[    31.192] (II) modeset(0): Modeline "1920x1080"x0.0  121.04  1920 1968 2000 2212  1080 1083 1089 1140 +hsync -vsync (54.7 kHz e)
[    31.196] (II) modeset(0): EDID vendor "BOE", prod id 2073
[    31.196] (II) modeset(0): Printing DDC gathered Modelines:
[    31.196] (II) modeset(0): Modeline "1920x1080"x0.0  151.30  1920 1968 2000 2212  1080 1083 1089 1140 +hsync -vsync (68.4 kHz eP)
[    31.196] (II) modeset(0): Modeline "1920x1080"x0.0  121.04  1920 1968 2000 2212  1080 1083 1089 1140 +hsync -vsync (54.7 kHz e)
[    31.241] (--) NVIDIA(GPU-0): MDA EG24S1 (DFP-0): connected
[    31.241] (--) NVIDIA(GPU-0): MDA EG24S1 (DFP-0): Internal TMDS
[    31.241] (--) NVIDIA(GPU-0): MDA EG24S1 (DFP-0): 600.0 MHz maximum pixel clock
[    31.241] (--) NVIDIA(GPU-0): 
[    95.736] (II) modeset(0): EDID vendor "BOE", prod id 2073
[    95.736] (II) modeset(0): Printing DDC gathered Modelines:
[    95.736] (II) modeset(0): Modeline "1920x1080"x0.0  151.30  1920 1968 2000 2212  1080 1083 1089 1140 +hsync -vsync (68.4 kHz eP)
[    95.736] (II) modeset(0): Modeline "1920x1080"x0.0  121.04  1920 1968 2000 2212  1080 1083 1089 1140 +hsync -vsync (54.7 kHz e)
[    95.740] (II) modeset(0): EDID vendor "BOE", prod id 2073
[    95.740] (II) modeset(0): Printing DDC gathered Modelines:
[    95.740] (II) modeset(0): Modeline "1920x1080"x0.0  151.30  1920 1968 2000 2212  1080 1083 1089 1140 +hsync -vsync (68.4 kHz eP)
[    95.740] (II) modeset(0): Modeline "1920x1080"x0.0  121.04  1920 1968 2000 2212  1080 1083 1089 1140 +hsync -vsync (54.7 kHz e)
[    95.786] (--) NVIDIA(GPU-0): MDA EG24S1 (DFP-0): connected
[    95.786] (--) NVIDIA(GPU-0): MDA EG24S1 (DFP-0): Internal TMDS
[    95.786] (--) NVIDIA(GPU-0): MDA EG24S1 (DFP-0): 600.0 MHz maximum pixel clock
[    95.786] (--) NVIDIA(GPU-0): 
[    95.786] (EE) event9  - Logitech USB Optical Mouse: client bug: event processing lagging behind by 30ms, your system is too slow
[    95.796] (II) modeset(0): EDID vendor "BOE", prod id 2073
[    95.796] (II) modeset(0): Printing DDC gathered Modelines:
[    95.796] (II) modeset(0): Modeline "1920x1080"x0.0  151.30  1920 1968 2000 2212  1080 1083 1089 1140 +hsync -vsync (68.4 kHz eP)
[    95.796] (II) modeset(0): Modeline "1920x1080"x0.0  121.04  1920 1968 2000 2212  1080 1083 1089 1140 +hsync -vsync (54.7 kHz e)
[    95.801] (II) modeset(0): EDID vendor "BOE", prod id 2073
[    95.801] (II) modeset(0): Printing DDC gathered Modelines:
[    95.801] (II) modeset(0): Modeline "1920x1080"x0.0  151.30  1920 1968 2000 2212  1080 1083 1089 1140 +hsync -vsync (68.4 kHz eP)
[    95.801] (II) modeset(0): Modeline "1920x1080"x0.0  121.04  1920 1968 2000 2212  1080 1083 1089 1140 +hsync -vsync (54.7 kHz e)
[    95.847] (--) NVIDIA(GPU-0): MDA EG24S1 (DFP-0): connected
[    95.847] (--) NVIDIA(GPU-0): MDA EG24S1 (DFP-0): Internal TMDS
[    95.847] (--) NVIDIA(GPU-0): MDA EG24S1 (DFP-0): 600.0 MHz maximum pixel clock
[    95.847] (--) NVIDIA(GPU-0): 
[   102.028] (WW) modeset(0): Present-flip: queue async flip during flip on CRTC 0 failed: Invalid argument
[   102.030] (WW) modeset(0): Present-flip: queue async flip during flip on CRTC 0 failed: Invalid argument

as for compositors, ive been using pgrep kwin_x11

Last edited by NightDazer22 (2024-07-05 21:20:16)

Offline

#10 2024-07-05 21:34:13

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

Re: on trying to have dual monitors using different GPUs

ive been using pgrep kwin_x11

What?
kwin_x11 is the X11 version of kwin, the KDE windowmanager that has a built-in compositor which you can toggle w/ SHIFT+Alt+F12, but you suggested to be using openbox as KDE WM??

xf86-video-amdgpue is gone, but you didn't enable "nvidia_drm.modeset=1"  and you also seem to have added

[     8.046] (==) Using config file: "/etc/X11/xorg.conf"

promoting

[     8.048] (**) |-->Screen "Screen0" (0)
[     8.048] (**) |   |-->Monitor "eDP"

?

Did you try to https://wiki.archlinux.org/title/PRIME# … er_offload the game, https://wiki.archlinux.org/title/PRIME# … _using_GPU

Offline

#11 2024-07-05 23:14:14

NightDazer22
Member
Registered: 2024-06-14
Posts: 13

Re: on trying to have dual monitors using different GPUs

but you didn't enable "nvidia_drm.modeset=1"

thats strange, i assumed that it has already been enabled ever since i got the dual setup working

not yet, but i will try

edit: i managed to download nvidia-prime, but when i added this to the launch settings of black mesa in steam

prime-run %command%

the game doesnt get past the loading screen

Last edited by NightDazer22 (2024-07-06 13:13:43)

Offline

Board footer

Powered by FluxBB