You are not logged in.

#1 2023-05-22 04:33:34

bd-912
Guest

[Solved] Unexpected xrandr behavior

Hello. I uninstalled picom due to lack of use, though doing so has lead to broken behavior with xrandr when I restarted my xorg display server. I've found a workaround solution, though I would like help figuring out the cause from someone with more experience, if possible. Here is a diagram of my monitor setup:

|----------------------------------------------------|------------------------------------------------------------------|
|                                                              |                                                                               |
|   secondary: 1920x1080                       |   primary:  2560x1440                                           |
|                                                              |                                                                               |
|       HDMI-1                                           |       DP-3                                                                |
|                                                              |                                                                               |
|                                                              |                                                                               |
|----------------------------------------------------|                                                                               |
                                                               |                                                                               |
                                                               |------------------------------------------------------------------|

Here's the configuration using xrandr:
    $ xrandr --output DP-3 --primary --mode 2560x1440 --rate 144.0 --output HDMI-1 --mode 1920x1080 --rate 60.00 --left-of DP-3

This used to function, but now gives broken results, by drawing the monitors starting from the left side of DP-3. Here's a representation of what that looks like:

|----------------------------------------------------|---------------------------------------------------------|--------|
|                                                              |                                                                     |         |
| ary: 2560x1440                                    |    secondary:  1920x1080                            |  prim|
|                                                              |                                                                     |         |
| DP-3                                                     |        HDMI-1                                                 |        |
|                                                              |                                                                     |         |
|                                                              |                                                                     |         |
|----------------------------------------------------|---------------------------------------------------------|         |
           (cutoff)                                         |   deadspace                                                |         |
                                                               |----------------------------------------------------------|-------|

I looked at $ xrandr -q:
Screen 0: minimum 320 x 200, current 4480 x 1440, maximum 16384 x 16384
DP-1 disconnected (normal left inverted right x axis y axis)
DP-2 disconnected (normal left inverted right x axis y axis)
DP-3 connected primary 2560x1440+1920+0 (normal left inverted right x axis y axis) 597mm x 336mm
<...>
HDMI-1 connected 1920x1080+0+0 (normal left inverted right x axis y axis) 553mm x 311mm
Which displays offsets I would expect if the monitors were displaying correctly.

My first thought was to reinstall picom, in the case that it for some reason did make a difference. It did not fix the problem. Experimenting with the --right-of flag instead of --left-of made the screens visible, but the mouse warp and ordering was of course wrong. I then installed arandr, the graphical version of xrandr, and it produced the same results.
Finally, I then found that if I first used the position flag like this:
    $ xrandr --output HDMI-1 --mode 1920x1080 --rate 60.00 --pos -2560x0 --output DP-3 --primary --mode 2560x1440 --rate 144.00 --pos -0x0
I could then run the original command:
    $ xrandr --output DP-3 --primary --mode 2560x1440 --rate 144.0 --output HDMI-1 --mode 1920x1080 --rate 60.00 --left-of DP-3
and it would function correctly. Both of these lines are in my .xinitrc file now.

This solution and the sudden change in behavior doesn't make sense to me. I am hoping someone with more experience configuring xorg can guess as to what might be going on here so I can fix this correctly.

Thank you for any help.

Last edited by bd-912 (2023-05-23 01:06:20)

#2 2023-05-22 06:17:21

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

Re: [Solved] Unexpected xrandr behavior

Please wrap the shell IO and yoru ASCII art in [code][/code] tags.
(Though even in monospace the ASCII art is just a mess of lines)

xrandr has always had troubles configuring multiple outputs in one pass, this has nothing to do w/ picom
I'd start by

xrandr --output HDMI-1 --mode 1920x1080 --rate 60.00 --output DP-3 --primary --mode 2560x1440 --right-of HDMI-1 --rate 144.0

and in doubt

xrandr --output HDMI-1 --mode 1920x1080 --rate 60.00
xrandr --output DP-3 --primary --mode 2560x1440 --right-of HDMI-1 --rate 144.0

That being said: https://wiki.archlinux.org/title/Multih … _xorg.conf
You also don't have to specifically ask for the default modes (the ones w/ a "+" attached in the xrandr output)

Offline

#3 2023-05-22 09:16:56

bd-912
Guest

Re: [Solved] Unexpected xrandr behavior

Thank you for the thorough reply. I was not aware of any of this.

I first tried your second solution, configuring each monitor separately:

xrandr --output HDMI-1 --mode 1920x1080 --rate 60.00
xrandr --output DP-3 --primary --mode 2560x1440 -rate 144.00 --right-of HDMI-1

Though I'm still left with the same problem. To simplify my .xinitrc a little, I removed the flags which would have been set automatically:

xrandr --output HDMI-1
xrandr --output DP-3 --primary --right-of HDMI-1

Which can be simplified even further now. In the same vain, I simplified my .xinitrc file to only what is absolutely necessary:

xrandr --output DP-3 --primary --right-of HDMI-1
exec dwm

Which also did not work. Confirming with the pacman log, I have not installed any new packages today, besides those I used to try and solve this problem. The only thing of dubious importance is my use of NVIDIA drivers, installed using steps 1-6 of this page: https://wiki.archlinux.org/title/NVIDIA

    $ lspci -k | grep -A 2 -E "(VGA|3D)"
01:00.0 VGA compatible controller: NVIDIA Corporation GA106 [GeForce RTX 3060 Lite Hash Rate] (rev a1)
	Subsystem: ASUSTeK Computer Inc. GA106 [GeForce RTX 3060 Lite Hash Rate]
	Kernel driver in use: nouveau
--
0c:00.0 VGA compatible controller: Advanced Micro Devices, Inc. [AMD/ATI] Cezanne [Radeon Vega Series / Radeon Vega Mobile Series] (rev c8)
	Subsystem: ASUSTeK Computer Inc. Cezanne [Radeon Vega Series / Radeon Vega Mobile Series]
	Kernel driver in use: amdgpu

I'm still trying to work out other problems with Xorg and this configuration on this computer. It's very possible I set something up incorrectly with my hardware earlier on that is contributing here.

#4 2023-05-22 12:52:01

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

Re: [Solved] Unexpected xrandr behavior

Yo're not running on the binary nvidia driver but novueau.
Please post your Xorg log, https://wiki.archlinux.org/title/Xorg#General
If one of the outputs is attached to the 2nd GPU the xrandr call might fire before the output is redirected.

simplified my .xinitrc file to only what is absolutely necessary

Unrelated, but see the last link below…

Offline

#5 2023-05-22 22:46:47

bd-912
Guest

Re: [Solved] Unexpected xrandr behavior

Yo're not running on the binary nvidia driver but novueau.

This isn't my intention. I've heard that the nouveau driver generally leads to more problems than the proprietary one. Rereading the instructions I posted, I found I had made changes to the hooks in /etc/mkinitcpio.conf, but did not regenerate the initramfs to reflect this change:

    $ sudo mkinitcpio -P
