You are not logged in.

#1 2025-03-24 10:10:34

Frankwarch
Member
Registered: 2024-02-12
Posts: 36

[SOLVED] XOrg repeating volume keypresses indefinitely

TL;DR: Increase or decrease volume keys kept being pressed infinitely. The keyboard was physically broken.

Hi all,

I've been facing an issue lately where, whenever I hold the keys for lowering or raising the volume, they would just keep being pressed indefinitely even if I released them, until I pressed them again, after which they stopped repeating. For the raising key, this would skyrocket my volume instantly, and for the lowering key it would just set it to zero.

I use sxhkd to control the keymappings and pactl to control the volume:

{XF86AudioRaiseVolume,XF86AudioLowerVolume}
	pactl set-sink-volume @DEFAULT_SINK@ {+5%,-5%}

The issue can't be with pactl since when changing the command to a debug notify-send, the issue persisted (now sending a bunch of notifications instead of messing with the volume). I also attempted to change my audio-key-handling from sxhkd to i3wm and the same thing happened.

When tracking keypresses with xev, they seem to be registered normally. With xinput test, however, a bunch of inputs appear. I tried changing xset r rate in my .xinitrc and the same thing happened, but at different speeds.

This issue does not seem to happen with other fn keys. Brightness for instance works just fine and I handle it with sxhkd too. I have a Lenovo Thinkbook 7, if that matters.

Any clues? Thanks in advance.

Last edited by Frankwarch (2025-03-25 10:52:28)


New to Arch and Linux in general. Very happy for now!

Offline

#2 2025-03-24 14:02:12

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

Re: [SOLVED] XOrg repeating volume keypresses indefinitely

Most likely the key gets stuck, triggering an autorepeat loop?
You can disable AR for individual keys, "xset -r <keycode>", keycode is likely 123 - xev will tell.

Also inspect the keyboard, there may be a physical reason for this.

Offline

#3 2025-03-24 14:12:24

Frankwarch
Member
Registered: 2024-02-12
Posts: 36

Re: [SOLVED] XOrg repeating volume keypresses indefinitely

Hadn't thought about the possibility of it being a hardware thing. Would be a shame since the laptop is just three months old and I bought it directly from the manufacturer. I don't want to open it up to clean it until I'm 100% sure it's a hardware thing since I'd lose warranty.

Disabling autorepetition does kinda make the issue go away, but I liked being able to hold the keys down and not having to press them a bunch of times.