==> Building image from preset: /etc/mkinitcpio.d/linux.preset: 'default'
  -> -k /boot/vmlinuz-linux -c /etc/mkinitcpio.conf -g /boot/initramfs-linux.img --microcode /boot/*-ucode.img
==> Starting build: '6.3.3-arch1-1'
  -> Running build hook: [base]
  -> Running build hook: [udev]
  -> Running build hook: [autodetect]
  -> Running build hook: [modconf]
  -> Running build hook: [keyboard]
==> WARNING: Possibly missing firmware for module: 'xhci_pci'
  -> Running build hook: [keymap]
  -> Running build hook: [consolefont]
==> WARNING: consolefont: no font found in configuration
  -> Running build hook: [block]
  -> Running build hook: [filesystems]
  -> Running build hook: [fsck]
==> Generating module dependencies
==> Creating zstd-compressed initcpio image: '/boot/initramfs-linux.img'
==> Image generation successful
==> Building image from preset: /etc/mkinitcpio.d/linux.preset: 'fallback'
  -> -k /boot/vmlinuz-linux -c /etc/mkinitcpio.conf -g /boot/initramfs-linux-fallback.img -S autodetect --microcode /boot/*-ucode.img
==> Starting build: '6.3.3-arch1-1'
  -> Running build hook: [base]
  -> Running build hook: [udev]
  -> Running build hook: [modconf]
  -> Running build hook: [keyboard]
==> WARNING: Possibly missing firmware for module: 'xhci_pci'
  -> Running build hook: [keymap]
  -> Running build hook: [consolefont]
==> WARNING: consolefont: no font found in configuration
  -> Running build hook: [block]
==> WARNING: Possibly missing firmware for module: 'qla1280'
==> WARNING: Possibly missing firmware for module: 'bfa'
==> WARNING: Possibly missing firmware for module: 'qed'
==> WARNING: Possibly missing firmware for module: 'qla2xxx'
==> WARNING: Possibly missing firmware for module: 'wd719x'
==> WARNING: Possibly missing firmware for module: 'aic94xx'
  -> Running build hook: [filesystems]
  -> Running build hook: [fsck]
==> Generating module dependencies
==> Creating zstd-compressed initcpio image: '/boot/initramfs-linux-fallback.img'
==> Image generation successful

Unfortunately, doing so has led me to another problem. The generated image does not properly load my kernel. The fallback ramdisk image also fails. This is not an issue with grub. Booting into the installation media and regenerating the images using a backup copy of the original /etc/mkinitcpio.conf leads to the same issue. Clearly, there is something I'm still not understanding here, or some missing packages. I am not using a custom kernel. Regardless, I restored some backup ramdisks to the /boot directory I created this morning. As far as I can tell, there aren't any consequences to doing this, only that I am not using the driver I wanted.

Returning to the original topic, I've skimmed through the log you referenced, and don't see much mention of the second gpu:

    $ cat Xorg.0.log
[    37.665] 
X.Org X Server 1.21.1.8
X Protocol Version 11, Revision 0
[    37.665] Current Operating System: Linux bdunahu-ROG-STRIX-G10DK-G10DK 6.3.3-arch1-1 #1 SMP PREEMPT_DYNAMIC Sun, 21 May 2023 16:15:22 +0000 x86_64
[    37.665] Kernel command line: BOOT_IMAGE=/boot/vmlinuz-linux root=UUID=a4c54d84-cbe7-4177-b922-b778869d3d7b rw loglevel=3 quiet
[    37.665]  
[    37.665] Current version of pixman: 0.42.2
[    37.666] 	Before reporting problems, check http://wiki.x.org
	to make sure that you have the latest version.
[    37.666] Markers: (--) probed, (**) from config file, (==) default setting,
	(++) from command line, (!!) notice, (II) informational,
	(WW) warning, (EE) error, (NI) not implemented, (??) unknown.
[    37.667] (==) Log file: "/home/bdunahu/.local/share/xorg/Xorg.0.log", Time: Mon May 22 12:57:50 2023
[    37.667] (==) Using system config directory "/usr/share/X11/xorg.conf.d"
[    37.667] (==) No Layout section.  Using the first Screen section.
[    37.667] (==) No screen section available. Using defaults.
[    37.667] (**) |-->Screen "Default Screen Section" (0)
[    37.667] (**) |   |-->Monitor "<default monitor>"
[    37.667] (==) No monitor specified for screen "Default Screen Section".
	Using a default monitor configuration.
[    37.667] (==) Automatically adding devices
[    37.667] (==) Automatically enabling devices
[    37.667] (==) Automatically adding GPU devices
[    37.667] (==) Automatically binding GPU devices
[    37.667] (==) Max clients allowed: 256, resource mask: 0x1fffff
[    37.667] (WW) The directory "/usr/share/fonts/misc" does not exist.
[    37.667] 	Entry deleted from font path.
[    37.667] (WW) The directory "/usr/share/fonts/TTF" does not exist.
[    37.667] 	Entry deleted from font path.
[    37.667] (WW) The directory "/usr/share/fonts/OTF" does not exist.
[    37.667] 	Entry deleted from font path.
[    37.667] (WW) The directory "/usr/share/fonts/Type1" does not exist.
[    37.667] 	Entry deleted from font path.
[    37.667] (WW) The directory "/usr/share/fonts/100dpi" does not exist.
[    37.667] 	Entry deleted from font path.
[    37.667] (WW) The directory "/usr/share/fonts/75dpi" does not exist.
[    37.667] 	Entry deleted from font path.
[    37.667] (==) FontPath set to:
	
[    37.667] (==) ModulePath set to "/usr/lib/xorg/modules"
[    37.667] (II) The server relies on udev to provide the list of input devices.
	If no devices become available, reconfigure udev or disable AutoAddDevices.
[    37.667] (II) Module ABI versions:
[    37.667] 	X.Org ANSI C Emulation: 0.4
[    37.667] 	X.Org Video Driver: 25.2
[    37.667] 	X.Org XInput driver : 24.4
[    37.667] 	X.Org Server Extension : 10.0
[    37.667] (++) using VT number 1

[    37.668] (II) systemd-logind: took control of session /org/freedesktop/login1/session/_31
[    37.669] (II) xfree86: Adding drm device (/dev/dri/card0)
[    37.669] (II) Platform probe for /sys/devices/pci0000:00/0000:00:01.1/0000:01:00.0/drm/card0
[    37.669] (II) systemd-logind: got fd for /dev/dri/card0 226:0 fd 13 paused 0
[    37.669] (II) xfree86: Adding drm device (/dev/dri/card1)
[    37.669] (II) Platform probe for /sys/devices/pci0000:00/0000:00:08.1/0000:0c:00.0/drm/card1
[    37.670] (II) systemd-logind: got fd for /dev/dri/card1 226:1 fd 14 paused 0
[    37.672] (--) PCI:*(1@0:0:0) 10de:2504:1043:8811 rev 161, Mem @ 0xfb000000/16777216, 0xb0000000/268435456, 0xc0000000/33554432, I/O @ 0x0000f000/128, BIOS @ 0x????????/524288
[    37.672] (--) PCI: (12@0:0:0) 1002:1638:1043:187c rev 200, Mem @ 0xd0000000/268435456, 0xe0000000/2097152, 0xfc500000/524288, I/O @ 0x0000e000/256
[    37.672] (WW) Open ACPI failed (/var/run/acpid.socket) (No such file or directory)
[    37.672] (II) LoadModule: "glx"
[    37.672] (II) Loading /usr/lib/xorg/modules/extensions/libglx.so
[    37.672] (II) Module glx: vendor="X.Org Foundation"
[    37.672] 	compiled for 1.21.1.8, module version = 1.0.0
[    37.672] 	ABI class: X.Org Server Extension, version 10.0
[    37.672] (==) Matched nouveau as autoconfigured driver 0
[    37.672] (==) Matched nv as autoconfigured driver 1
[    37.672] (==) Matched ati as autoconfigured driver 2
[    37.672] (==) Matched modesetting as autoconfigured driver 3
[    37.672] (==) Matched fbdev as autoconfigured driver 4
[    37.672] (==) Matched vesa as autoconfigured driver 5
[    37.672] (==) Assigned the driver to the xf86ConfigLayout
[    37.672] (II) LoadModule: "nouveau"
[    37.673] (WW) Warning, couldn't open module nouveau
[    37.673] (EE) Failed to load module "nouveau" (module does not exist, 0)
[    37.673] (II) LoadModule: "nv"
[    37.673] (WW) Warning, couldn't open module nv
[    37.673] (EE) Failed to load module "nv" (module does not exist, 0)
[    37.673] (II) LoadModule: "ati"
[    37.673] (WW) Warning, couldn't open module ati
[    37.673] (EE) Failed to load module "ati" (module does not exist, 0)
[    37.673] (II) LoadModule: "modesetting"
[    37.673] (II) Loading /usr/lib/xorg/modules/drivers/modesetting_drv.so
[    37.673] (II) Module modesetting: vendor="X.Org Foundation"
[    37.673] 	compiled for 1.21.1.8, module version = 1.21.1
[    37.673] 	Module class: X.Org Video Driver
[    37.673] 	ABI class: X.Org Video Driver, version 25.2
[    37.673] (II) LoadModule: "fbdev"
[    37.673] (WW) Warning, couldn't open module fbdev
[    37.673] (EE) Failed to load module "fbdev" (module does not exist, 0)
[    37.673] (II) LoadModule: "vesa"
[    37.673] (WW) Warning, couldn't open module vesa
[    37.673] (EE) Failed to load module "vesa" (module does not exist, 0)
[    37.673] (II) modesetting: Driver for Modesetting Kernel Drivers: kms
[    37.673] (II) modeset(0): using drv /dev/dri/card0
[    37.673] (II) modeset(G0): using drv /dev/dri/card1
[    37.673] (WW) VGA arbiter: cannot open kernel arbiter, no multi-card support
[    37.673] (II) modeset(0): Creating default Display subsection in Screen section
	"Default Screen Section" for depth/fbbpp 24/32
[    37.673] (==) modeset(0): Depth 24, (==) framebuffer bpp 32
[    37.673] (==) modeset(0): RGB weight 888
[    37.673] (==) modeset(0): Default visual is TrueColor
[    37.673] (II) Loading sub module "glamoregl"
[    37.673] (II) LoadModule: "glamoregl"
[    37.673] (II) Loading /usr/lib/xorg/modules/libglamoregl.so
[    37.675] (II) Module glamoregl: vendor="X.Org Foundation"
[    37.675] 	compiled for 1.21.1.8, module version = 1.0.1
[    37.675] 	ABI class: X.Org ANSI C Emulation, version 0.4
[    37.697] (II) modeset(0): glamor X acceleration enabled on NV176
[    37.697] (II) modeset(0): glamor initialized
[    37.697] (==) modeset(0): VariableRefresh: disabled
[    37.697] (==) modeset(0): AsyncFlipSecondaries: disabled
[    37.750] (II) modeset(0): Output DP-1 has no monitor section
[    37.803] (II) modeset(0): Output DP-2 has no monitor section
[    37.816] (II) modeset(0): Output DP-3 has no monitor section
[    37.885] (II) modeset(0): Output HDMI-1 has no monitor section
[    37.936] (II) modeset(0): EDID for output DP-1
[    37.990] (II) modeset(0): EDID for output DP-2
[    38.003] (II) modeset(0): EDID for output DP-3
[    38.003] (II) modeset(0): Manufacturer: SAM  Model: 707a  Serial#: 809775186
[    38.003] (II) modeset(0): Year: 2021  Week: 28
[    38.003] (II) modeset(0): EDID Version: 1.4
[    38.003] (II) modeset(0): Digital Display Input
[    38.003] (II) modeset(0): 10 bits per channel
[    38.003] (II) modeset(0): Digital interface is DisplayPort
[    38.003] (II) modeset(0): Max Image Size [cm]: horiz.: 60  vert.: 34
[    38.003] (II) modeset(0): Gamma: 2.20
[    38.003] (II) modeset(0): DPMS capabilities: Off
[    38.003] (II) modeset(0): Supported color encodings: RGB 4:4:4 YCrCb 4:4:4 YCrCb 4:2:2
[    38.003] (II) modeset(0): First detailed timing is preferred mode
[    38.003] (II) modeset(0): Preferred mode is native pixel format and refresh rate
[    38.003] (II) modeset(0): redX: 0.681 redY: 0.311   greenX: 0.276 greenY: 0.650
[    38.003] (II) modeset(0): blueX: 0.150 blueY: 0.069   whiteX: 0.313 whiteY: 0.329
[    38.003] (II) modeset(0): Supported established timings:
[    38.003] (II) modeset(0): 720x400@70Hz
[    38.003] (II) modeset(0): 640x480@60Hz
[    38.003] (II) modeset(0): 640x480@67Hz
[    38.003] (II) modeset(0): 640x480@72Hz
[    38.003] (II) modeset(0): 640x480@75Hz
[    38.003] (II) modeset(0): 800x600@56Hz
[    38.003] (II) modeset(0): 800x600@60Hz
[    38.003] (II) modeset(0): 800x600@72Hz
[    38.003] (II) modeset(0): 800x600@75Hz
[    38.003] (II) modeset(0): 832x624@75Hz
[    38.003] (II) modeset(0): 1024x768@60Hz
[    38.003] (II) modeset(0): 1024x768@70Hz
[    38.003] (II) modeset(0): 1024x768@75Hz
[    38.003] (II) modeset(0): 1280x1024@75Hz
[    38.003] (II) modeset(0): 1152x864@75Hz
[    38.003] (II) modeset(0): Manufacturer's mask: 0
[    38.003] (II) modeset(0): Supported standard timings:
[    38.003] (II) modeset(0): #0: hsize: 1280  vsize 720  refresh: 60  vid: 49281
[    38.003] (II) modeset(0): #1: hsize: 1280  vsize 800  refresh: 60  vid: 129
[    38.003] (II) modeset(0): #2: hsize: 1280  vsize 1024  refresh: 60  vid: 32897
[    38.003] (II) modeset(0): #3: hsize: 1440  vsize 900  refresh: 60  vid: 149
[    38.003] (II) modeset(0): #4: hsize: 1600  vsize 900  refresh: 60  vid: 49321
[    38.003] (II) modeset(0): #5: hsize: 1680  vsize 1050  refresh: 60  vid: 179
[    38.003] (II) modeset(0): #6: hsize: 1152  vsize 864  refresh: 75  vid: 20337
[    38.003] (II) modeset(0): Supported detailed timing:
[    38.003] (II) modeset(0): clock: 580.1 MHz   Image Size:  597 x 336 mm
[    38.003] (II) modeset(0): h_active: 2560  h_sync: 2568  h_sync_end 2632 h_blank_end 2720 h_border: 0
[    38.003] (II) modeset(0): v_active: 1440  v_sync: 1443  v_sync_end 1448 v_blanking: 1481 v_border: 0
[    38.003] (II) modeset(0): Ranges: V min: 50 V max: 144 Hz, H min: 30 H max: 214 kHz, PixClock max 595 MHz
[    38.003] (II) modeset(0): Monitor name: LC27G5xT
[    38.003] (II) modeset(0): Serial No: HNAR705206
[    38.003] (II) modeset(0): Supported detailed timing:
[    38.003] (II) modeset(0): clock: 346.5 MHz   Image Size:  597 x 336 mm
[    38.003] (II) modeset(0): h_active: 1920  h_sync: 1968  h_sync_end 2000 h_blank_end 2080 h_border: 0
[    38.003] (II) modeset(0): v_active: 1080  v_sync: 1083  v_sync_end 1088 v_blanking: 1157 v_border: 0
[    38.003] (II) modeset(0): Supported detailed timing:
[    38.003] (II) modeset(0): clock: 497.8 MHz   Image Size:  597 x 336 mm
[    38.003] (II) modeset(0): h_active: 2560  h_sync: 2608  h_sync_end 2640 h_blank_end 2720 h_border: 0
[    38.003] (II) modeset(0): v_active: 1440  v_sync: 1443  v_sync_end 1448 v_blanking: 1525 v_border: 0
[    38.003] (II) modeset(0): Supported detailed timing:
[    38.003] (II) modeset(0): clock: 241.5 MHz   Image Size:  597 x 336 mm
[    38.003] (II) modeset(0): h_active: 2560  h_sync: 2608  h_sync_end 2640 h_blank_end 2720 h_border: 0
[    38.003] (II) modeset(0): v_active: 1440  v_sync: 1443  v_sync_end 1448 v_blanking: 1481 v_border: 0
[    38.003] (II) modeset(0): Supported detailed timing:
[    38.003] (II) modeset(0): clock: 148.5 MHz   Image Size:  597 x 336 mm
[    38.003] (II) modeset(0): h_active: 1920  h_sync: 2008  h_sync_end 2052 h_blank_end 2200 h_border: 0
[    38.003] (II) modeset(0): v_active: 1080  v_sync: 1084  v_sync_end 1089 v_blanking: 1125 v_border: 0
[    38.003] (II) modeset(0): Number of EDID sections to follow: 1
[    38.003] (II) modeset(0): EDID (in hex):
[    38.003] (II) modeset(0): 	00ffffffffffff004c2d7a7052304430
[    38.003] (II) modeset(0): 	1c1f0104b53c22783a6eb5ae4f46a626
[    38.003] (II) modeset(0): 	115054bfef8081c0810081809500a9c0
[    38.003] (II) modeset(0): 	b300714f010198e200a0a0a029500840
[    38.003] (II) modeset(0): 	350055502100001a000000fd0032901e
[    38.003] (II) modeset(0): 	d63b000a202020202020000000fc004c
[    38.003] (II) modeset(0): 	433237473578540a20202020000000ff
[    38.003] (II) modeset(0): 	00484e41523730353230360a20200108
[    38.003] (II) modeset(0): 	02031cf147903f1f0413120323090707
[    38.003] (II) modeset(0): 	83010000e305c000e30605015a8780a0
[    38.003] (II) modeset(0): 	70384d403020350055502100001a6fc2
[    38.003] (II) modeset(0): 	00a0a0a055503020350055502100001a
[    38.003] (II) modeset(0): 	565e00a0a0a029503020350055502100
[    38.003] (II) modeset(0): 	001a023a801871382d40582c45005550
[    38.003] (II) modeset(0): 	2100001e000000000000000000000000
[    38.003] (II) modeset(0): 	00000000000000000000000000000079
[    38.003] (II) modeset(0): Not using default mode "2560x1440" (bad mode clock/interlace/doublescan)
[    38.003] (II) modeset(0): Printing probed modes for output DP-3
[    38.003] (II) modeset(0): Modeline "2560x1440"x144.0  580.08  2560 2568 2632 2720  1440 1443 1448 1481 +hsync -vsync (213.3 kHz eP)
[    38.003] (II) modeset(0): Modeline "2560x1440"x120.0  497.75  2560 2608 2640 2720  1440 1443 1448 1525 +hsync -vsync (183.0 kHz e)
[    38.003] (II) modeset(0): Modeline "2560x1440"x60.0  469.12  2560 2584 2600 2640  1440 1441 1444 1481 doublescan +hsync -vsync (177.7 kHz d)
<Shortened...>
[    38.004] (II) modeset(0): Modeline "320x180"x59.8    9.00  320 332 360 400  180 181 184 188 doublescan -hsync +vsync (22.5 kHz d)
[    38.004] (II) modeset(0): Modeline "320x180"x59.3    8.88  320 344 360 400  180 181 184 187 doublescan +hsync -vsync (22.2 kHz d)
[    38.004] (II) modeset(0): Modeline "320x175"x85.3   15.75  320 336 368 416  175 191 192 222 doublescan +hsync -vsync (37.9 kHz d)
[    38.073] (II) modeset(0): EDID for output HDMI-1
[    38.073] (II) modeset(0): Manufacturer: HWP  Model: 293e  Serial#: 16843009
[    38.073] (II) modeset(0): Year: 2011  Week: 3
[    38.073] (II) modeset(0): EDID Version: 1.3
[    38.073] (II) modeset(0): Digital Display Input
[    38.073] (II) modeset(0): Max Image Size [cm]: horiz.: 55  vert.: 31
[    38.073] (II) modeset(0): Gamma: 2.20
[    38.073] (II) modeset(0): DPMS capabilities: Off
[    38.073] (II) modeset(0): Supported color encodings: RGB 4:4:4 YCrCb 4:4:4 
[    38.073] (II) modeset(0): First detailed timing is preferred mode
[    38.073] (II) modeset(0): redX: 0.646 redY: 0.331   greenX: 0.294 greenY: 0.635
[    38.073] (II) modeset(0): blueX: 0.150 blueY: 0.067   whiteX: 0.313 whiteY: 0.329
[    38.073] (II) modeset(0): Supported established timings:
[    38.073] (II) modeset(0): 720x400@70Hz
[    38.073] (II) modeset(0): 640x480@60Hz
[    38.073] (II) modeset(0): 800x600@60Hz
[    38.073] (II) modeset(0): 1024x768@60Hz
[    38.073] (II) modeset(0): Manufacturer's mask: 0
[    38.073] (II) modeset(0): Supported standard timings:
[    38.073] (II) modeset(0): #0: hsize: 1280  vsize 720  refresh: 60  vid: 49281
[    38.073] (II) modeset(0): #1: hsize: 1280  vsize 1024  refresh: 60  vid: 32897
[    38.073] (II) modeset(0): #2: hsize: 1440  vsize 900  refresh: 60  vid: 149
[    38.073] (II) modeset(0): #3: hsize: 1680  vsize 1050  refresh: 60  vid: 179
[    38.073] (II) modeset(0): #4: hsize: 1920  vsize 1080  refresh: 60  vid: 49361
[    38.073] (II) modeset(0): Supported detailed timing:
[    38.073] (II) modeset(0): clock: 148.5 MHz   Image Size:  553 x 311 mm
[    38.073] (II) modeset(0): h_active: 1920  h_sync: 2008  h_sync_end 2052 h_blank_end 2200 h_border: 0
[    38.073] (II) modeset(0): v_active: 1080  v_sync: 1084  v_sync_end 1089 v_blanking: 1125 v_border: 0
[    38.073] (II) modeset(0): Ranges: V min: 50 V max: 76 Hz, H min: 24 H max: 94 kHz, PixClock max 175 MHz
[    38.073] (II) modeset(0): Monitor name: HP 2511
[    38.073] (II) modeset(0): Serial No: CNK10303DL
[    38.073] (II) modeset(0): Supported detailed timing:
[    38.073] (II) modeset(0): clock: 148.5 MHz   Image Size:  553 x 311 mm
[    38.073] (II) modeset(0): h_active: 1920  h_sync: 2008  h_sync_end 2052 h_blank_end 2200 h_border: 0
[    38.073] (II) modeset(0): v_active: 1080  v_sync: 1084  v_sync_end 1089 v_blanking: 1125 v_border: 0
[    38.073] (II) modeset(0): Supported detailed timing:
[    38.073] (II) modeset(0): clock: 74.2 MHz   Image Size:  553 x 311 mm
[    38.073] (II) modeset(0): h_active: 1280  h_sync: 1390  h_sync_end 1430 h_blank_end 1650 h_border: 0
[    38.073] (II) modeset(0): v_active: 720  v_sync: 725  v_sync_end 730 v_blanking: 750 v_border: 0
[    38.073] (II) modeset(0): Supported detailed timing:
[    38.073] (II) modeset(0): clock: 27.0 MHz   Image Size:  553 x 311 mm
[    38.073] (II) modeset(0): h_active: 720  h_sync: 736  h_sync_end 798 h_blank_end 858 h_border: 0
[    38.073] (II) modeset(0): v_active: 480  v_sync: 489  v_sync_end 495 v_blanking: 525 v_border: 0
[    38.073] (II) modeset(0): Number of EDID sections to follow: 1
[    38.073] (II) modeset(0): EDID (in hex):
[    38.073] (II) modeset(0): 	00ffffffffffff0022f03e2901010101
[    38.073] (II) modeset(0): 	0315010380371f782ab695a5544ba226
[    38.073] (II) modeset(0): 	115054a1080081c081809500b300d1c0
[    38.073] (II) modeset(0): 	010101010101023a801871382d40582c
[    38.073] (II) modeset(0): 	450029372100001e000000fd00324c18
[    38.073] (II) modeset(0): 	5e11000a202020202020000000fc0048
[    38.073] (II) modeset(0): 	5020323531310a2020202020000000ff
[    38.073] (II) modeset(0): 	00434e4b3130333033444c0a2020012d
[    38.073] (II) modeset(0): 	020315b14690031213041f65030c0010
[    38.073] (II) modeset(0): 	0083000000023a801871382d40582c45
[    38.073] (II) modeset(0): 	0029372100001e011d007251d01e206e
[    38.073] (II) modeset(0): 	28550029372100001e8c0ad08a20e02d
[    38.073] (II) modeset(0): 	10103e96002937210000180000000000
[    38.073] (II) modeset(0): 	00000000000000000000000000000000
[    38.073] (II) modeset(0): 	00000000000000000000000000000000
[    38.073] (II) modeset(0): 	00000000000000000000000000000098
[    38.073] (II) modeset(0): Not using default mode "1440x810" (bad mode clock/interlace/doublescan)
[    38.073] (II) modeset(0): Not using default mode "1600x900" (bad mode clock/interlace/doublescan)
[    38.073] (II) modeset(0): Not using default mode "1600x900" (bad mode clock/interlace/doublescan)
[    38.073] (II) modeset(0): Not using default mode "1920x1080" (bad mode clock/interlace/doublescan)
[    38.073] (II) modeset(0): Printing probed modes for output HDMI-1
[    38.073] (II) modeset(0): Modeline "1920x1080"x60.0  148.50  1920 2008 2052 2200  1080 1084 1089 1125 +hsync +vsync (67.5 kHz eP)
[    38.073] (II) modeset(0): Modeline "1920x1080"x60.0  173.00  1920 2048 2248 2576  1080 1083 1088 1120 -hsync +vsync (67.2 kHz d)
[    38.073] (II) modeset(0): Modeline "1920x1080"x50.0  148.50  1920 2448 2492 2640  1080 1084 1089 1125 +hsync +vsync (56.2 kHz e)
<Shortened...>
[    38.074] (II) modeset(0): Modeline "360x202"x59.1   10.88  360 384 400 440  202 204 206 209 doublescan +hsync -vsync (24.7 kHz d)
[    38.074] (II) modeset(0): Modeline "320x180"x59.8    9.00  320 332 360 400  180 181 184 188 doublescan -hsync +vsync (22.5 kHz d)
[    38.074] (II) modeset(0): Modeline "320x180"x59.3    8.88  320 344 360 400  180 181 184 187 doublescan +hsync -vsync (22.2 kHz d)
[    38.074] (II) modeset(0): Output DP-1 disconnected
[    38.074] (II) modeset(0): Output DP-2 disconnected
[    38.074] (II) modeset(0): Output DP-3 connected
[    38.074] (II) modeset(0): Output HDMI-1 connected
[    38.074] (II) modeset(0): Using spanning desktop for initial modes
[    38.074] (II) modeset(0): Output DP-3 using initial mode 2560x1440 +0+0
[    38.074] (II) modeset(0): Output HDMI-1 using initial mode 1920x1080 +2560+0
[    38.074] (==) modeset(0): Using gamma correction (1.0, 1.0, 1.0)
[    38.074] (==) modeset(0): DPI set to (96, 96)
[    38.074] (II) Loading sub module "fb"
[    38.074] (II) LoadModule: "fb"
[    38.074] (II) Module "fb" already built-in
[    38.074] (==) modeset(G0): Depth 24, (==) framebuffer bpp 32
[    38.074] (==) modeset(G0): RGB weight 888
[    38.074] (==) modeset(G0): Default visual is TrueColor
[    38.074] (II) Loading sub module "glamoregl"
[    38.074] (II) LoadModule: "glamoregl"
[    38.074] (II) Loading /usr/lib/xorg/modules/libglamoregl.so
[    38.074] (II) Module glamoregl: vendor="X.Org Foundation"
[    38.074] 	compiled for 1.21.1.8, module version = 1.0.1
[    38.074] 	ABI class: X.Org ANSI C Emulation, version 0.4
[    38.082] (II) modeset(G0): glamor X acceleration enabled on AMD Radeon Graphics (renoir, LLVM 15.0.7, DRM 3.52, 6.3.3-arch1-1)
[    38.082] (II) modeset(G0): glamor initialized
[    38.083] (II) modeset(G0): Output HDMI-1-2 has no monitor section
[    38.083] (II) modeset(G0): Output DVI-D-1-1 has no monitor section
[    38.083] (II) modeset(G0): Output DP-1-4 has no monitor section
[    38.083] (II) modeset(G0): EDID for output HDMI-1-2
[    38.083] (II) modeset(G0): EDID for output DVI-D-1-1
[    38.083] (II) modeset(G0): EDID for output DP-1-4
[    38.083] (==) modeset(G0): Using gamma correction (1.0, 1.0, 1.0)
[    38.083] (==) modeset(G0): DPI set to (96, 96)
[    38.083] (II) Loading sub module "fb"
[    38.083] (II) LoadModule: "fb"
[    38.083] (II) Module "fb" already built-in
[    38.087] (==) modeset(0): Backing store enabled
[    38.087] (==) modeset(0): Silken mouse enabled
[    38.119] (II) modeset(0): Initializing kms color map for depth 24, 8 bpc.
[    38.119] (==) modeset(0): DPMS enabled
[    38.119] (II) modeset(0): [DRI2] Setup complete
[    38.119] (II) modeset(0): [DRI2]   DRI driver: nouveau
[    38.119] (II) modeset(0): [DRI2]   VDPAU driver: nouveau
[    38.124] (==) modeset(G0): Backing store enabled
[    38.124] (==) modeset(G0): Silken mouse enabled
[    38.125] (II) modeset(G0): Initializing kms color map for depth 24, 8 bpc.
[    38.125] (==) modeset(G0): DPMS enabled
[    38.125] (II) modeset(G0): [DRI2] Setup complete
[    38.125] (II) modeset(G0): [DRI2]   DRI driver: radeonsi
[    38.125] (II) modeset(G0): [DRI2]   VDPAU driver: radeonsi
[    38.125] (II) Initializing extension Generic Event Extension
[    38.125] (II) Initializing extension SHAPE
[    38.125] (II) Initializing extension MIT-SHM
[    38.125] (II) Initializing extension XInputExtension
[    38.125] (II) Initializing extension XTEST
[    38.125] (II) Initializing extension BIG-REQUESTS
[    38.125] (II) Initializing extension SYNC
[    38.125] (II) Initializing extension XKEYBOARD
[    38.125] (II) Initializing extension XC-MISC
[    38.126] (II) Initializing extension SECURITY
[    38.126] (II) Initializing extension XFIXES
[    38.126] (II) Initializing extension RENDER
[    38.126] (II) Initializing extension RANDR
[    38.126] (II) Initializing extension COMPOSITE
[    38.126] (II) Initializing extension DAMAGE
[    38.126] (II) Initializing extension MIT-SCREEN-SAVER
[    38.126] (II) Initializing extension DOUBLE-BUFFER
[    38.126] (II) Initializing extension RECORD
[    38.126] (II) Initializing extension DPMS
[    38.126] (II) Initializing extension Present
[    38.126] (II) Initializing extension DRI3
[    38.126] (II) Initializing extension X-Resource
[    38.126] (II) Initializing extension XVideo
[    38.126] (II) Initializing extension XVideo-MotionCompensation
[    38.126] (II) Initializing extension GLX
[    38.129] (II) AIGLX: Loaded and initialized nouveau
[    38.129] (II) GLX: Initialized DRI2 GL provider for screen 0
[    38.129] (II) Initializing extension XFree86-VidModeExtension
[    38.129] (II) Initializing extension XFree86-DGA
[    38.129] (II) Initializing extension XFree86-DRI
[    38.129] (II) Initializing extension DRI2
[    38.129] (II) modeset(G0): Damage tracking initialized
[    38.129] (II) modeset(0): Damage tracking initialized
[    38.129] (II) modeset(0): Setting screen physical size to 1185 x 381
[    38.149] (II) config/udev: Adding input device Power Button (/dev/input/event1)
[    38.149] (**) Power Button: Applying InputClass "libinput keyboard catchall"
[    38.149] (II) LoadModule: "libinput"
[    38.149] (II) Loading /usr/lib/xorg/modules/input/libinput_drv.so
[    38.149] (II) Module libinput: vendor="X.Org Foundation"
[    38.149] 	compiled for 1.21.1.8, module version = 1.3.0
[    38.149] 	Module class: X.Org XInput Driver
[    38.149] 	ABI class: X.Org XInput driver, version 24.4
[    38.149] (II) Using input driver 'libinput' for 'Power Button'
[    38.150] (II) systemd-logind: got fd for /dev/input/event1 13:65 fd 31 paused 0
[    38.150] (**) Power Button: always reports core events
[    38.150] (**) Option "Device" "/dev/input/event1"
[    38.151] (II) event1  - Power Button: is tagged by udev as: Keyboard
[    38.151] (II) event1  - Power Button: device is a keyboard
[    38.151] (II) event1  - Power Button: device removed
[    38.151] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/LNXPWRBN:00/input/input1/event1"
[    38.151] (II) XINPUT: Adding extended input device "Power Button" (type: KEYBOARD, id 6)
[    38.152] (II) event1  - Power Button: is tagged by udev as: Keyboard
[    38.152] (II) event1  - Power Button: device is a keyboard
[    38.152] (II) config/udev: Adding input device Power Button (/dev/input/event0)
[    38.152] (**) Power Button: Applying InputClass "libinput keyboard catchall"
[    38.152] (II) Using input driver 'libinput' for 'Power Button'
[    38.152] (II) systemd-logind: got fd for /dev/input/event0 13:64 fd 34 paused 0
[    38.152] (**) Power Button: always reports core events
[    38.152] (**) Option "Device" "/dev/input/event0"
[    38.153] (II) event0  - Power Button: is tagged by udev as: Keyboard
[    38.153] (II) event0  - Power Button: device is a keyboard
[    38.153] (II) event0  - Power Button: device removed
[    38.153] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0C:00/input/input0/event0"
[    38.153] (II) XINPUT: Adding extended input device "Power Button" (type: KEYBOARD, id 7)
[    38.153] (II) event0  - Power Button: is tagged by udev as: Keyboard
[    38.153] (II) event0  - Power Button: device is a keyboard
[    38.153] (II) config/udev: Adding input device HDA NVidia HDMI/DP,pcm=3 (/dev/input/event14)
[    38.153] (II) No input driver specified, ignoring this device.
[    38.153] (II) This device may have been added with another device file.
[    38.154] (II) config/udev: Adding input device HDA NVidia HDMI/DP,pcm=7 (/dev/input/event15)
[    38.154] (II) No input driver specified, ignoring this device.
[    38.154] (II) This device may have been added with another device file.
[    38.154] (II) config/udev: Adding input device HDA NVidia HDMI/DP,pcm=8 (/dev/input/event16)
[    38.154] (II) No input driver specified, ignoring this device.
[    38.154] (II) This device may have been added with another device file.
[    38.154] (II) config/udev: Adding input device HDA NVidia HDMI/DP,pcm=9 (/dev/input/event17)
[    38.154] (II) No input driver specified, ignoring this device.
[    38.154] (II) This device may have been added with another device file.
[    38.154] (II) config/udev: Adding input device Kingston HyperX Cloud Core Wireless Consumer Control (/dev/input/event4)
[    38.154] (**) Kingston HyperX Cloud Core Wireless Consumer Control: Applying InputClass "libinput keyboard catchall"
[    38.154] (II) Using input driver 'libinput' for 'Kingston HyperX Cloud Core Wireless Consumer Control'
[    38.155] (II) systemd-logind: got fd for /dev/input/event4 13:68 fd 35 paused 0
[    38.155] (**) Kingston HyperX Cloud Core Wireless Consumer Control: always reports core events
[    38.155] (**) Option "Device" "/dev/input/event4"
[    38.155] (II) event4  - Kingston HyperX Cloud Core Wireless Consumer Control: is tagged by udev as: Keyboard
[    38.155] (II) event4  - Kingston HyperX Cloud Core Wireless Consumer Control: device is a keyboard
[    38.155] (II) event4  - Kingston HyperX Cloud Core Wireless Consumer Control: device removed
[    38.155] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:02.1/0000:02:00.0/usb1/1-3/1-3:1.3/0003:0951:173F.0004/input/input4/event4"
[    38.155] (II) XINPUT: Adding extended input device "Kingston HyperX Cloud Core Wireless Consumer Control" (type: KEYBOARD, id 8)
[    38.156] (II) event4  - Kingston HyperX Cloud Core Wireless Consumer Control: is tagged by udev as: Keyboard
[    38.156] (II) event4  - Kingston HyperX Cloud Core Wireless Consumer Control: device is a keyboard
[    38.156] (II) config/udev: Adding input device Kingston HyperX Cloud Core Wireless (/dev/input/event5)
[    38.156] (II) No input driver specified, ignoring this device.
[    38.156] (II) This device may have been added with another device file.
[    38.157] (II) config/udev: Adding input device Kingston HyperX Cloud Core Wireless (/dev/input/event6)
[    38.157] (II) No input driver specified, ignoring this device.
[    38.157] (II) This device may have been added with another device file.
[    38.157] (II) config/udev: Adding input device HD-Audio Generic HDMI/DP,pcm=3 (/dev/input/event13)
[    38.157] (II) No input driver specified, ignoring this device.
[    38.157] (II) This device may have been added with another device file.
[    38.157] (II) config/udev: Adding input device HID Keyboard HID Keyboard (/dev/input/event2)
[    38.157] (**) HID Keyboard HID Keyboard: Applying InputClass "libinput keyboard catchall"
[    38.157] (II) Using input driver 'libinput' for 'HID Keyboard HID Keyboard'
[    38.158] (II) systemd-logind: got fd for /dev/input/event2 13:66 fd 36 paused 0
[    38.158] (**) HID Keyboard HID Keyboard: always reports core events
[    38.158] (**) Option "Device" "/dev/input/event2"
[    38.158] (II) event2  - HID Keyboard HID Keyboard: is tagged by udev as: Keyboard
[    38.158] (II) event2  - HID Keyboard HID Keyboard: device is a keyboard
[    38.158] (II) event2  - HID Keyboard HID Keyboard: device removed
[    38.158] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:08.1/0000:0c:00.4/usb5/5-1/5-1:1.0/0003:04B4:0510.0001/input/input2/event2"
[    38.158] (II) XINPUT: Adding extended input device "HID Keyboard HID Keyboard" (type: KEYBOARD, id 9)
[    38.159] (II) event2  - HID Keyboard HID Keyboard: is tagged by udev as: Keyboard
[    38.159] (II) event2  - HID Keyboard HID Keyboard: device is a keyboard
[    38.159] (II) config/udev: Adding input device HID Keyboard HID Keyboard (/dev/input/event3)
[    38.159] (**) HID Keyboard HID Keyboard: Applying InputClass "libinput keyboard catchall"
[    38.159] (II) Using input driver 'libinput' for 'HID Keyboard HID Keyboard'
[    38.160] (II) systemd-logind: got fd for /dev/input/event3 13:67 fd 37 paused 0
[    38.160] (**) HID Keyboard HID Keyboard: always reports core events
[    38.160] (**) Option "Device" "/dev/input/event3"
[    38.161] (II) event3  - HID Keyboard HID Keyboard: is tagged by udev as: Keyboard
[    38.161] (II) event3  - HID Keyboard HID Keyboard: device is a keyboard
[    38.161] (II) event3  - HID Keyboard HID Keyboard: device removed
[    38.161] (II) libinput: HID Keyboard HID Keyboard: needs a virtual subdevice
[    38.161] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:08.1/0000:0c:00.4/usb5/5-1/5-1:1.1/0003:04B4:0510.0002/input/input3/event3"
[    38.161] (II) XINPUT: Adding extended input device "HID Keyboard HID Keyboard" (type: MOUSE, id 10)
[    38.161] (**) Option "AccelerationScheme" "none"
[    38.161] (**) HID Keyboard HID Keyboard: (accel) selected scheme none/0
[    38.161] (**) HID Keyboard HID Keyboard: (accel) acceleration factor: 2.000
[    38.161] (**) HID Keyboard HID Keyboard: (accel) acceleration threshold: 4
[    38.162] (II) event3  - HID Keyboard HID Keyboard: is tagged by udev as: Keyboard
[    38.162] (II) event3  - HID Keyboard HID Keyboard: device is a keyboard
[    38.162] (II) config/udev: Adding input device Razer Razer Abyssus V2 (/dev/input/event7)
[    38.162] (**) Razer Razer Abyssus V2: Applying InputClass "libinput pointer catchall"
[    38.162] (II) Using input driver 'libinput' for 'Razer Razer Abyssus V2'
[    38.217] (II) systemd-logind: got fd for /dev/input/event7 13:71 fd 38 paused 0
[    38.217] (**) Razer Razer Abyssus V2: always reports core events
[    38.217] (**) Option "Device" "/dev/input/event7"
[    38.218] (II) event7  - Razer Razer Abyssus V2: is tagged by udev as: Mouse
[    38.218] (II) event7  - Razer Razer Abyssus V2: device is a pointer
[    38.218] (II) event7  - Razer Razer Abyssus V2: device removed
[    38.218] (II) libinput: Razer Razer Abyssus V2: Step value 0 was provided, libinput Fallback acceleration function is used.
[    38.218] (II) libinput: Razer Razer Abyssus V2: Step value 0 was provided, libinput Fallback acceleration function is used.
[    38.218] (II) libinput: Razer Razer Abyssus V2: Step value 0 was provided, libinput Fallback acceleration function is used.
[    38.218] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:08.1/0000:0c:00.4/usb5/5-2/5-2:1.0/0003:1532:005B.0005/input/input7/event7"
[    38.218] (II) XINPUT: Adding extended input device "Razer Razer Abyssus V2" (type: MOUSE, id 11)
[    38.218] (**) Option "AccelerationScheme" "none"
[    38.218] (**) Razer Razer Abyssus V2: (accel) selected scheme none/0
[    38.218] (**) Razer Razer Abyssus V2: (accel) acceleration factor: 2.000
[    38.218] (**) Razer Razer Abyssus V2: (accel) acceleration threshold: 4
[    38.219] (II) event7  - Razer Razer Abyssus V2: is tagged by udev as: Mouse
[    38.219] (II) event7  - Razer Razer Abyssus V2: device is a pointer
[    38.219] (II) config/udev: Adding input device Razer Razer Abyssus V2 (/dev/input/mouse0)
[    38.219] (II) No input driver specified, ignoring this device.
[    38.219] (II) This device may have been added with another device file.
[    38.220] (II) config/udev: Adding input device Razer Razer Abyssus V2 Keyboard (/dev/input/event8)
[    38.220] (**) Razer Razer Abyssus V2 Keyboard: Applying InputClass "libinput keyboard catchall"
[    38.220] (II) Using input driver 'libinput' for 'Razer Razer Abyssus V2 Keyboard'
[    38.220] (II) systemd-logind: got fd for /dev/input/event8 13:72 fd 39 paused 0
[    38.220] (**) Razer Razer Abyssus V2 Keyboard: always reports core events
[    38.220] (**) Option "Device" "/dev/input/event8"
[    38.221] (II) event8  - Razer Razer Abyssus V2 Keyboard: is tagged by udev as: Keyboard
[    38.221] (II) event8  - Razer Razer Abyssus V2 Keyboard: device is a keyboard
[    38.221] (II) event8  - Razer Razer Abyssus V2 Keyboard: device removed
[    38.221] (II) libinput: Razer Razer Abyssus V2 Keyboard: needs a virtual subdevice
[    38.221] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:08.1/0000:0c:00.4/usb5/5-2/5-2:1.1/0003:1532:005B.0006/input/input8/event8"
[    38.221] (II) XINPUT: Adding extended input device "Razer Razer Abyssus V2 Keyboard" (type: MOUSE, id 12)
[    38.221] (**) Option "AccelerationScheme" "none"
[    38.221] (**) Razer Razer Abyssus V2 Keyboard: (accel) selected scheme none/0
[    38.221] (**) Razer Razer Abyssus V2 Keyboard: (accel) acceleration factor: 2.000
[    38.221] (**) Razer Razer Abyssus V2 Keyboard: (accel) acceleration threshold: 4
[    38.222] (II) event8  - Razer Razer Abyssus V2 Keyboard: is tagged by udev as: Keyboard
[    38.222] (II) event8  - Razer Razer Abyssus V2 Keyboard: device is a keyboard
[    38.222] (II) config/udev: Adding input device Razer Razer Abyssus V2 (/dev/input/event9)
[    38.222] (II) No input driver specified, ignoring this device.
[    38.222] (II) This device may have been added with another device file.
[    38.222] (II) config/udev: Adding input device Razer Razer Abyssus V2 (/dev/input/event10)
[    38.222] (**) Razer Razer Abyssus V2: Applying InputClass "libinput keyboard catchall"
[    38.222] (II) Using input driver 'libinput' for 'Razer Razer Abyssus V2'
[    38.223] (II) systemd-logind: got fd for /dev/input/event10 13:74 fd 40 paused 0
[    38.223] (**) Razer Razer Abyssus V2: always reports core events
[    38.223] (**) Option "Device" "/dev/input/event10"
[    38.223] (II) event10 - Razer Razer Abyssus V2: is tagged by udev as: Keyboard
[    38.224] (II) event10 - Razer Razer Abyssus V2: device is a keyboard
[    38.224] (II) event10 - Razer Razer Abyssus V2: device removed
[    38.224] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:08.1/0000:0c:00.4/usb5/5-2/5-2:1.2/0003:1532:005B.0007/input/input10/event10"
[    38.224] (II) XINPUT: Adding extended input device "Razer Razer Abyssus V2" (type: KEYBOARD, id 13)
[    38.224] (II) event10 - Razer Razer Abyssus V2: is tagged by udev as: Keyboard
[    38.224] (II) event10 - Razer Razer Abyssus V2: device is a keyboard
[    38.225] (II) config/udev: Adding input device HD-Audio Generic Front Mic (/dev/input/event18)
[    38.225] (II) No input driver specified, ignoring this device.
[    38.225] (II) This device may have been added with another device file.
[    38.225] (II) config/udev: Adding input device HD-Audio Generic Rear Mic (/dev/input/event19)
[    38.225] (II) No input driver specified, ignoring this device.
[    38.225] (II) This device may have been added with another device file.
[    38.225] (II) config/udev: Adding input device HD-Audio Generic Line (/dev/input/event20)
[    38.225] (II) No input driver specified, ignoring this device.
[    38.225] (II) This device may have been added with another device file.
[    38.225] (II) config/udev: Adding input device HD-Audio Generic Line Out (/dev/input/event21)
[    38.225] (II) No input driver specified, ignoring this device.
[    38.225] (II) This device may have been added with another device file.
[    38.225] (II) config/udev: Adding input device HD-Audio Generic Front Headphone (/dev/input/event22)
[    38.225] (II) No input driver specified, ignoring this device.
[    38.225] (II) This device may have been added with another device file.
[    38.225] (II) config/udev: Adding input device Asus WMI hotkeys (/dev/input/event12)
[    38.225] (**) Asus WMI hotkeys: Applying InputClass "libinput keyboard catchall"
[    38.225] (II) Using input driver 'libinput' for 'Asus WMI hotkeys'
[    38.226] (II) systemd-logind: got fd for /dev/input/event12 13:76 fd 41 paused 0
[    38.226] (**) Asus WMI hotkeys: always reports core events
[    38.226] (**) Option "Device" "/dev/input/event12"
[    38.226] (II) event12 - Asus WMI hotkeys: is tagged by udev as: Keyboard
[    38.226] (II) event12 - Asus WMI hotkeys: device is a keyboard
[    38.226] (II) event12 - Asus WMI hotkeys: device removed
[    38.226] (**) Option "config_info" "udev:/sys/devices/platform/asus-nb-wmi/input/input12/event12"
[    38.226] (II) XINPUT: Adding extended input device "Asus WMI hotkeys" (type: KEYBOARD, id 14)
[    38.227] (II) event12 - Asus WMI hotkeys: is tagged by udev as: Keyboard
[    38.227] (II) event12 - Asus WMI hotkeys: device is a keyboard
[    38.227] (II) config/udev: Adding input device PC Speaker (/dev/input/event11)
[    38.227] (II) No input driver specified, ignoring this device.
[    38.227] (II) This device may have been added with another device file.
[    38.229] (**) HID Keyboard HID Keyboard: Applying InputClass "libinput keyboard catchall"
[    38.229] (II) Using input driver 'libinput' for 'HID Keyboard HID Keyboard'
[    38.229] (II) systemd-logind: returning pre-existing fd for /dev/input/event3 13:67
[    38.229] (**) HID Keyboard HID Keyboard: always reports core events
[    38.229] (**) Option "Device" "/dev/input/event3"
[    38.229] (II) libinput: HID Keyboard HID Keyboard: is a virtual subdevice
[    38.229] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:08.1/0000:0c:00.4/usb5/5-1/5-1:1.1/0003:04B4:0510.0002/input/input3/event3"
[    38.229] (II) XINPUT: Adding extended input device "HID Keyboard HID Keyboard" (type: KEYBOARD, id 15)
[    38.230] (**) Razer Razer Abyssus V2 Keyboard: Applying InputClass "libinput keyboard catchall"
[    38.230] (II) Using input driver 'libinput' for 'Razer Razer Abyssus V2 Keyboard'
[    38.230] (II) systemd-logind: returning pre-existing fd for /dev/input/event8 13:72
[    38.230] (**) Razer Razer Abyssus V2 Keyboard: always reports core events
[    38.230] (**) Option "Device" "/dev/input/event8"
[    38.230] (II) libinput: Razer Razer Abyssus V2 Keyboard: is a virtual subdevice
[    38.230] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:08.1/0000:0c:00.4/usb5/5-2/5-2:1.1/0003:1532:005B.0006/input/input8/event8"
[    38.230] (II) XINPUT: Adding extended input device "Razer Razer Abyssus V2 Keyboard" (type: KEYBOARD, id 16)

Admittedly, this instance of xorg failed to start my window manager. When I end an xorg session and try to start another, the tty freezes (or at least, my input devices become unresposive), only fixable by killing the process remotely or force shutting down my PC. This is the other issue I mentioned, and the reason I attempted installation of proprietary drivers, though this issue might be better served in a different forum. I've tried comparing this log with successful logs, though have found nothing to go off of myself. Unless the issue is obvious to you, it would be better to ignore this.

Unrelated, but see the last link below…

I see. My usual .xinitrc is a copy of the default with the launched programs changed, so this is not a problem.

#6 2023-05-23 00:37:31

bd-912
Guest

Re: [Solved] Unexpected xrandr behavior

https://wiki.archlinux.org/title/Kernel … odesetting

Changing this kernel mode settings in grub's configuration files allowed me to boot with the correct driver. I am just experimenting with the new driver now, though it seems like the other problems, including the original problem configuring my monitors, have been solved. I'll mark this as solved when I'm confident this issue is fixed.

Thank you very much, Seth.

Board footer

Powered by FluxBB