Something I forgot to mention in my first post is that when the bug happens (with AR on; haven't tried without AR), my keyboard stops being registered until I press the audio keys again. This is different to the usual behavior when holding down a key and pressing another.


New to Arch and Linux in general. Very happy for now!

Offline

#4 2025-03-24 14:33:29

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

Re: [SOLVED] XOrg repeating volume keypresses indefinitely

This is different to the usual behavior when holding down a key and pressing another.

Does this hold for modifiers like ctrl or can you under normal circumstances use volup+a (or whatever you tested)?

The keyboard is usually a unit, you don't have to open the system and you typically cannot disassemble the keyboard itself.
Does the key feel "soft" or was there a CocaCola™ incident or does it jam against the case (if it's a chiclet)?

Offline

#5 2025-03-24 14:59:43

Frankwarch
Member
Registered: 2024-02-12
Posts: 36

Re: [SOLVED] XOrg repeating volume keypresses indefinitely

Does this hold for modifiers

I can hold down a modifier (tried with super and meta) and another "regular" key and get repeated outputs, if that's what you're asking. None of them "block" my keyboard like the volume keys do. Simply the most recently struck key "overrides" the input. I can even do this with the brightness keys + some other key.

Does the key feel (...)

The key feels completely normal and no liquids have touched my computer, that I remember. It was expensive, y'know :'D.

Besides, if this was a physical thing, wouldn't xev register a lot of keystrokes? On the other hand, even after disabling AR for the volume keys (codes were 122 and 123, by the way) the keyboard still stops working until I press the volume keys again. So I don't know what to think...


New to Arch and Linux in general. Very happy for now!

Offline

#6 2025-03-24 15:15:21

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

Re: [SOLVED] XOrg repeating volume keypresses indefinitely

wouldn't xev register a lot of keystrokes

Not if the key is bound to some global shortcut. Otherwise yes.

if that's what you're asking

The plan was to compare the nkro for that specific key when it's stuck with when it's not stuck.
It's only volume up, volume down isn't affected and both are bound to the same kind of shortcut actions?

the keyboard still stops working until I press the volume keys again. So I don't know what to think...

Disabling the AR will only prevent the server from generating synthetic events for a key that wasn't moved up.
It will not fix any condition the key is in.

To test whether this is a physical thing, you can try "xdotook keyup XF86AudioRaiseVolume"

Last edited by seth (2025-03-24 15:18:13)

Offline

#7 2025-03-24 15:41:06

Frankwarch
Member
Registered: 2024-02-12
Posts: 36

Re: [SOLVED] XOrg repeating volume keypresses indefinitely

The plan was to compare the nkro for that specific key when it's stuck with when it's not stuck.

Oh, okay. Then no, while holding either one of the volume keys, the input for other keys doesn't seem to be registered.

xdotool keyup didn't do anything (as expected):

$ xdotool keyup XF86AudioLowerVolume
$ xdotool keyup XF86AudioRaiseVolume
$

However xdotool keydown on any of the keys does trigger the bug, until I press the keys again. So maybe keyup events are not being physically registered? Weird it's only on the volume keys. It also always seem to work the second time I hit the keys and never happens if I quickly press and release them.


New to Arch and Linux in general. Very happy for now!

Offline

#8 2025-03-24 15:46:09

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

Re: [SOLVED] XOrg repeating volume keypresses indefinitely

However xdotool keydown on any of the keys does trigger the bug

That's kinda expected, you're effectively holding the key down this way (but should release it w/ a subsequent keyup out of this state?)

Make sure the keys aren't bound to any global action - does the problem then remain?
Do any event handling issues ("your pathetic system is too slow to use a keyboard" sounding stuff) in your Xorg log, https://wiki.archlinux.org/title/Xorg#General ?

Last edited by seth (2025-03-24 15:46:21)

Offline

#9 2025-03-24 15:59:54

Frankwarch
Member
Registered: 2024-02-12
Posts: 36

Re: [SOLVED] XOrg repeating volume keypresses indefinitely

Make sure the keys aren't bound to any global action

Sorry, what do  you mean by a global action?

There seem to be no related errors at the log ($HOME/.local/share/xorg/Xorg.0.log):

[   219.595] 
X.Org X Server 1.21.1.16
X Protocol Version 11, Revision 0
[   219.595] Current Operating System: Linux archfrank-laptop 6.13.7-zen1-1-zen #1 ZEN SMP PREEMPT_DYNAMIC Thu, 13 Mar 2025 18:11:42 +0000 x86_64
[   219.595] Kernel command line: initrd=\initramfs-linux-zen.img root=PARTUUID=6776b005-2ce2-4986-92b1-e669fa016295 zswap.enabled=0 rw rootfstype=ext4
[   219.595]  
[   219.595] Current version of pixman: 0.44.2
[   219.595] 	Before reporting problems, check http://wiki.x.org
	to make sure that you have the latest version.
[   219.595] Markers: (--) probed, (**) from config file, (==) default setting,
	(++) from command line, (!!) notice, (II) informational,
	(WW) warning, (EE) error, (NI) not implemented, (??) unknown.
[   219.595] (==) Log file: "/home/frank/.local/share/xorg/Xorg.0.log", Time: Mon Mar 24 15:34:45 2025
[   219.596] (==) Using config directory: "/etc/X11/xorg.conf.d"
[   219.596] (==) Using system config directory "/usr/share/X11/xorg.conf.d"
[   219.596] (==) No Layout section.  Using the first Screen section.
[   219.596] (==) No screen section available. Using defaults.
[   219.596] (**) |-->Screen "Default Screen Section" (0)
[   219.596] (**) |   |-->Monitor "<default monitor>"
[   219.596] (==) No monitor specified for screen "Default Screen Section".
	Using a default monitor configuration.
[   219.596] (**) Allowing byte-swapped clients
[   219.596] (==) Automatically adding devices
[   219.596] (==) Automatically enabling devices
[   219.596] (==) Automatically adding GPU devices
[   219.596] (==) Automatically binding GPU devices
[   219.596] (==) Max clients allowed: 256, resource mask: 0x1fffff
[   219.596] (WW) The directory "/usr/share/fonts/misc" does not exist.
[   219.596] 	Entry deleted from font path.
[   219.596] (WW) `fonts.dir' not found (or not valid) in "/usr/share/fonts/TTF".
[   219.596] 	Entry deleted from font path.
[   219.596] 	(Run 'mkfontdir' on "/usr/share/fonts/TTF").
[   219.596] (WW) `fonts.dir' not found (or not valid) in "/usr/share/fonts/OTF".
[   219.596] 	Entry deleted from font path.
[   219.596] 	(Run 'mkfontdir' on "/usr/share/fonts/OTF").
[   219.596] (WW) The directory "/usr/share/fonts/Type1" does not exist.
[   219.596] 	Entry deleted from font path.
[   219.596] (WW) The directory "/usr/share/fonts/100dpi" does not exist.
[   219.596] 	Entry deleted from font path.
[   219.596] (WW) The directory "/usr/share/fonts/75dpi" does not exist.
[   219.596] 	Entry deleted from font path.
[   219.596] (==) FontPath set to:
	
[   219.596] (==) ModulePath set to "/usr/lib/xorg/modules"
[   219.596] (II) The server relies on udev to provide the list of input devices.
	If no devices become available, reconfigure udev or disable AutoAddDevices.
[   219.596] (II) Module ABI versions:
[   219.596] 	X.Org ANSI C Emulation: 0.4
[   219.596] 	X.Org Video Driver: 25.2
[   219.596] 	X.Org XInput driver : 24.4
[   219.596] 	X.Org Server Extension : 10.0
[   219.596] (++) using VT number 1

[   219.597] (II) systemd-logind: took control of session /org/freedesktop/login1/session/_36
[   219.598] (II) xfree86: Adding drm device (/dev/dri/card1)
[   219.598] (II) Platform probe for /sys/devices/pci0000:00/0000:00:02.0/drm/card1
[   219.598] (II) systemd-logind: got fd for /dev/dri/card1 226:1 fd 13 paused 0
[   219.600] (--) PCI:*(0@0:2:0) 8086:7d55:17aa:3f96 rev 8, Mem @ 0x4818000000/16777216, 0x4000000000/268435456, BIOS @ 0x????????/131072
[   219.600] (WW) Open ACPI failed (/var/run/acpid.socket) (No such file or directory)
[   219.600] (II) LoadModule: "glx"
[   219.600] (II) Loading /usr/lib/xorg/modules/extensions/libglx.so
[   219.602] (II) Module glx: vendor="X.Org Foundation"
[   219.602] 	compiled for 1.21.1.16, module version = 1.0.0
[   219.602] 	ABI class: X.Org Server Extension, version 10.0
[   219.602] (==) Matched intel as autoconfigured driver 0
[   219.602] (==) Matched modesetting as autoconfigured driver 1
[   219.602] (==) Matched fbdev as autoconfigured driver 2
[   219.602] (==) Matched vesa as autoconfigured driver 3
[   219.602] (==) Assigned the driver to the xf86ConfigLayout
[   219.602] (II) LoadModule: "intel"
[   219.602] (WW) Warning, couldn't open module intel
[   219.602] (EE) Failed to load module "intel" (module does not exist, 0)
[   219.602] (II) LoadModule: "modesetting"
[   219.602] (II) Loading /usr/lib/xorg/modules/drivers/modesetting_drv.so
[   219.602] (II) Module modesetting: vendor="X.Org Foundation"
[   219.602] 	compiled for 1.21.1.16, module version = 1.21.1
[   219.602] 	Module class: X.Org Video Driver
[   219.602] 	ABI class: X.Org Video Driver, version 25.2
[   219.602] (II) LoadModule: "fbdev"
[   219.602] (WW) Warning, couldn't open module fbdev
[   219.602] (EE) Failed to load module "fbdev" (module does not exist, 0)
[   219.602] (II) LoadModule: "vesa"
[   219.602] (WW) Warning, couldn't open module vesa
[   219.602] (EE) Failed to load module "vesa" (module does not exist, 0)
[   219.602] (II) modesetting: Driver for Modesetting Kernel Drivers: kms
[   219.602] (II) modeset(0): using drv /dev/dri/card1
[   219.602] (WW) VGA arbiter: cannot open kernel arbiter, no multi-card support
[   219.602] (II) modeset(0): Creating default Display subsection in Screen section
	"Default Screen Section" for depth/fbbpp 24/32
[   219.602] (==) modeset(0): Depth 24, (==) framebuffer bpp 32
[   219.602] (==) modeset(0): RGB weight 888
[   219.602] (==) modeset(0): Default visual is TrueColor
[   219.602] (II) Loading sub module "glamoregl"
[   219.602] (II) LoadModule: "glamoregl"
[   219.602] (II) Loading /usr/lib/xorg/modules/libglamoregl.so
[   219.605] (II) Module glamoregl: vendor="X.Org Foundation"
[   219.605] 	compiled for 1.21.1.16, module version = 1.0.1
[   219.605] 	ABI class: X.Org ANSI C Emulation, version 0.4
[   219.639] (II) modeset(0): glamor X acceleration enabled on Mesa Intel(R) Arc(tm) Graphics (MTL)
[   219.639] (II) modeset(0): glamor initialized
[   219.639] (==) modeset(0): VariableRefresh: disabled
[   219.639] (==) modeset(0): AsyncFlipSecondaries: disabled
[   219.641] (II) modeset(0): Output eDP-1 has no monitor section
[   219.646] (II) modeset(0): Output HDMI-1 has no monitor section
[   219.646] (II) modeset(0): Output DP-1 has no monitor section
[   219.646] (II) modeset(0): Output DP-2 has no monitor section
[   219.646] (II) modeset(0): Output DP-3 has no monitor section
[   219.646] (II) modeset(0): Output DP-4 has no monitor section
[   219.648] (II) modeset(0): EDID for output eDP-1
[   219.648] (II) modeset(0): Manufacturer: BOE  Model: ce3  Serial#: 0
[   219.648] (II) modeset(0): Year: 2024  Week: 12
[   219.648] (II) modeset(0): EDID Version: 1.4
[   219.648] (II) modeset(0): Digital Display Input
[   219.648] (II) modeset(0): 8 bits per channel
[   219.648] (II) modeset(0): Digital interface is DisplayPort
[   219.648] (II) modeset(0): Max Image Size [cm]: horiz.: 30  vert.: 19
[   219.648] (II) modeset(0): Gamma: 2.20
[   219.648] (II) modeset(0): No DPMS capabilities specified
[   219.648] (II) modeset(0): Supported color encodings: RGB 4:4:4 
[   219.648] (II) modeset(0): First detailed timing is preferred mode
[   219.648] (II) modeset(0): Preferred mode is native pixel format and refresh rate
[   219.648] (II) modeset(0): Display is continuous-frequency
[   219.648] (II) modeset(0): redX: 0.588 redY: 0.365   greenX: 0.346 greenY: 0.582
[   219.648] (II) modeset(0): blueX: 0.161 blueY: 0.115   whiteX: 0.313 whiteY: 0.329
[   219.648] (II) modeset(0): Manufacturer's mask: 0
[   219.648] (II) modeset(0): Supported detailed timing:
[   219.648] (II) modeset(0): clock: 161.8 MHz   Image Size:  302 x 188 mm
[   219.648] (II) modeset(0): h_active: 1920  h_sync: 1968  h_sync_end 2000 h_blank_end 2140 h_border: 0
[   219.648] (II) modeset(0): v_active: 1200  v_sync: 1203  v_sync_end 1209 v_blanking: 1260 v_border: 0
[   219.648] (II) modeset(0): Ranges: V min: 40 V max: 60 Hz, H min: 76 H max: 76 kHz, PixClock max 165 MHz
[   219.648] (II) modeset(0):  BOE CQ
[   219.648] (II) modeset(0): Monitor name: NV140WUM-N4H
[   219.648] (II) modeset(0): Number of EDID sections to follow: 1
[   219.648] (II) modeset(0): EDID (in hex):
[   219.648] (II) modeset(0): 	00ffffffffffff0009e5e30c00000000
[   219.648] (II) modeset(0): 	0c220104a51e137803a865965d589529
[   219.648] (II) modeset(0): 	1d505400000001010101010101010101
[   219.648] (II) modeset(0): 	010101010101333f80dc70b03c403020
[   219.648] (II) modeset(0): 	36002ebc1000001a000000fd00283c4c
[   219.648] (II) modeset(0): 	4c10010a202020202020000000fe0042
[   219.648] (II) modeset(0): 	4f452043510a202020202020000000fc
[   219.648] (II) modeset(0): 	004e5631343057554d2d4e34480a0164
[   219.648] (II) modeset(0): 	7020790200810015741a00000301283c
[   219.648] (II) modeset(0): 	0000535153513c000000008000000000
[   219.648] (II) modeset(0): 	00000000000000000000000000000000
[   219.648] (II) modeset(0): 	00000000000000000000000000000000
[   219.648] (II) modeset(0): 	00000000000000000000000000000000
[   219.648] (II) modeset(0): 	00000000000000000000000000000000
[   219.648] (II) modeset(0): 	00000000000000000000000000000000
[   219.648] (II) modeset(0): 	0000000000000000000000000000d590
[   219.648] (II) modeset(0): Not using default mode "1920x1080" (bad mode clock/interlace/doublescan)
[   219.648] (II) modeset(0): Not using default mode "1440x810" (bad mode clock/interlace/doublescan)
[   219.648] (II) modeset(0): Not using default mode "1600x900" (bad mode clock/interlace/doublescan)
[   219.648] (II) modeset(0): Not using default mode "1600x900" (bad mode clock/interlace/doublescan)
[   219.648] (II) modeset(0): Not using default mode "1920x1080" (bad mode clock/interlace/doublescan)
[   219.648] (II) modeset(0): Not using default mode "1920x1080" (bad mode clock/interlace/doublescan)
[   219.648] (II) modeset(0): Not using default mode "1920x1200" (bad mode clock/interlace/doublescan)
[   219.648] (II) modeset(0): Not using default mode "1280x800" (bad mode clock/interlace/doublescan)
[   219.648] (II) modeset(0): Printing probed modes for output eDP-1
[   219.648] (II) modeset(0): Modeline "1920x1200"x60.0  161.79  1920 1968 2000 2140  1200 1203 1209 1260 +hsync -vsync (75.6 kHz eP)
[   219.648] (II) modeset(0): Modeline "1920x1200"x60.0  154.00  1920 1968 2000 2080  1200 1203 1209 1235 +hsync -vsync (74.0 kHz d)
[   219.648] (II) modeset(0): Modeline "1920x1080"x59.9  138.50  1920 1968 2000 2080  1080 1083 1088 1111 +hsync -vsync (66.6 kHz d)
[   219.648] (II) modeset(0): Modeline "1600x1200"x60.0  162.00  1600 1664 1856 2160  1200 1201 1204 1250 +hsync +vsync (75.0 kHz d)
[   219.648] (II) modeset(0): Modeline "1680x1050"x60.0  146.25  1680 1784 1960 2240  1050 1053 1059 1089 -hsync +vsync (65.3 kHz d)
[   219.648] (II) modeset(0): Modeline "1680x1050"x59.9  119.00  1680 1728 1760 1840  1050 1053 1059 1080 +hsync -vsync (64.7 kHz d)
[   219.648] (II) modeset(0): Modeline "1400x1050"x60.0  122.00  1400 1488 1640 1880  1050 1052 1064 1082 +hsync +vsync (64.9 kHz d)
[   219.648] (II) modeset(0): Modeline "1600x900"x59.9  118.25  1600 1696 1856 2112  900 903 908 934 -hsync +vsync (56.0 kHz d)
[   219.648] (II) modeset(0): Modeline "1600x900"x59.8   97.50  1600 1648 1680 1760  900 903 908 926 +hsync -vsync (55.4 kHz d)
[   219.648] (II) modeset(0): Modeline "1280x1024"x60.0  108.00  1280 1328 1440 1688  1024 1025 1028 1066 +hsync +vsync (64.0 kHz d)
[   219.648] (II) modeset(0): Modeline "1400x900"x60.0  103.50  1400 1480 1624 1848  900 903 913 934 -hsync +vsync (56.0 kHz d)
[   219.648] (II) modeset(0): Modeline "1400x900"x59.9   86.50  1400 1448 1480 1560  900 903 913 926 +hsync -vsync (55.4 kHz d)
[   219.648] (II) modeset(0): Modeline "1280x960"x60.0  108.00  1280 1376 1488 1800  960 961 964 1000 +hsync +vsync (60.0 kHz d)
[   219.648] (II) modeset(0): Modeline "1440x810"x60.0  151.88  1440 1464 1480 1520  810 811 814 833 doublescan +hsync -vsync (99.9 kHz d)
[   219.648] (II) modeset(0): Modeline "1368x768"x59.9   85.25  1368 1440 1576 1784  768 771 781 798 -hsync +vsync (47.8 kHz d)
[   219.648] (II) modeset(0): Modeline "1368x768"x59.9   72.25  1368 1416 1448 1528  768 771 781 790 +hsync -vsync (47.3 kHz d)
[   219.648] (II) modeset(0): Modeline "1280x800"x60.0  134.25  1280 1304 1320 1360  800 801 804 823 doublescan +hsync -vsync (98.7 kHz d)
[   219.648] (II) modeset(0): Modeline "1280x800"x59.8   83.50  1280 1352 1480 1680  800 803 809 831 -hsync +vsync (49.7 kHz d)
[   219.648] (II) modeset(0): Modeline "1280x800"x59.9   71.00  1280 1328 1360 1440  800 803 809 823 +hsync -vsync (49.3 kHz d)
[   219.648] (II) modeset(0): Modeline "1280x720"x60.0  156.12  1280 1376 1512 1744  720 721 724 746 doublescan -hsync +vsync (89.5 kHz d)
[   219.648] (II) modeset(0): Modeline "1280x720"x60.0  120.75  1280 1304 1320 1360  720 721 724 740 doublescan +hsync -vsync (88.8 kHz d)
[   219.648] (II) modeset(0): Modeline "1280x720"x59.9   74.50  1280 1344 1472 1664  720 723 728 748 -hsync +vsync (44.8 kHz d)
[   219.648] (II) modeset(0): Modeline "1280x720"x59.7   63.75  1280 1328 1360 1440  720 723 728 741 +hsync -vsync (44.3 kHz d)
[   219.648] (II) modeset(0): Modeline "1024x768"x60.0  133.47  1024 1100 1212 1400  768 768 770 794 doublescan -hsync +vsync (95.3 kHz d)
[   219.648] (II) modeset(0): Modeline "1024x768"x60.0   65.00  1024 1048 1184 1344  768 771 777 806 -hsync -vsync (48.4 kHz d)
[   219.648] (II) modeset(0): Modeline "960x720"x60.0  117.00  960 1024 1128 1300  720 720 722 750 doublescan -hsync +vsync (90.0 kHz d)
[   219.648] (II) modeset(0): Modeline "928x696"x60.1  109.15  928 976 1088 1264  696 696 698 719 doublescan -hsync +vsync (86.4 kHz d)
[   219.648] (II) modeset(0): Modeline "896x672"x60.0  102.40  896 960 1060 1224  672 672 674 697 doublescan -hsync +vsync (83.7 kHz d)
[   219.648] (II) modeset(0): Modeline "1024x576"x60.0   98.50  1024 1092 1200 1376  576 577 580 597 doublescan -hsync +vsync (71.6 kHz d)
[   219.648] (II) modeset(0): Modeline "1024x576"x60.0   78.38  1024 1048 1064 1104  576 577 580 592 doublescan +hsync -vsync (71.0 kHz d)
[   219.648] (II) modeset(0): Modeline "1024x576"x59.9   46.50  1024 1064 1160 1296  576 579 584 599 -hsync +vsync (35.9 kHz d)
[   219.648] (II) modeset(0): Modeline "1024x576"x59.8   42.00  1024 1072 1104 1184  576 579 584 593 +hsync -vsync (35.5 kHz d)
[   219.648] (II) modeset(0): Modeline "960x600"x59.9   96.62  960 1028 1128 1296  600 601 604 622 doublescan -hsync +vsync (74.6 kHz d)
[   219.648] (II) modeset(0): Modeline "960x600"x60.0   77.00  960 984 1000 1040  600 601 604 617 doublescan +hsync -vsync (74.0 kHz d)
[   219.648] (II) modeset(0): Modeline "960x540"x60.0   86.50  960 1024 1124 1288  540 541 544 560 doublescan -hsync +vsync (67.2 kHz d)
[   219.648] (II) modeset(0): Modeline "960x540"x60.0   69.25  960 984 1000 1040  540 541 544 555 doublescan +hsync -vsync (66.6 kHz d)
[   219.648] (II) modeset(0): Modeline "960x540"x59.6   40.75  960 992 1088 1216  540 543 548 562 -hsync +vsync (33.5 kHz d)
[   219.648] (II) modeset(0): Modeline "960x540"x59.8   37.25  960 1008 1040 1120  540 543 548 556 +hsync -vsync (33.3 kHz d)
[   219.648] (II) modeset(0): Modeline "800x600"x60.0   81.00  800 832 928 1080  600 600 602 625 doublescan +hsync +vsync (75.0 kHz d)
[   219.648] (II) modeset(0): Modeline "800x600"x60.3   40.00  800 840 968 1056  600 601 605 628 +hsync +vsync (37.9 kHz d)
[   219.648] (II) modeset(0): Modeline "800x600"x56.2   36.00  800 824 896 1024  600 601 603 625 +hsync +vsync (35.2 kHz d)
[   219.648] (II) modeset(0): Modeline "840x525"x60.0   73.12  840 892 980 1120  525 526 529 544 doublescan -hsync +vsync (65.3 kHz d)
[   219.648] (II) modeset(0): Modeline "840x525"x59.9   59.50  840 864 880 920  525 526 529 540 doublescan +hsync -vsync (64.7 kHz d)
[   219.648] (II) modeset(0): Modeline "864x486"x59.9   32.50  864 888 968 1072  486 489 494 506 -hsync +vsync (30.3 kHz d)
[   219.648] (II) modeset(0): Modeline "864x486"x59.6   30.50  864 912 944 1024  486 489 494 500 +hsync -vsync (29.8 kHz d)
[   219.648] (II) modeset(0): Modeline "700x525"x60.0   61.00  700 744 820 940  525 526 532 541 doublescan +hsync +vsync (64.9 kHz d)
[   219.648] (II) modeset(0): Modeline "800x450"x59.9   59.12  800 848 928 1056  450 451 454 467 doublescan -hsync +vsync (56.0 kHz d)
[   219.648] (II) modeset(0): Modeline "800x450"x59.8   48.75  800 824 840 880  450 451 454 463 doublescan +hsync -vsync (55.4 kHz d)
[   219.648] (II) modeset(0): Modeline "640x512"x60.0   54.00  640 664 720 844  512 512 514 533 doublescan +hsync +vsync (64.0 kHz d)
[   219.648] (II) modeset(0): Modeline "700x450"x60.0   51.75  700 740 812 924  450 451 456 467 doublescan -hsync +vsync (56.0 kHz d)
[   219.648] (II) modeset(0): Modeline "700x450"x59.9   43.25  700 724 740 780  450 451 456 463 doublescan +hsync -vsync (55.4 kHz d)
[   219.648] (II) modeset(0): Modeline "640x480"x60.0   54.00  640 688 744 900  480 480 482 500 doublescan +hsync +vsync (60.0 kHz d)
[   219.648] (II) modeset(0): Modeline "640x480"x59.9   25.18  640 656 752 800  480 490 492 525 -hsync -vsync (31.5 kHz d)
[   219.648] (II) modeset(0): Modeline "720x405"x59.5   22.50  720 744 808 896  405 408 413 422 -hsync +vsync (25.1 kHz d)
[   219.648] (II) modeset(0): Modeline "720x405"x59.0   21.75  720 768 800 880  405 408 413 419 +hsync -vsync (24.7 kHz d)
[   219.648] (II) modeset(0): Modeline "684x384"x59.9   42.62  684 720 788 892  384 385 390 399 doublescan -hsync +vsync (47.8 kHz d)
[   219.648] (II) modeset(0): Modeline "684x384"x59.9   36.12  684 708 724 764  384 385 390 395 doublescan +hsync -vsync (47.3 kHz d)
[   219.648] (II) modeset(0): Modeline "640x400"x59.9   41.75  640 676 740 840  400 401 404 415 doublescan -hsync +vsync (49.7 kHz d)
[   219.648] (II) modeset(0): Modeline "640x400"x60.0   35.50  640 664 680 720  400 401 404 411 doublescan +hsync -vsync (49.3 kHz d)
[   219.648] (II) modeset(0): Modeline "640x360"x59.9   37.25  640 672 736 832  360 361 364 374 doublescan -hsync +vsync (44.8 kHz d)
[   219.648] (II) modeset(0): Modeline "640x360"x59.8   31.88  640 664 680 720  360 361 364 370 doublescan +hsync -vsync (44.3 kHz d)
[   219.648] (II) modeset(0): Modeline "640x360"x59.8   18.00  640 664 720 800  360 363 368 376 -hsync +vsync (22.5 kHz d)
[   219.648] (II) modeset(0): Modeline "640x360"x59.3   17.75  640 688 720 800  360 363 368 374 +hsync -vsync (22.2 kHz d)
[   219.648] (II) modeset(0): Modeline "512x384"x60.0   32.50  512 524 592 672  384 385 388 403 doublescan -hsync -vsync (48.4 kHz d)
[   219.648] (II) modeset(0): Modeline "512x288"x60.0   23.25  512 532 580 648  288 289 292 299 doublescan -hsync +vsync (35.9 kHz d)
[   219.648] (II) modeset(0): Modeline "512x288"x59.9   21.00  512 536 552 592  288 289 292 296 doublescan +hsync -vsync (35.5 kHz d)
[   219.648] (II) modeset(0): Modeline "480x270"x59.6   20.38  480 496 544 608  270 271 274 281 doublescan -hsync +vsync (33.5 kHz d)
[   219.648] (II) modeset(0): Modeline "480x270"x59.8   18.62  480 504 520 560  270 271 274 278 doublescan +hsync -vsync (33.3 kHz d)
[   219.648] (II) modeset(0): Modeline "400x300"x60.3   20.00  400 420 484 528  300 300 302 314 doublescan +hsync +vsync (37.9 kHz d)
[   219.648] (II) modeset(0): Modeline "400x300"x56.3   18.00  400 412 448 512  300 300 301 312 doublescan +hsync +vsync (35.2 kHz d)
[   219.648] (II) modeset(0): Modeline "432x243"x59.9   16.25  432 444 484 536  243 244 247 253 doublescan -hsync +vsync (30.3 kHz d)
[   219.648] (II) modeset(0): Modeline "432x243"x59.6   15.25  432 456 472 512  243 244 247 250 doublescan +hsync -vsync (29.8 kHz d)
[   219.648] (II) modeset(0): Modeline "320x240"x60.1   12.59  320 328 376 400  240 245 246 262 doublescan -hsync -vsync (31.5 kHz d)
[   219.648] (II) modeset(0): Modeline "360x202"x59.5   11.25  360 372 404 448  202 204 206 211 doublescan -hsync +vsync (25.1 kHz d)
[   219.648] (II) modeset(0): Modeline "360x202"x59.1   10.88  360 384 400 440  202 204 206 209 doublescan +hsync -vsync (24.7 kHz d)
[   219.648] (II) modeset(0): Modeline "320x180"x59.8    9.00  320 332 360 400  180 181 184 188 doublescan -hsync +vsync (22.5 kHz d)
[   219.648] (II) modeset(0): Modeline "320x180"x59.3    8.88  320 344 360 400  180 181 184 187 doublescan +hsync -vsync (22.2 kHz d)
[   219.653] (II) modeset(0): EDID for output HDMI-1
[   219.653] (II) modeset(0): EDID for output DP-1
[   219.653] (II) modeset(0): EDID for output DP-2
[   219.653] (II) modeset(0): EDID for output DP-3
[   219.653] (II) modeset(0): EDID for output DP-4
[   219.653] (II) modeset(0): Output eDP-1 connected
[   219.653] (II) modeset(0): Output HDMI-1 disconnected
[   219.653] (II) modeset(0): Output DP-1 disconnected
[   219.653] (II) modeset(0): Output DP-2 disconnected
[   219.653] (II) modeset(0): Output DP-3 disconnected
[   219.653] (II) modeset(0): Output DP-4 disconnected
[   219.653] (II) modeset(0): Using exact sizes for initial modes
[   219.653] (II) modeset(0): Output eDP-1 using initial mode 1920x1200 +0+0
[   219.653] (==) modeset(0): Using gamma correction (1.0, 1.0, 1.0)
[   219.653] (==) modeset(0): DPI set to (96, 96)
[   219.653] (II) Loading sub module "fb"
[   219.653] (II) LoadModule: "fb"
[   219.653] (II) Module "fb" already built-in
[   219.677] (==) modeset(0): Backing store enabled
[   219.677] (==) modeset(0): Silken mouse enabled
[   219.756] (II) modeset(0): Initializing kms color map for depth 24, 8 bpc.
[   219.757] (==) modeset(0): DPMS enabled
[   219.757] (II) modeset(0): [DRI2] Setup complete
[   219.757] (II) modeset(0): [DRI2]   DRI driver: iris
[   219.757] (II) modeset(0): [DRI2]   VDPAU driver: va_gl
[   219.757] (II) Initializing extension Generic Event Extension
[   219.757] (II) Initializing extension SHAPE
[   219.757] (II) Initializing extension MIT-SHM
[   219.757] (II) Initializing extension XInputExtension
[   219.757] (II) Initializing extension XTEST
[   219.757] (II) Initializing extension BIG-REQUESTS
[   219.757] (II) Initializing extension SYNC
[   219.757] (II) Initializing extension XKEYBOARD
[   219.758] (II) Initializing extension XC-MISC
[   219.758] (II) Initializing extension SECURITY
[   219.758] (II) Initializing extension XFIXES
[   219.758] (II) Initializing extension RENDER
[   219.758] (II) Initializing extension RANDR
[   219.758] (II) Initializing extension COMPOSITE
[   219.758] (II) Initializing extension DAMAGE
[   219.758] (II) Initializing extension MIT-SCREEN-SAVER
[   219.758] (II) Initializing extension DOUBLE-BUFFER
[   219.759] (II) Initializing extension RECORD
[   219.759] (II) Initializing extension DPMS
[   219.759] (II) Initializing extension Present
[   219.759] (II) Initializing extension DRI3
[   219.759] (II) Initializing extension X-Resource
[   219.759] (II) Initializing extension XVideo
[   219.759] (II) Initializing extension XVideo-MotionCompensation
[   219.759] (II) Initializing extension GLX
[   219.767] (II) AIGLX: Loaded and initialized iris
[   219.767] (II) GLX: Initialized DRI2 GL provider for screen 0
[   219.767] (II) Initializing extension XFree86-VidModeExtension
[   219.767] (II) Initializing extension XFree86-DGA
[   219.768] (II) Initializing extension XFree86-DRI
[   219.768] (II) Initializing extension DRI2
[   219.768] (II) modeset(0): Damage tracking initialized
[   219.768] (II) modeset(0): Setting screen physical size to 508 x 317
[   219.806] (II) config/udev: Adding input device Video Bus (/dev/input/event3)
[   219.807] (**) Video Bus: Applying InputClass "libinput keyboard catchall"
[   219.807] (**) Video Bus: Applying InputClass "system-keyboard"
[   219.807] (II) LoadModule: "libinput"
[   219.807] (II) Loading /usr/lib/xorg/modules/input/libinput_drv.so
[   219.808] (II) Module libinput: vendor="X.Org Foundation"
[   219.808] 	compiled for 1.21.1.13, module version = 1.5.0
[   219.808] 	Module class: X.Org XInput Driver
[   219.808] 	ABI class: X.Org XInput driver, version 24.4
[   219.808] (II) Using input driver 'libinput' for 'Video Bus'
[   219.809] (II) systemd-logind: got fd for /dev/input/event3 13:67 fd 25 paused 0
[   219.809] (**) Video Bus: always reports core events
[   219.809] (**) Option "Device" "/dev/input/event3"
[   219.811] (II) event3  - Video Bus: is tagged by udev as: Keyboard
[   219.811] (II) event3  - Video Bus: device is a keyboard
[   219.811] (II) event3  - Video Bus: device removed
[   219.811] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/LNXVIDEO:00/input/input3/event3"
[   219.811] (II) XINPUT: Adding extended input device "Video Bus" (type: KEYBOARD, id 6)
[   219.811] (**) Option "xkb_model" "pc105"
[   219.811] (**) Option "xkb_layout" "es"
[   219.811] (**) Option "xkb_options" "terminate:ctrl_alt_bksp"
[   219.827] (II) event3  - Video Bus: is tagged by udev as: Keyboard
[   219.827] (II) event3  - Video Bus: device is a keyboard
[   219.828] (II) config/udev: Adding input device Power Button (/dev/input/event0)
[   219.828] (**) Power Button: Applying InputClass "libinput keyboard catchall"
[   219.828] (**) Power Button: Applying InputClass "system-keyboard"
[   219.828] (II) Using input driver 'libinput' for 'Power Button'
[   219.828] (II) systemd-logind: got fd for /dev/input/event0 13:64 fd 28 paused 0
[   219.828] (**) Power Button: always reports core events
[   219.828] (**) Option "Device" "/dev/input/event0"
[   219.829] (II) event0  - Power Button: is tagged by udev as: Keyboard
[   219.829] (II) event0  - Power Button: device is a keyboard
[   219.829] (II) event0  - Power Button: device removed
[   219.829] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0C:00/input/input0/event0"
[   219.829] (II) XINPUT: Adding extended input device "Power Button" (type: KEYBOARD, id 7)
[   219.829] (**) Option "xkb_model" "pc105"
[   219.829] (**) Option "xkb_layout" "es"
[   219.829] (**) Option "xkb_options" "terminate:ctrl_alt_bksp"
[   219.830] (II) event0  - Power Button: is tagged by udev as: Keyboard
[   219.830] (II) event0  - Power Button: device is a keyboard
[   219.830] (II) config/udev: Adding input device Lid Switch (/dev/input/event1)
[   219.830] (II) No input driver specified, ignoring this device.
[   219.830] (II) This device may have been added with another device file.
[   219.831] (II) config/udev: Adding input device Razer Razer DeathAdder Essential (/dev/input/event15)
[   219.831] (**) Razer Razer DeathAdder Essential: Applying InputClass "libinput pointer catchall"
[   219.831] (II) Using input driver 'libinput' for 'Razer Razer DeathAdder Essential'
[   219.882] (II) systemd-logind: got fd for /dev/input/event15 13:79 fd 29 paused 0
[   219.882] (**) Razer Razer DeathAdder Essential: always reports core events
[   219.882] (**) Option "Device" "/dev/input/event15"
[   219.883] (II) event15 - Razer Razer DeathAdder Essential: is tagged by udev as: Mouse
[   219.883] (II) event15 - Razer Razer DeathAdder Essential: device is a pointer
[   219.883] (II) event15 - Razer Razer DeathAdder Essential: device removed
[   219.883] (II) libinput: Razer Razer DeathAdder Essential: Step value 0 was provided, libinput Fallback acceleration function is used.
[   219.883] (II) libinput: Razer Razer DeathAdder Essential: Step value 0 was provided, libinput Fallback acceleration function is used.
[   219.883] (II) libinput: Razer Razer DeathAdder Essential: Step value 0 was provided, libinput Fallback acceleration function is used.
[   219.883] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:14.0/usb3/3-4/3-4:1.0/0003:1532:0098.0002/input/input19/event15"
[   219.883] (II) XINPUT: Adding extended input device "Razer Razer DeathAdder Essential" (type: MOUSE, id 8)
[   219.884] (**) Option "AccelerationScheme" "none"
[   219.884] (**) Razer Razer DeathAdder Essential: (accel) selected scheme none/0
[   219.884] (**) Razer Razer DeathAdder Essential: (accel) acceleration factor: 2.000
[   219.884] (**) Razer Razer DeathAdder Essential: (accel) acceleration threshold: 4
[   219.885] (II) event15 - Razer Razer DeathAdder Essential: is tagged by udev as: Mouse
[   219.885] (II) event15 - Razer Razer DeathAdder Essential: device is a pointer
[   219.885] (II) config/udev: Adding input device Razer Razer DeathAdder Essential (/dev/input/mouse2)
[   219.886] (II) No input driver specified, ignoring this device.
[   219.886] (II) This device may have been added with another device file.
[   219.886] (II) config/udev: Adding input device Razer Razer DeathAdder Essential Keyboard (/dev/input/event16)
[   219.886] (**) Razer Razer DeathAdder Essential Keyboard: Applying InputClass "libinput keyboard catchall"
[   219.886] (**) Razer Razer DeathAdder Essential Keyboard: Applying InputClass "system-keyboard"
[   219.886] (II) Using input driver 'libinput' for 'Razer Razer DeathAdder Essential Keyboard'
[   219.887] (II) systemd-logind: got fd for /dev/input/event16 13:80 fd 30 paused 0
[   219.887] (**) Razer Razer DeathAdder Essential Keyboard: always reports core events
[   219.887] (**) Option "Device" "/dev/input/event16"
[   219.888] (II) event16 - Razer Razer DeathAdder Essential Keyboard: is tagged by udev as: Keyboard
[   219.888] (II) event16 - Razer Razer DeathAdder Essential Keyboard: device is a keyboard
[   219.888] (II) event16 - Razer Razer DeathAdder Essential Keyboard: device removed
[   219.888] (II) libinput: Razer Razer DeathAdder Essential Keyboard: needs a virtual subdevice
[   219.888] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:14.0/usb3/3-4/3-4:1.1/0003:1532:0098.0003/input/input20/event16"
[   219.888] (II) XINPUT: Adding extended input device "Razer Razer DeathAdder Essential Keyboard" (type: MOUSE, id 9)
[   219.888] (**) Option "AccelerationScheme" "none"
[   219.888] (**) Razer Razer DeathAdder Essential Keyboard: (accel) selected scheme none/0
[   219.888] (**) Razer Razer DeathAdder Essential Keyboard: (accel) acceleration factor: 2.000
[   219.888] (**) Razer Razer DeathAdder Essential Keyboard: (accel) acceleration threshold: 4
[   219.889] (II) event16 - Razer Razer DeathAdder Essential Keyboard: is tagged by udev as: Keyboard
[   219.889] (II) event16 - Razer Razer DeathAdder Essential Keyboard: device is a keyboard
[   219.890] (II) config/udev: Adding input device Razer Razer DeathAdder Essential (/dev/input/event17)
[   219.890] (II) No input driver specified, ignoring this device.
[   219.890] (II) This device may have been added with another device file.
[   219.891] (II) config/udev: Adding input device Razer Razer DeathAdder Essential (/dev/input/event18)
[   219.891] (**) Razer Razer DeathAdder Essential: Applying InputClass "libinput keyboard catchall"
[   219.891] (**) Razer Razer DeathAdder Essential: Applying InputClass "system-keyboard"
[   219.891] (II) Using input driver 'libinput' for 'Razer Razer DeathAdder Essential'
[   219.891] (II) systemd-logind: got fd for /dev/input/event18 13:82 fd 31 paused 0
[   219.891] (**) Razer Razer DeathAdder Essential: always reports core events
[   219.891] (**) Option "Device" "/dev/input/event18"
[   219.892] (II) event18 - Razer Razer DeathAdder Essential: is tagged by udev as: Keyboard
[   219.892] (II) event18 - Razer Razer DeathAdder Essential: device is a keyboard
[   219.893] (II) event18 - Razer Razer DeathAdder Essential: device removed
[   219.893] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:14.0/usb3/3-4/3-4:1.2/0003:1532:0098.0004/input/input22/event18"
[   219.893] (II) XINPUT: Adding extended input device "Razer Razer DeathAdder Essential" (type: KEYBOARD, id 10)
[   219.893] (**) Option "xkb_model" "pc105"
[   219.893] (**) Option "xkb_layout" "es"
[   219.893] (**) Option "xkb_options" "terminate:ctrl_alt_bksp"
[   219.894] (II) event18 - Razer Razer DeathAdder Essential: is tagged by udev as: Keyboard
[   219.894] (II) event18 - Razer Razer DeathAdder Essential: device is a keyboard
[   219.894] (II) config/udev: Adding input device ELAN06FA:00 04F3:327E Mouse (/dev/input/event8)
[   219.894] (**) ELAN06FA:00 04F3:327E Mouse: Applying InputClass "libinput pointer catchall"
[   219.894] (II) Using input driver 'libinput' for 'ELAN06FA:00 04F3:327E Mouse'
[   219.895] (II) systemd-logind: got fd for /dev/input/event8 13:72 fd 32 paused 0
[   219.895] (**) ELAN06FA:00 04F3:327E Mouse: always reports core events
[   219.895] (**) Option "Device" "/dev/input/event8"
[   219.896] (II) event8  - ELAN06FA:00 04F3:327E Mouse: is tagged by udev as: Mouse Pointingstick
[   219.896] (II) event8  - ELAN06FA:00 04F3:327E Mouse: device is a pointer
[   219.897] (II) event8  - ELAN06FA:00 04F3:327E Mouse: device removed
[   219.897] (II) libinput: ELAN06FA:00 04F3:327E Mouse: Step value 0 was provided, libinput Fallback acceleration function is used.
[   219.897] (II) libinput: ELAN06FA:00 04F3:327E Mouse: Step value 0 was provided, libinput Fallback acceleration function is used.
[   219.897] (II) libinput: ELAN06FA:00 04F3:327E Mouse: Step value 0 was provided, libinput Fallback acceleration function is used.
[   219.897] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:15.0/i2c_designware.0/i2c-15/i2c-ELAN06FA:00/0018:04F3:327E.0001/input/input11/event8"
[   219.897] (II) XINPUT: Adding extended input device "ELAN06FA:00 04F3:327E Mouse" (type: MOUSE, id 11)
[   219.897] (**) Option "AccelerationScheme" "none"
[   219.897] (**) ELAN06FA:00 04F3:327E Mouse: (accel) selected scheme none/0
[   219.897] (**) ELAN06FA:00 04F3:327E Mouse: (accel) acceleration factor: 2.000
[   219.897] (**) ELAN06FA:00 04F3:327E Mouse: (accel) acceleration threshold: 4
[   219.897] (II) event8  - ELAN06FA:00 04F3:327E Mouse: is tagged by udev as: Mouse Pointingstick
[   219.898] (II) event8  - ELAN06FA:00 04F3:327E Mouse: device is a pointer
[   219.899] (II) config/udev: Adding input device ELAN06FA:00 04F3:327E Mouse (/dev/input/mouse0)
[   219.899] (II) No input driver specified, ignoring this device.
[   219.899] (II) This device may have been added with another device file.
[   219.899] (II) config/udev: Adding input device ELAN06FA:00 04F3:327E Touchpad (/dev/input/event9)
[   219.899] (**) ELAN06FA:00 04F3:327E Touchpad: Applying InputClass "libinput touchpad catchall"
[   219.899] (II) Using input driver 'libinput' for 'ELAN06FA:00 04F3:327E Touchpad'
[   219.900] (II) systemd-logind: got fd for /dev/input/event9 13:73 fd 33 paused 0
[   219.900] (**) ELAN06FA:00 04F3:327E Touchpad: always reports core events
[   219.900] (**) Option "Device" "/dev/input/event9"
[   219.901] (II) event9  - ELAN06FA:00 04F3:327E Touchpad: is tagged by udev as: Touchpad
[   219.902] (II) event9  - ELAN06FA:00 04F3:327E Touchpad: device is a touchpad
[   219.902] (II) event9  - ELAN06FA:00 04F3:327E Touchpad: device removed
[   219.902] (II) libinput: ELAN06FA:00 04F3:327E Touchpad: Step value 0 was provided, libinput Fallback acceleration function is used.
[   219.902] (II) libinput: ELAN06FA:00 04F3:327E Touchpad: Step value 0 was provided, libinput Fallback acceleration function is used.
[   219.902] (II) libinput: ELAN06FA:00 04F3:327E Touchpad: Step value 0 was provided, libinput Fallback acceleration function is used.
[   219.903] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:15.0/i2c_designware.0/i2c-15/i2c-ELAN06FA:00/0018:04F3:327E.0001/input/input13/event9"
[   219.903] (II) XINPUT: Adding extended input device "ELAN06FA:00 04F3:327E Touchpad" (type: TOUCHPAD, id 12)
[   219.904] (**) Option "AccelerationScheme" "none"
[   219.904] (**) ELAN06FA:00 04F3:327E Touchpad: (accel) selected scheme none/0
[   219.904] (**) ELAN06FA:00 04F3:327E Touchpad: (accel) acceleration factor: 2.000
[   219.904] (**) ELAN06FA:00 04F3:327E Touchpad: (accel) acceleration threshold: 4
[   219.905] (II) event9  - ELAN06FA:00 04F3:327E Touchpad: is tagged by udev as: Touchpad
[   219.906] (II) event9  - ELAN06FA:00 04F3:327E Touchpad: device is a touchpad
[   219.907] (II) config/udev: Adding input device ELAN06FA:00 04F3:327E Touchpad (/dev/input/mouse1)
[   219.907] (II) No input driver specified, ignoring this device.
[   219.907] (II) This device may have been added with another device file.
[   219.907] (II) config/udev: Adding input device Ideapad extra buttons (/dev/input/event7)
[   219.907] (**) Ideapad extra buttons: Applying InputClass "libinput keyboard catchall"
[   219.907] (**) Ideapad extra buttons: Applying InputClass "system-keyboard"
[   219.907] (II) Using input driver 'libinput' for 'Ideapad extra buttons'
[   219.908] (II) systemd-logind: got fd for /dev/input/event7 13:71 fd 34 paused 0
[   219.908] (**) Ideapad extra buttons: always reports core events
[   219.908] (**) Option "Device" "/dev/input/event7"
[   219.908] (II) event7  - Ideapad extra buttons: is tagged by udev as: Keyboard
[   219.909] (II) event7  - Ideapad extra buttons: device is a keyboard
[   219.909] (II) event7  - Ideapad extra buttons: device removed
[   219.909] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:1f.0/PNP0C09:00/VPC2004:00/input/input7/event7"
[   219.909] (II) XINPUT: Adding extended input device "Ideapad extra buttons" (type: KEYBOARD, id 13)
[   219.909] (**) Option "xkb_model" "pc105"
[   219.909] (**) Option "xkb_layout" "es"
[   219.909] (**) Option "xkb_options" "terminate:ctrl_alt_bksp"
[   219.910] (II) event7  - Ideapad extra buttons: is tagged by udev as: Keyboard
[   219.910] (II) event7  - Ideapad extra buttons: device is a keyboard
[   219.910] (II) config/udev: Adding input device sof-hda-dsp Mic (/dev/input/event10)
[   219.910] (II) No input driver specified, ignoring this device.
[   219.910] (II) This device may have been added with another device file.
[   219.910] (II) config/udev: Adding input device sof-hda-dsp Headphone (/dev/input/event11)
[   219.910] (II) No input driver specified, ignoring this device.
[   219.910] (II) This device may have been added with another device file.
[   219.911] (II) config/udev: Adding input device sof-hda-dsp HDMI/DP,pcm=3 (/dev/input/event12)
[   219.911] (II) No input driver specified, ignoring this device.
[   219.911] (II) This device may have been added with another device file.
[   219.911] (II) config/udev: Adding input device sof-hda-dsp HDMI/DP,pcm=4 (/dev/input/event13)
[   219.911] (II) No input driver specified, ignoring this device.
[   219.911] (II) This device may have been added with another device file.
[   219.911] (II) config/udev: Adding input device sof-hda-dsp HDMI/DP,pcm=5 (/dev/input/event14)
[   219.911] (II) No input driver specified, ignoring this device.
[   219.911] (II) This device may have been added with another device file.
[   219.912] (II) config/udev: Adding input device Intel HID events (/dev/input/event4)
[   219.912] (**) Intel HID events: Applying InputClass "libinput keyboard catchall"
[   219.912] (**) Intel HID events: Applying InputClass "system-keyboard"
[   219.912] (II) Using input driver 'libinput' for 'Intel HID events'
[   219.912] (II) systemd-logind: got fd for /dev/input/event4 13:68 fd 35 paused 0
[   219.912] (**) Intel HID events: always reports core events
[   219.912] (**) Option "Device" "/dev/input/event4"
[   219.913] (II) event4  - Intel HID events: is tagged by udev as: Keyboard
[   219.913] (II) event4  - Intel HID events: device is a keyboard
[   219.913] (II) event4  - Intel HID events: device removed
[   219.913] (**) Option "config_info" "udev:/sys/devices/platform/INTC1077:00/input/input4/event4"
[   219.913] (II) XINPUT: Adding extended input device "Intel HID events" (type: KEYBOARD, id 14)
[   219.913] (**) Option "xkb_model" "pc105"
[   219.913] (**) Option "xkb_layout" "es"
[   219.913] (**) Option "xkb_options" "terminate:ctrl_alt_bksp"
[   219.914] (II) event4  - Intel HID events: is tagged by udev as: Keyboard
[   219.914] (II) event4  - Intel HID events: device is a keyboard
[   219.914] (II) config/udev: Adding input device Intel HID 5 button array (/dev/input/event5)
[   219.914] (**) Intel HID 5 button array: Applying InputClass "libinput keyboard catchall"
[   219.914] (**) Intel HID 5 button array: Applying InputClass "system-keyboard"
[   219.914] (II) Using input driver 'libinput' for 'Intel HID 5 button array'
[   219.914] (II) systemd-logind: got fd for /dev/input/event5 13:69 fd 36 paused 0
[   219.914] (**) Intel HID 5 button array: always reports core events
[   219.914] (**) Option "Device" "/dev/input/event5"
[   219.915] (II) event5  - Intel HID 5 button array: is tagged by udev as: Keyboard
[   219.915] (II) event5  - Intel HID 5 button array: device is a keyboard
[   219.915] (II) event5  - Intel HID 5 button array: device removed
[   219.915] (**) Option "config_info" "udev:/sys/devices/platform/INTC1077:00/input/input5/event5"
[   219.915] (II) XINPUT: Adding extended input device "Intel HID 5 button array" (type: KEYBOARD, id 15)
[   219.915] (**) Option "xkb_model" "pc105"
[   219.915] (**) Option "xkb_layout" "es"
[   219.915] (**) Option "xkb_options" "terminate:ctrl_alt_bksp"
[   219.916] (II) event5  - Intel HID 5 button array: is tagged by udev as: Keyboard
[   219.916] (II) event5  - Intel HID 5 button array: device is a keyboard
[   219.916] (II) config/udev: Adding input device AT Translated Set 2 keyboard (/dev/input/event2)
[   219.916] (**) AT Translated Set 2 keyboard: Applying InputClass "libinput keyboard catchall"
[   219.916] (**) AT Translated Set 2 keyboard: Applying InputClass "system-keyboard"
[   219.916] (II) Using input driver 'libinput' for 'AT Translated Set 2 keyboard'
[   219.917] (II) systemd-logind: got fd for /dev/input/event2 13:66 fd 37 paused 0
[   219.917] (**) AT Translated Set 2 keyboard: always reports core events
[   219.917] (**) Option "Device" "/dev/input/event2"
[   219.917] (II) event2  - AT Translated Set 2 keyboard: is tagged by udev as: Keyboard
[   219.917] (II) event2  - AT Translated Set 2 keyboard: device is a keyboard
[   219.918] (II) event2  - AT Translated Set 2 keyboard: device removed
[   219.918] (**) Option "config_info" "udev:/sys/devices/platform/i8042/serio0/input/input2/event2"
[   219.918] (II) XINPUT: Adding extended input device "AT Translated Set 2 keyboard" (type: KEYBOARD, id 16)
[   219.918] (**) Option "xkb_model" "pc105"
[   219.918] (**) Option "xkb_layout" "es"
[   219.918] (**) Option "xkb_options" "terminate:ctrl_alt_bksp"
[   219.919] (II) event2  - AT Translated Set 2 keyboard: is tagged by udev as: Keyboard
[   219.919] (II) event2  - AT Translated Set 2 keyboard: device is a keyboard
[   219.920] (II) config/udev: Adding input device PC Speaker (/dev/input/event6)
[   219.920] (II) No input driver specified, ignoring this device.
[   219.920] (II) This device may have been added with another device file.
[   219.939] (**) Razer Razer DeathAdder Essential Keyboard: Applying InputClass "libinput keyboard catchall"
[   219.939] (**) Razer Razer DeathAdder Essential Keyboard: Applying InputClass "system-keyboard"
[   219.939] (II) Using input driver 'libinput' for 'Razer Razer DeathAdder Essential Keyboard'
[   219.939] (II) systemd-logind: returning pre-existing fd for /dev/input/event16 13:80
[   219.939] (**) Razer Razer DeathAdder Essential Keyboard: always reports core events
[   219.939] (**) Option "Device" "/dev/input/event16"
[   219.939] (II) libinput: Razer Razer DeathAdder Essential Keyboard: is a virtual subdevice
[   219.939] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:14.0/usb3/3-4/3-4:1.1/0003:1532:0098.0003/input/input20/event16"
[   219.939] (II) XINPUT: Adding extended input device "Razer Razer DeathAdder Essential Keyboard" (type: KEYBOARD, id 17)
[   219.939] (**) Option "xkb_model" "pc105"
[   219.939] (**) Option "xkb_layout" "es"
[   219.939] (**) Option "xkb_options" "terminate:ctrl_alt_bksp"
[  1037.438] (EE) event9  - ELAN06FA:00 04F3:327E Touchpad: kernel bug: Touch jump detected and discarded.
See https://wayland.freedesktop.org/libinput/doc/1.27.1/touchpad-jumping-cursors.html for details
[  1213.023] [dix] EventToCore: Not implemented yet 
[  3336.388] [dix] EventToCore: Not implemented yet 
[  3563.683] [dix] EventToCore: Not implemented yet 
[  3564.325] [dix] EventToCore: Not implemented yet 
[  4273.688] (II) event15 - Razer Razer DeathAdder Essential: device removed
[  4273.692] (II) config/udev: removing device Razer Razer DeathAdder Essential
[  4273.692] (**) Option "fd" "29"
[  4273.693] (II) UnloadModule: "libinput"
[  4273.693] (II) systemd-logind: releasing fd for 13:79
[  4273.754] (II) event16 - Razer Razer DeathAdder Essential Keyboard: device removed
[  4273.754] (II) config/udev: removing device Razer Razer DeathAdder Essential Keyboard
[  4273.754] (**) Option "fd" "30"
[  4273.755] (II) UnloadModule: "libinput"
[  4273.755] (II) systemd-logind: not releasing fd for 13:80, still in use
[  4273.755] (II) config/udev: removing device Razer Razer DeathAdder Essential Keyboard
[  4273.755] (**) Option "fd" "30"
[  4273.755] (II) UnloadModule: "libinput"
[  4273.755] (II) systemd-logind: releasing fd for 13:80
[  4273.865] (II) event18 - Razer Razer DeathAdder Essential: device removed
[  4273.866] (II) config/udev: removing device Razer Razer DeathAdder Essential
[  4273.866] (**) Option "fd" "31"
[  4273.867] (II) UnloadModule: "libinput"
[  4273.867] (II) systemd-logind: releasing fd for 13:82
[  4819.325] (II) config/udev: Adding input device Razer Razer DeathAdder Essential (/dev/input/mouse2)
[  4819.325] (II) No input driver specified, ignoring this device.
[  4819.325] (II) This device may have been added with another device file.
[  4819.344] (II) config/udev: Adding input device Razer Razer DeathAdder Essential (/dev/input/event18)
[  4819.344] (**) Razer Razer DeathAdder Essential: Applying InputClass "libinput keyboard catchall"
[  4819.344] (**) Razer Razer DeathAdder Essential: Applying InputClass "system-keyboard"
[  4819.344] (II) Using input driver 'libinput' for 'Razer Razer DeathAdder Essential'
[  4819.345] (II) systemd-logind: got fd for /dev/input/event18 13:82 fd 59 paused 0
[  4819.345] (**) Razer Razer DeathAdder Essential: always reports core events
[  4819.345] (**) Option "Device" "/dev/input/event18"
[  4819.346] (II) event18 - Razer Razer DeathAdder Essential: is tagged by udev as: Keyboard
[  4819.346] (II) event18 - Razer Razer DeathAdder Essential: device is a keyboard
[  4819.346] (II) event18 - Razer Razer DeathAdder Essential: device removed
[  4819.346] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:14.0/usb3/3-4/3-4:1.2/0003:1532:0098.0007/input/input26/event18"
[  4819.346] (II) XINPUT: Adding extended input device "Razer Razer DeathAdder Essential" (type: KEYBOARD, id 8)
[  4819.346] (**) Option "xkb_model" "pc105"
[  4819.346] (**) Option "xkb_layout" "es"
[  4819.346] (**) Option "xkb_options" "terminate:ctrl_alt_bksp"
[  4819.347] (II) event18 - Razer Razer DeathAdder Essential: is tagged by udev as: Keyboard
[  4819.348] (II) event18 - Razer Razer DeathAdder Essential: device is a keyboard
[  4819.349] (II) config/udev: Adding input device Razer Razer DeathAdder Essential Keyboard (/dev/input/event16)
[  4819.349] (**) Razer Razer DeathAdder Essential Keyboard: Applying InputClass "libinput keyboard catchall"
[  4819.349] (**) Razer Razer DeathAdder Essential Keyboard: Applying InputClass "system-keyboard"
[  4819.349] (II) Using input driver 'libinput' for 'Razer Razer DeathAdder Essential Keyboard'
[  4819.349] (II) systemd-logind: got fd for /dev/input/event16 13:80 fd 62 paused 0
[  4819.349] (**) Razer Razer DeathAdder Essential Keyboard: always reports core events
[  4819.349] (**) Option "Device" "/dev/input/event16"
[  4819.350] (II) event16 - Razer Razer DeathAdder Essential Keyboard: is tagged by udev as: Keyboard
[  4819.350] (II) event16 - Razer Razer DeathAdder Essential Keyboard: device is a keyboard
[  4819.350] (II) event16 - Razer Razer DeathAdder Essential Keyboard: device removed
[  4819.350] (II) libinput: Razer Razer DeathAdder Essential Keyboard: needs a virtual subdevice
[  4819.350] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:14.0/usb3/3-4/3-4:1.1/0003:1532:0098.0006/input/input24/event16"
[  4819.350] (II) XINPUT: Adding extended input device "Razer Razer DeathAdder Essential Keyboard" (type: MOUSE, id 9)
[  4819.351] (**) Option "AccelerationScheme" "none"
[  4819.351] (**) Razer Razer DeathAdder Essential Keyboard: (accel) selected scheme none/0
[  4819.351] (**) Razer Razer DeathAdder Essential Keyboard: (accel) acceleration factor: 2.000
[  4819.351] (**) Razer Razer DeathAdder Essential Keyboard: (accel) acceleration threshold: 4
[  4819.352] (II) event16 - Razer Razer DeathAdder Essential Keyboard: is tagged by udev as: Keyboard
[  4819.352] (II) event16 - Razer Razer DeathAdder Essential Keyboard: device is a keyboard
[  4819.352] (**) Razer Razer DeathAdder Essential Keyboard: Applying InputClass "libinput keyboard catchall"
[  4819.352] (**) Razer Razer DeathAdder Essential Keyboard: Applying InputClass "system-keyboard"
[  4819.352] (II) Using input driver 'libinput' for 'Razer Razer DeathAdder Essential Keyboard'
[  4819.352] (II) systemd-logind: returning pre-existing fd for /dev/input/event16 13:80
[  4819.352] (**) Razer Razer DeathAdder Essential Keyboard: always reports core events
[  4819.352] (**) Option "Device" "/dev/input/event16"
[  4819.352] (II) libinput: Razer Razer DeathAdder Essential Keyboard: is a virtual subdevice
[  4819.352] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:14.0/usb3/3-4/3-4:1.1/0003:1532:0098.0006/input/input24/event16"
[  4819.352] (II) XINPUT: Adding extended input device "Razer Razer DeathAdder Essential Keyboard" (type: KEYBOARD, id 10)
[  4819.352] (**) Option "xkb_model" "pc105"
[  4819.352] (**) Option "xkb_layout" "es"
[  4819.352] (**) Option "xkb_options" "terminate:ctrl_alt_bksp"
[  4819.353] (II) config/udev: Adding input device Razer Razer DeathAdder Essential (/dev/input/event17)
[  4819.353] (II) No input driver specified, ignoring this device.
[  4819.353] (II) This device may have been added with another device file.
[  4819.391] (II) config/udev: Adding input device Razer Razer DeathAdder Essential (/dev/input/event15)
[  4819.392] (**) Razer Razer DeathAdder Essential: Applying InputClass "libinput pointer catchall"
[  4819.392] (II) Using input driver 'libinput' for 'Razer Razer DeathAdder Essential'
[  4819.443] (II) systemd-logind: got fd for /dev/input/event15 13:79 fd 63 paused 0
[  4819.443] (**) Razer Razer DeathAdder Essential: always reports core events
[  4819.443] (**) Option "Device" "/dev/input/event15"
[  4819.445] (II) event15 - Razer Razer DeathAdder Essential: is tagged by udev as: Mouse
[  4819.445] (II) event15 - Razer Razer DeathAdder Essential: device is a pointer
[  4819.445] (II) event15 - Razer Razer DeathAdder Essential: device removed
[  4819.445] (II) libinput: Razer Razer DeathAdder Essential: Step value 0 was provided, libinput Fallback acceleration function is used.
[  4819.445] (II) libinput: Razer Razer DeathAdder Essential: Step value 0 was provided, libinput Fallback acceleration function is used.
[  4819.445] (II) libinput: Razer Razer DeathAdder Essential: Step value 0 was provided, libinput Fallback acceleration function is used.
[  4819.445] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:14.0/usb3/3-4/3-4:1.0/0003:1532:0098.0005/input/input23/event15"
[  4819.445] (II) XINPUT: Adding extended input device "Razer Razer DeathAdder Essential" (type: MOUSE, id 17)
[  4819.445] (**) Option "AccelerationScheme" "none"
[  4819.445] (**) Razer Razer DeathAdder Essential: (accel) selected scheme none/0
[  4819.445] (**) Razer Razer DeathAdder Essential: (accel) acceleration factor: 2.000
[  4819.445] (**) Razer Razer DeathAdder Essential: (accel) acceleration threshold: 4
[  4819.446] (II) event15 - Razer Razer DeathAdder Essential: is tagged by udev as: Mouse
[  4819.447] (II) event15 - Razer Razer DeathAdder Essential: device is a pointer

New to Arch and Linux in general. Very happy for now!

Offline

#10 2025-03-24 16:02:46

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

Re: [SOLVED] XOrg repeating volume keypresses indefinitely

Sorry, what do  you mean by a global action?

I assume when you press it it will change the volume and maybe show some notification?
That global action/shortcut (technically it's a passive grab)

Offline

#11 2025-03-24 16:18:54

Frankwarch
Member
Registered: 2024-02-12
Posts: 36

Re: [SOLVED] XOrg repeating volume keypresses indefinitely

Oh, then the only binding it has set is the one I showed in the beginning, inside sxhkd. The bug still appears if I change the binding to "notify-send {"up", "down"}".


New to Arch and Linux in general. Very happy for now!

Offline

#12 2025-03-24 16:28:40

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

Re: [SOLVED] XOrg repeating volume keypresses indefinitely

Don't bind it to *anything* and/or then check the behavior w/ evtest - you want it to go 0/1/0 - not 0/1/2 (and then stay there)
If the key doesn't release in evtest, it's 99.999% a hardware issue - you could test the behavior w/ some live distro like grml.org to verify that it also happens on different software stacks.

Offline

#13 2025-03-24 16:45:32

Frankwarch
Member
Registered: 2024-02-12
Posts: 36

Re: [SOLVED] XOrg repeating volume keypresses indefinitely

Well, it unfortunately does go 0/1/2 and then stay there.

I don't have a bootable disk right now but I'll try to test it when I get the chance. I'll mark the post as solved if the issue persists on another distro.

Thanks.


New to Arch and Linux in general. Very happy for now!

Offline

#14 2025-03-25 10:51:04

Frankwarch
Member
Registered: 2024-02-12
Posts: 36

Re: [SOLVED] XOrg repeating volume keypresses indefinitely

Found a keyboard with volume buttons and... It works fine. Guess it was a hardware thing after all sad

Marking this as solved. Thanks, seth!


New to Arch and Linux in general. Very happy for now!

Offline

Board footer

Powered by FluxBB