You are not logged in.

#1 2021-11-16 15:02:27

eyes
Member
Registered: 2021-10-26
Posts: 25

Mouse Lag/Freezing without apparent cause

I've had this problem pretty much since I installed arch a month or so ago, and every once in a while it comes back. The mouse will, in short bursts, not accept input. Everything else about the system will be running perfectly smoothly. It seems that for whatever reason, my mouse input specifically is running on the same thread as some other things in X. I have a keyboard-based browser and often simply go keyboard-only, so I know that the input lag doesn't happen to the keyboard. I've noticed some correlation to starting up browsers, but generally whenever I think I've found a source of the problem, it comes back at a seemingly random time. It's not solely resource based, however, because I often play games without issues.

Dmesg and journalctl are the only things I could thing to check, and have nothing interesting (as far as I can tell), just the initialization of the devices.

I'm using a pretty barebones graphical environment, using startx to jump into an i3 session with my only running processes besides the standard arch systemd stuff being the graphical environment, networkmanager and wpa supplicant, xbindkeys, and picom.

Rebooting or dropping out of the i3 session and running startx again generally fixes the problem (although it is a struggling to get my mouse up to the "exit i3" button).

Last edited by eyes (2021-11-16 15:03:45)

Offline

#2 2021-11-16 15:18:50

V1del
Forum Moderator
Registered: 2012-10-16
Posts: 21,424

Re: Mouse Lag/Freezing without apparent cause

wired or wireless mouse? What mouse exactly? On a whim I'd suggest some USB autosuspend issues

Online

#3 2021-11-16 15:49:56

Head_on_a_Stick
Member
From: London
Registered: 2014-02-20
Posts: 7,680
Website

Re: Mouse Lag/Freezing without apparent cause

Are any compositors running?

Offline

#4 2021-11-16 18:56:31

eyes
Member
Registered: 2021-10-26
Posts: 25

Re: Mouse Lag/Freezing without apparent cause

Head_on_a_Stick wrote:

Are any compositors running?

yes, picom, experimental backends enabled, using glx backend.

As for the mouse type, apologies @V1del but I should have specified that it is a touchpad. My laptop is a Dell Inspiron 7506 2n1.

Offline

#5 2021-11-16 20:35:28

seth
Member
Registered: 2012-09-03
Posts: 49,973

Re: Mouse Lag/Freezing without apparent cause

The mouse will, in short bursts, not accept input. […] It seems that for whatever reason, my mouse input specifically is running on the same thread as some other things in X

Probably not. When this happens, does the mouse replay the inputs you made during its stall or just continue to work?
What's the output of

lsusb; xinput

?

Online

#6 2021-11-20 22:05:15

Head_on_a_Stick
Member
From: London
Registered: 2014-02-20
Posts: 7,680
Website

Re: Mouse Lag/Freezing without apparent cause

Do you still experience the lag if picom is disabled?

Offline

#7 2021-11-22 21:00:56

eyes
Member
Registered: 2021-10-26
Posts: 25

Re: Mouse Lag/Freezing without apparent cause

seth wrote:

When this happens, does the mouse replay the inputs you made during its stall or just continue to work?
What's the output of

lsusb; xinput

?

Output of lsusb; xinput:

Bus 004 Device 001: ID 1d6b:0003 Linux Foundation 3.0 root hub
Bus 003 Device 003: ID 0c45:671b Microdia Integrated_Webcam_HD
Bus 003 Device 002: ID 27c6:538d Shenzhen Goodix Technology Co.,Ltd. FingerPrint
Bus 003 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub
Bus 002 Device 001: ID 1d6b:0003 Linux Foundation 3.0 root hub
Bus 001 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub
⎡ Virtual core pointer                    	id=2	[master pointer  (3)]
⎜   ↳ Virtual core XTEST pointer              	id=4	[slave  pointer  (2)]
⎜   ↳ CUST0000:00 04F3:2ADF                   	id=10	[slave  pointer  (2)]
⎜   ↳ DLL0945:00 06CB:CE27 Mouse              	id=12	[slave  pointer  (2)]
⎜   ↳ DLL0945:00 06CB:CE27 Touchpad           	id=13	[slave  pointer  (2)]
⎜   ↳ PS/2 Generic Mouse                      	id=17	[slave  pointer  (2)]
⎣ Virtual core keyboard                   	id=3	[master keyboard (2)]
    ↳ Virtual core XTEST keyboard             	id=5	[slave  keyboard (3)]
    ↳ Video Bus                               	id=6	[slave  keyboard (3)]
    ↳ Power Button                            	id=7	[slave  keyboard (3)]
    ↳ Sleep Button                            	id=8	[slave  keyboard (3)]
    ↳ Integrated_Webcam_HD: Integrate         	id=9	[slave  keyboard (3)]
    ↳ CUST0000:00 04F3:2ADF Stylus            	id=11	[slave  keyboard (3)]
    ↳ Intel HID events                        	id=14	[slave  keyboard (3)]
    ↳ Dell WMI hotkeys                        	id=15	[slave  keyboard (3)]
    ↳ AT Translated Set 2 keyboard            	id=16	[slave  keyboard (3)]

As for picom, I can't be certain at the moment because I only just saw this and haven't tested it.  Next time the issue occurs I will kill picom and see if it fixes the issue.

Offline

#8 2021-11-22 21:25:30

seth
Member
Registered: 2012-09-03
Posts: 49,973

Re: Mouse Lag/Freezing without apparent cause

PS/2 …

seth wrote:

When this happens, does the mouse replay the inputs you made during its stall or just continue to work?

Or does it jump to the new position?

There's also "CUST0000:00 04F3:2ADF" which seems to be a touchscreen - I could imagine spurious and conflictive input from there.
Since the keyboard keeps working, try to run "sudo libinput debug-events" when this happens  and you could also test to "xinput disable 'CUST0000:00 04F3:2ADF'" and wait whether the issue still happens.

Online

#9 2021-11-22 23:10:57

eyes
Member
Registered: 2021-10-26
Posts: 25

Re: Mouse Lag/Freezing without apparent cause

seth wrote:

When this happens, does the mouse replay the inputs you made during its stall or just continue to work?

Apologies, I forgot about answering this. It does not replay the inputs, it just resumes function as normal. I will try disabling the touchscreen and once again reply if/when the issue occurs again.

Offline

#10 2021-11-23 20:55:17

eyes
Member
Registered: 2021-10-26
Posts: 25

Re: Mouse Lag/Freezing without apparent cause

seth wrote:

Since the keyboard keeps working, try to run "sudo libinput debug-events" when this happens

Okay update, it happened again and I ran this command, libinput was not registering any events when my mouse was not moving. It seems to be that libinput just sort of... stops for short periods of time.

Offline

#11 2021-11-23 21:22:08

seth
Member
Registered: 2012-09-03
Posts: 49,973

Re: Mouse Lag/Freezing without apparent cause

You can try evtest (which operates a level below) but even though this is PS/2 and not usb this smells powermanagement related indeed.
Do you run TLP or sth. similar?

Online

#12 2021-11-24 16:49:00

eyes
Member
Registered: 2021-10-26
Posts: 25

Re: Mouse Lag/Freezing without apparent cause

seth wrote:

You can try evtest (which operates a level below) but even though this is PS/2 and not usb this smells powermanagement related indeed.
Do you run TLP or sth. similar?

I've installed evtest and ill test it out next time the problem arises. As for power management, I'm not running anything at all, I've got pretty bad battery life as a result.

Offline

#13 2021-11-27 03:50:37

eyes
Member
Registered: 2021-10-26
Posts: 25

Re: Mouse Lag/Freezing without apparent cause

seth wrote:

You can try evtest (which operates a level below)

Ran evtest and it is picking up inputs when my mouse is frozen, although libinput does not. Something going on in between there.

Offline

#14 2021-11-27 09:11:14

seth
Member
Registered: 2012-09-03
Posts: 49,973

Re: Mouse Lag/Freezing without apparent cause

Anything interesting in the system journal / dmesg?
Eg. https://wayland.freedesktop.org/libinpu … rsors.html

Is this a multiquatschpad?

You could try https://archlinux.org/packages/extra/x8 … put-evdev/ but nb. that this will likely cause interface name and default behavior changes and might require sightly different (custom) configuration.

Online

#15 2021-11-29 21:20:16

eyes
Member
Registered: 2021-10-26
Posts: 25

Re: Mouse Lag/Freezing without apparent cause

Anything interesting in the system journal / dmesg?
Eg. https://wayland.freedesktop.org/libinpu … rsors.html

seth wrote:

Is this a multiquatschpad?

what does this word mean, dear god

seth wrote:

You could try https://archlinux.org/packages/extra/x8 … put-evdev/ but nb. that this will likely cause interface name and default behavior changes and might require sightly different (custom) configuration.

I installed this but left libinput installed as well, and changed /usr/share/X11/xorg-conf.d/40-libinput.conf's "libinput touchpad catchall" to the following:

Section "InputClass"
        Identifier "libinput touchpad catchall"
        MatchIsTouchpad "on"
        MatchDevicePath "/dev/input/event*"
        Driver "evdev"
EndSection

Is this correct? My touchpad seems to work identitcally, so I'm assuming not.

I am yet to run into the problem again, but if/when I do I will update with libinput record, dmesg, and the journal.

Offline

#16 2021-11-29 21:52:56

seth
Member
Registered: 2012-09-03
Posts: 49,973

Re: Mouse Lag/Freezing without apparent cause

Sorry, "multitouch" ;-)

I am yet to run into the problem again, but if/when I do I will update with libinput record, dmesg, and the journal.

If you can remember a specific tiem where this happened, the journal might be still available, https://wiki.archlinux.org/title/System … ing_output

Online

#17 2021-11-30 05:18:27

eyes
Member
Registered: 2021-10-26
Posts: 25

Re: Mouse Lag/Freezing without apparent cause

Okay, it happened again and I grabbed the most recent dmesg, journal, and libinput record (which was picking up inputs even when the mouse was frozen).

libinput record:

# libinput record
version: 1
ndevices: 1
libinput:
  version: "1.19.2"
  git: "unknown"
system:
kernel: "5.15.5-arch1-1"
dmi: "dmi:bvnDellInc.:bvr1.4.1:bd03/30/2021:br1.4:svnDellInc.:pnInspiron75062n1:pvr:rvnDellInc.:rn0YGNMD:rvrA00:cvnDellInc.:ct31:cvr:sku09DE:"
devices:
- node: /dev/input/event12
  evdev:
    # Name: DLL0945:00 06CB:CE27 Touchpad
    # ID: bus 0x18 vendor 0x6cb product 0xce27 version 0x100
    # Size in mm: 112x77
    # Supported Events:
    # Event type 0 (EV_SYN)
    # Event type 1 (EV_KEY)
    #   Event code 272 (BTN_LEFT)
    #   Event code 325 (BTN_TOOL_FINGER)
    #   Event code 328 (BTN_TOOL_QUINTTAP)
    #   Event code 330 (BTN_TOUCH)
    #   Event code 333 (BTN_TOOL_DOUBLETAP)
    #   Event code 334 (BTN_TOOL_TRIPLETAP)
    #   Event code 335 (BTN_TOOL_QUADTAP)
    # Event type 3 (EV_ABS)
    #   Event code 0 (ABS_X)
    #       Value         723
    #       Min             0
    #       Max          1349
    #       Fuzz            0
    #       Flat            0
    #       Resolution     12
    #   Event code 1 (ABS_Y)
    #       Value         591
    #       Min             0
    #       Max           929
    #       Fuzz            0
    #       Flat            0
    #       Resolution     12
    #   Event code 47 (ABS_MT_SLOT)
    #       Value           0
    #       Min             0
    #       Max             4
    #       Fuzz            0
    #       Flat            0
    #       Resolution      0
    #   Event code 53 (ABS_MT_POSITION_X)
    #       Value           0
    #       Min             0
    #       Max          1349
    #       Fuzz            0
    #       Flat            0
    #       Resolution     12
    #   Event code 54 (ABS_MT_POSITION_Y)
    #       Value           0
    #       Min             0
    #       Max           929
    #       Fuzz            0
    #       Flat            0
    #       Resolution     12
    #   Event code 55 (ABS_MT_TOOL_TYPE)
    #       Value           0
    #       Min             0
    #       Max             2
    #       Fuzz            0
    #       Flat            0
    #       Resolution      0
    #   Event code 57 (ABS_MT_TRACKING_ID)
    #       Value           0
    #       Min             0
    #       Max         65535
    #       Fuzz            0
    #       Flat            0
    #       Resolution      0
    # Event type 4 (EV_MSC)
    #   Event code 5 (MSC_TIMESTAMP)
    # Properties:
    #    Property 0 (INPUT_PROP_POINTER)
    #    Property 2 (INPUT_PROP_BUTTONPAD)
    name: "DLL0945:00 06CB:CE27 Touchpad"
    id: [24, 1739, 52775, 256]
    codes:
      0: [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15] # EV_SYN
      1: [272, 325, 328, 330, 333, 334, 335] # EV_KEY
      3: [0, 1, 47, 53, 54, 55, 57] # EV_ABS
      4: [5] # EV_MSC
    absinfo:
      0: [0, 1349, 0, 0, 12]
      1: [0, 929, 0, 0, 12]
      47: [0, 4, 0, 0, 0]
      53: [0, 1349, 0, 0, 12]
      54: [0, 929, 0, 0, 12]
      55: [0, 2, 0, 0, 0]
      57: [0, 65535, 0, 0, 0]
    properties: [0, 2]
  hid: [
    0x05, 0x01, 0x09, 0x02, 0xa1, 0x01, 0x85, 0x02, 0x09, 0x01, 0xa1, 0x00, 0x05, 0x09, 0x19, 0x01, 
    0x29, 0x02, 0x15, 0x00, 0x25, 0x01, 0x75, 0x01, 0x95, 0x02, 0x81, 0x02, 0x95, 0x06, 0x81, 0x01, 
    0x05, 0x01, 0x09, 0x30, 0x09, 0x31, 0x15, 0x81, 0x25, 0x7f, 0x75, 0x08, 0x95, 0x02, 0x81, 0x06, 
    0xc0, 0xc0, 0x05, 0x0d, 0x09, 0x05, 0xa1, 0x01, 0x85, 0x03, 0x05, 0x0d, 0x09, 0x22, 0xa1, 0x02, 
    0x15, 0x00, 0x25, 0x01, 0x09, 0x47, 0x09, 0x42, 0x95, 0x02, 0x75, 0x01, 0x81, 0x02, 0x95, 0x01, 
    0x75, 0x03, 0x25, 0x05, 0x09, 0x51, 0x81, 0x02, 0x75, 0x01, 0x95, 0x03, 0x81, 0x03, 0x05, 0x01, 
    0x15, 0x00, 0x26, 0x45, 0x05, 0x75, 0x10, 0x55, 0x0e, 0x65, 0x11, 0x09, 0x30, 0x35, 0x00, 0x46, 
    0x64, 0x04, 0x95, 0x01, 0x81, 0x02, 0x46, 0x06, 0x03, 0x26, 0xa1, 0x03, 0x09, 0x31, 0x81, 0x02, 
    0xc0, 0x05, 0x0d, 0x09, 0x22, 0xa1, 0x02, 0x15, 0x00, 0x25, 0x01, 0x09, 0x47, 0x09, 0x42, 0x95, 
    0x02, 0x75, 0x01, 0x81, 0x02, 0x95, 0x01, 0x75, 0x03, 0x25, 0x05, 0x09, 0x51, 0x81, 0x02, 0x75, 
    0x01, 0x95, 0x03, 0x81, 0x03, 0x05, 0x01, 0x15, 0x00, 0x26, 0x45, 0x05, 0x75, 0x10, 0x55, 0x0e, 
    0x65, 0x11, 0x09, 0x30, 0x35, 0x00, 0x46, 0x64, 0x04, 0x95, 0x01, 0x81, 0x02, 0x46, 0x06, 0x03, 
    0x26, 0xa1, 0x03, 0x09, 0x31, 0x81, 0x02, 0xc0, 0x05, 0x0d, 0x09, 0x22, 0xa1, 0x02, 0x15, 0x00, 
    0x25, 0x01, 0x09, 0x47, 0x09, 0x42, 0x95, 0x02, 0x75, 0x01, 0x81, 0x02, 0x95, 0x01, 0x75, 0x03, 
    0x25, 0x05, 0x09, 0x51, 0x81, 0x02, 0x75, 0x01, 0x95, 0x03, 0x81, 0x03, 0x05, 0x01, 0x15, 0x00, 
    0x26, 0x45, 0x05, 0x75, 0x10, 0x55, 0x0e, 0x65, 0x11, 0x09, 0x30, 0x35, 0x00, 0x46, 0x64, 0x04, 
    0x95, 0x01, 0x81, 0x02, 0x46, 0x06, 0x03, 0x26, 0xa1, 0x03, 0x09, 0x31, 0x81, 0x02, 0xc0, 0x05, 
    0x0d, 0x09, 0x22, 0xa1, 0x02, 0x15, 0x00, 0x25, 0x01, 0x09, 0x47, 0x09, 0x42, 0x95, 0x02, 0x75, 
    0x01, 0x81, 0x02, 0x95, 0x01, 0x75, 0x03, 0x25, 0x05, 0x09, 0x51, 0x81, 0x02, 0x75, 0x01, 0x95, 
    0x03, 0x81, 0x03, 0x05, 0x01, 0x15, 0x00, 0x26, 0x45, 0x05, 0x75, 0x10, 0x55, 0x0e, 0x65, 0x11, 
    0x09, 0x30, 0x35, 0x00, 0x46, 0x64, 0x04, 0x95, 0x01, 0x81, 0x02, 0x46, 0x06, 0x03, 0x26, 0xa1, 
    0x03, 0x09, 0x31, 0x81, 0x02, 0xc0, 0x05, 0x0d, 0x09, 0x22, 0xa1, 0x02, 0x15, 0x00, 0x25, 0x01, 
    0x09, 0x47, 0x09, 0x42, 0x95, 0x02, 0x75, 0x01, 0x81, 0x02, 0x95, 0x01, 0x75, 0x03, 0x25, 0x05, 
    0x09, 0x51, 0x81, 0x02, 0x75, 0x01, 0x95, 0x03, 0x81, 0x03, 0x05, 0x01, 0x15, 0x00, 0x26, 0x45, 
    0x05, 0x75, 0x10, 0x55, 0x0e, 0x65, 0x11, 0x09, 0x30, 0x35, 0x00, 0x46, 0x64, 0x04, 0x95, 0x01, 
    0x81, 0x02, 0x46, 0x06, 0x03, 0x26, 0xa1, 0x03, 0x09, 0x31, 0x81, 0x02, 0xc0, 0x05, 0x0d, 0x55, 
    0x0c, 0x66, 0x01, 0x10, 0x47, 0xff, 0xff, 0x00, 0x00, 0x27, 0xff, 0xff, 0x00, 0x00, 0x75, 0x10, 
    0x95, 0x01, 0x09, 0x56, 0x81, 0x02, 0x09, 0x54, 0x25, 0x7f, 0x95, 0x01, 0x75, 0x08, 0x81, 0x02, 
    0x05, 0x09, 0x09, 0x01, 0x25, 0x01, 0x75, 0x01, 0x95, 0x01, 0x81, 0x02, 0x95, 0x07, 0x81, 0x03, 
    0x05, 0x0d, 0x85, 0x08, 0x09, 0x55, 0x09, 0x59, 0x75, 0x04, 0x95, 0x02, 0x25, 0x0f, 0xb1, 0x02, 
    0x85, 0x0d, 0x09, 0x60, 0x75, 0x01, 0x95, 0x01, 0x15, 0x00, 0x25, 0x01, 0xb1, 0x02, 0x95, 0x07, 
    0xb1, 0x03, 0x85, 0x07, 0x06, 0x00, 0xff, 0x09, 0xc5, 0x15, 0x00, 0x26, 0xff, 0x00, 0x75, 0x08, 
    0x96, 0x00, 0x01, 0xb1, 0x02, 0xc0, 0x05, 0x0d, 0x09, 0x0e, 0xa1, 0x01, 0x85, 0x04, 0x09, 0x22, 
    0xa1, 0x02, 0x09, 0x52, 0x15, 0x00, 0x25, 0x0a, 0x75, 0x08, 0x95, 0x01, 0xb1, 0x02, 0xc0, 0x09, 
    0x22, 0xa1, 0x00, 0x85, 0x06, 0x09, 0x57, 0x09, 0x58, 0x75, 0x01, 0x95, 0x02, 0x25, 0x01, 0xb1, 
    0x02, 0x95, 0x06, 0xb1, 0x03, 0xc0, 0xc0, 0x06, 0x00, 0xff, 0x09, 0x01, 0xa1, 0x01, 0x85, 0x09, 
    0x09, 0x02, 0x15, 0x00, 0x26, 0xff, 0x00, 0x75, 0x08, 0x95, 0x14, 0x91, 0x02, 0x85, 0x0a, 0x09, 
    0x03, 0x15, 0x00, 0x26, 0xff, 0x00, 0x75, 0x08, 0x95, 0x14, 0x91, 0x02, 0x85, 0x0b, 0x09, 0x04, 
    0x15, 0x00, 0x26, 0xff, 0x00, 0x75, 0x08, 0x95, 0x3d, 0x81, 0x02, 0x85, 0x0c, 0x09, 0x05, 0x15, 
    0x00, 0x26, 0xff, 0x00, 0x75, 0x08, 0x95, 0x3d, 0x81, 0x02, 0x85, 0x0f, 0x09, 0x06, 0x15, 0x00, 
    0x26, 0xff, 0x00, 0x75, 0x08, 0x95, 0x03, 0xb1, 0x02, 0x85, 0x0e, 0x09, 0x07, 0x15, 0x00, 0x26, 
    0xff, 0x00, 0x75, 0x08, 0x95, 0x01, 0xb1, 0x02, 0xc0
  ]
  udev:
    properties:
    - ID_INPUT=1
    - ID_INPUT_HEIGHT_MM=77
    - ID_INPUT_TOUCHPAD=1
    - ID_INPUT_WIDTH_MM=112
    - LIBINPUT_DEVICE_GROUP=18/6cb/ce27:i2c-DLL0945:00
  quirks:
  - ModelTouchpadVisibleMarker=1
  - AttrMscTimestamp=watch
  events:
  # Current time is 23:38:07
  - evdev:
    - [  0,      0,   3,  57,      72] # EV_ABS / ABS_MT_TRACKING_ID       72
    - [  0,      0,   3,  55,       0] # EV_ABS / ABS_MT_TOOL_TYPE          0 (+0)
    - [  0,      0,   3,  53,     868] # EV_ABS / ABS_MT_POSITION_X       868 (+145)
    - [  0,      0,   3,  54,     536] # EV_ABS / ABS_MT_POSITION_Y       536 (-55)
    - [  0,      0,   1, 330,       1] # EV_KEY / BTN_TOUCH                 1
    - [  0,      0,   1, 325,       1] # EV_KEY / BTN_TOOL_FINGER           1
    - [  0,      0,   3,   0,     868] # EV_ABS / ABS_X                   868 (+145)
    - [  0,      0,   3,   1,     536] # EV_ABS / ABS_Y                   536 (-55)
    - [  0,      0,   4,   5,       0] # EV_MSC / MSC_TIMESTAMP             0
    - [  0,      0,   0,   0,       0] # ------------ SYN_REPORT (0) ---------- +0ms




. . .




  - evdev:
    - [ 11, 384148,   3,  54,     649] # EV_ABS / ABS_MT_POSITION_Y       649 (-1)
    - [ 11, 384148,   3,   1,     649] # EV_ABS / ABS_Y                   649 (-1)
    - [ 11, 384148,   4,   5, 11227800] # EV_MSC / MSC_TIMESTAMP        11227800
    - [ 11, 384148,   0,   0,       0] # ------------ SYN_REPORT (0) ---------- +8ms
  - evdev:
    - [ 11, 391177,   3,  53,     706] # EV_ABS / ABS_MT_POSITION_X       706 (+1)
    - [ 11, 391177,   3,  54,     645] # EV_ABS / ABS_MT_POSITION_Y       645 (-4)
    - [ 11, 391177,   3,   0,     706] # EV_ABS / ABS_X                   706 (+1)
    - [ 11, 391177,   3,   1,     645] # EV_ABS / ABS_Y                   645 (-4)
    - [ 11, 391177,   4,   5, 11234800] # EV_MSC / MSC_TIMESTAMP        11234800
    - [ 11, 391177,   0,   0,       0] # ------------ SYN_REPORT (0) ---------- +7ms
  - evdev:
    - [ 11, 398312,   3,  53,     707] # EV_ABS / ABS_MT_POSITION_X       707 (+1)
    - [ 11, 398312,   3,  54,     641] # EV_ABS / ABS_MT_POSITION_Y       641 (-4)
    - [ 11, 398312,   3,   0,     707] # EV_ABS / ABS_X                   707 (+1)
    - [ 11, 398312,   3,   1,     641] # EV_ABS / ABS_Y                   641 (-4)
    - [ 11, 398312,   4,   5, 11241800] # EV_MSC / MSC_TIMESTAMP        11241800
    - [ 11, 398312,   0,   0,       0] # ------------ SYN_REPORT (0) ---------- +7ms
  - evdev:
    - [ 11, 405093,   3,  53,     710] # EV_ABS / ABS_MT_POSITION_X       710 (+3)
    - [ 11, 405093,   3,  54,     625] # EV_ABS / ABS_MT_POSITION_Y       625 (-16)
    - [ 11, 405093,   3,   0,     710] # EV_ABS / ABS_X                   710 (+3)
    - [ 11, 405093,   3,   1,     625] # EV_ABS / ABS_Y                   625 (-16)
    - [ 11, 405093,   4,   5, 11248800] # EV_MSC / MSC_TIMESTAMP        11248800
    - [ 11, 405093,   0,   0,       0] # ------------ SYN_REPORT (0) ---------- +7ms
  - evdev:
    - [ 11, 411586,   3,  54,     624] # EV_ABS / ABS_MT_POSITION_Y       624 (-1)
    - [ 11, 411586,   3,   1,     624] # EV_ABS / ABS_Y                   624 (-1)
    - [ 11, 411586,   4,   5, 11255800] # EV_MSC / MSC_TIMESTAMP        11255800
    - [ 11, 411586,   0,   0,       0] # ------------ SYN_REPORT (0) ---------- +6ms
  - evdev:
    - [ 11, 418691,   3,  54,     619] # EV_ABS / ABS_MT_POSITION_Y       619 (-5)
    - [ 11, 418691,   3,   1,     619] # EV_ABS / ABS_Y                   619 (-5)
    - [ 11, 418691,   4,   5, 11262800] # EV_MSC / MSC_TIMESTAMP        11262800
    - [ 11, 418691,   0,   0,       0] # ------------ SYN_REPORT (0) ---------- +7ms
  - evdev:
    - [ 11, 425775,   3,  54,     613] # EV_ABS / ABS_MT_POSITION_Y       613 (-6)
    - [ 11, 425775,   3,   1,     613] # EV_ABS / ABS_Y                   613 (-6)
    - [ 11, 425775,   4,   5, 11269800] # EV_MSC / MSC_TIMESTAMP        11269800
    - [ 11, 425775,   0,   0,       0] # ------------ SYN_REPORT (0) ---------- +7ms
  - evdev:
    - [ 11, 432933,   3,  54,     606] # EV_ABS / ABS_MT_POSITION_Y       606 (-7)
    - [ 11, 432933,   3,   1,     606] # EV_ABS / ABS_Y                   606 (-7)
    - [ 11, 432933,   4,   5, 11276800] # EV_MSC / MSC_TIMESTAMP        11276800
    - [ 11, 432933,   0,   0,       0] # ------------ SYN_REPORT (0) ---------- +7ms
  - evdev:
    - [ 11, 440028,   3,  53,     709] # EV_ABS / ABS_MT_POSITION_X       709 (-1)
    - [ 11, 440028,   3,  54,     600] # EV_ABS / ABS_MT_POSITION_Y       600 (-6)
    - [ 11, 440028,   3,   0,     709] # EV_ABS / ABS_X                   709 (-1)
    - [ 11, 440028,   3,   1,     600] # EV_ABS / ABS_Y                   600 (-6)
    - [ 11, 440028,   4,   5, 11283800] # EV_MSC / MSC_TIMESTAMP        11283800
    - [ 11, 440028,   0,   0,       0] # ------------ SYN_REPORT (0) ---------- +8ms
  - evdev:
    - [ 11, 447112,   3,  54,     591] # EV_ABS / ABS_MT_POSITION_Y       591 (-9)
    - [ 11, 447112,   3,   1,     591] # EV_ABS / ABS_Y                   591 (-9)
    - [ 11, 447112,   4,   5, 11290800] # EV_MSC / MSC_TIMESTAMP        11290800
    - [ 11, 447112,   0,   0,       0] # ------------ SYN_REPORT (0) ---------- +7ms
  - evdev:
    - [ 11, 454245,   3,  54,     586] # EV_ABS / ABS_MT_POSITION_Y       586 (-5)
    - [ 11, 454245,   3,   1,     586] # EV_ABS / ABS_Y                   586 (-5)
    - [ 11, 454245,   4,   5, 11297800] # EV_MSC / MSC_TIMESTAMP        11297800
    - [ 11, 454245,   0,   0,       0] # ------------ SYN_REPORT (0) ---------- +7ms
  - evdev:
    - [ 11, 462135,   3,  53,     710] # EV_ABS / ABS_MT_POSITION_X       710 (+1)
    - [ 11, 462135,   3,  54,     580] # EV_ABS / ABS_MT_POSITION_Y       580 (-6)
    - [ 11, 462135,   3,   0,     710] # EV_ABS / ABS_X                   710 (+1)
    - [ 11, 462135,   3,   1,     580] # EV_ABS / ABS_Y                   580 (-6)
    - [ 11, 462135,   4,   5, 11304800] # EV_MSC / MSC_TIMESTAMP        11304800
    - [ 11, 462135,   0,   0,       0] # ------------ SYN_REPORT (0) ---------- +8ms
  - evdev:
    - [ 11, 468955,   3,  54,     578] # EV_ABS / ABS_MT_POSITION_Y       578 (-2)
    - [ 11, 468955,   3,   1,     578] # EV_ABS / ABS_Y                   578 (-2)
    - [ 11, 468955,   4,   5, 11311800] # EV_MSC / MSC_TIMESTAMP        11311800
    - [ 11, 468955,   0,   0,       0] # ------------ SYN_REPORT (0) ---------- +6ms
  - evdev:
    - [ 11, 475538,   3,  53,     708] # EV_ABS / ABS_MT_POSITION_X       708 (-2)
    - [ 11, 475538,   3,  54,     568] # EV_ABS / ABS_MT_POSITION_Y       568 (-10)
    - [ 11, 475538,   3,   0,     708] # EV_ABS / ABS_X                   708 (-2)
    - [ 11, 475538,   3,   1,     568] # EV_ABS / ABS_Y                   568 (-10)
    - [ 11, 475538,   4,   5, 11318800] # EV_MSC / MSC_TIMESTAMP        11318800
    - [ 11, 475538,   0,   0,       0] # ------------ SYN_REPORT (0) ---------- +7ms
  - evdev:
    - [ 11, 482644,   3,  53,     706] # EV_ABS / ABS_MT_POSITION_X       706 (-2)
    - [ 11, 482644,   3,  54,     560] # EV_ABS / ABS_MT_POSITION_Y       560 (-8)
    - [ 11, 482644,   3,   0,     706] # EV_ABS / ABS_X                   706 (-2)
    - [ 11, 482644,   3,   1,     560] # EV_ABS / ABS_Y                   560 (-8)
    - [ 11, 482644,   4,   5, 11325800] # EV_MSC / MSC_TIMESTAMP        11325800
    - [ 11, 482644,   0,   0,       0] # ------------ SYN_REPORT (0) ---------- +7ms
  - evdev:
    - [ 11, 489682,   3,  54,     550] # EV_ABS / ABS_MT_POSITION_Y       550 (-10)
    - [ 11, 489682,   3,   1,     550] # EV_ABS / ABS_Y                   550 (-10)
    - [ 11, 489682,   4,   5, 11332800] # EV_MSC / MSC_TIMESTAMP        11332800
    - [ 11, 489682,   0,   0,       0] # ------------ SYN_REPORT (0) ---------- +7ms
  - evdev:
    - [ 11, 497010,   3,  54,     540] # EV_ABS / ABS_MT_POSITION_Y       540 (-10)
    - [ 11, 497010,   3,   1,     540] # EV_ABS / ABS_Y                   540 (-10)
    - [ 11, 497010,   4,   5, 11339800] # EV_MSC / MSC_TIMESTAMP        11339800
    - [ 11, 497010,   0,   0,       0] # ------------ SYN_REPORT (0) ---------- +8ms
  - evdev:
    - [ 11, 504187,   3,  54,     534] # EV_ABS / ABS_MT_POSITION_Y       534 (-6)
    - [ 11, 504187,   3,   1,     534] # EV_ABS / ABS_Y                   534 (-6)
    - [ 11, 504187,   4,   5, 11346800] # EV_MSC / MSC_TIMESTAMP        11346800
    - [ 11, 504187,   0,   0,       0] # ------------ SYN_REPORT (0) ---------- +7ms
  - evdev:
    - [ 11, 511093,   3,  54,     529] # EV_ABS / ABS_MT_POSITION_Y       529 (-5)
    - [ 11, 511093,   3,   1,     529] # EV_ABS / ABS_Y                   529 (-5)
    - [ 11, 511093,   4,   5, 11353800] # EV_MSC / MSC_TIMESTAMP        11353800
    - [ 11, 511093,   0,   0,       0] # ------------ SYN_REPORT (0) ---------- +7ms
  - evdev:
    - [ 11, 518172,   3,  54,     524] # EV_ABS / ABS_MT_POSITION_Y       524 (-5)
    - [ 11, 518172,   3,   1,     524] # EV_ABS / ABS_Y                   524 (-5)
    - [ 11, 518172,   4,   5, 11360800] # EV_MSC / MSC_TIMESTAMP        11360800
    - [ 11, 518172,   0,   0,       0] # ------------ SYN_REPORT (0) ---------- +7ms
  - evdev:
    - [ 11, 525304,   3,  53,     707] # EV_ABS / ABS_MT_POSITION_X       707 (+1)
    - [ 11, 525304,   3,  54,     518] # EV_ABS / ABS_MT_POSITION_Y       518 (-6)
    - [ 11, 525304,   3,   0,     707] # EV_ABS / ABS_X                   707 (+1)
    - [ 11, 525304,   3,   1,     518] # EV_ABS / ABS_Y                   518 (-6)
    - [ 11, 525304,   4,   5, 11367800] # EV_MSC / MSC_TIMESTAMP        11367800
    - [ 11, 525304,   0,   0,       0] # ------------ SYN_REPORT (0) ---------- +7ms
  - evdev:
    - [ 11, 532359,   3,  54,     513] # EV_ABS / ABS_MT_POSITION_Y       513 (-5)
    - [ 11, 532359,   3,   1,     513] # EV_ABS / ABS_Y                   513 (-5)
    - [ 11, 532359,   4,   5, 11374800] # EV_MSC / MSC_TIMESTAMP        11374800
    - [ 11, 532359,   0,   0,       0] # ------------ SYN_REPORT (0) ---------- +7ms
  - evdev:
    - [ 11, 539484,   3,  53,     708] # EV_ABS / ABS_MT_POSITION_X       708 (+1)
    - [ 11, 539484,   3,  54,     507] # EV_ABS / ABS_MT_POSITION_Y       507 (-6)
    - [ 11, 539484,   3,   0,     708] # EV_ABS / ABS_X                   708 (+1)
    - [ 11, 539484,   3,   1,     507] # EV_ABS / ABS_Y                   507 (-6)
    - [ 11, 539484,   4,   5, 11381800] # EV_MSC / MSC_TIMESTAMP        11381800
    - [ 11, 539484,   0,   0,       0] # ------------ SYN_REPORT (0) ---------- +7ms
  - evdev:
    - [ 11, 546587,   3,  54,     503] # EV_ABS / ABS_MT_POSITION_Y       503 (-4)
    - [ 11, 546587,   3,   1,     503] # EV_ABS / ABS_Y                   503 (-4)
    - [ 11, 546587,   4,   5, 11388800] # EV_MSC / MSC_TIMESTAMP        11388800
    - [ 11, 546587,   0,   0,       0] # ------------ SYN_REPORT (0) ---------- +7ms
  - evdev:
    - [ 11, 553850,   3,  54,     500] # EV_ABS / ABS_MT_POSITION_Y       500 (-3)
    - [ 11, 553850,   3,   1,     500] # EV_ABS / ABS_Y                   500 (-3)
    - [ 11, 553850,   4,   5, 11395800] # EV_MSC / MSC_TIMESTAMP        11395800
    - [ 11, 553850,   0,   0,       0] # ------------ SYN_REPORT (0) ---------- +7ms
  - evdev:
    - [ 11, 560807,   3,  54,     497] # EV_ABS / ABS_MT_POSITION_Y       497 (-3)
    - [ 11, 560807,   3,   1,     497] # EV_ABS / ABS_Y                   497 (-3)
    - [ 11, 560807,   4,   5, 11402800] # EV_MSC / MSC_TIMESTAMP        11402800
    - [ 11, 560807,   0,   0,       0] # ------------ SYN_REPORT (0) ---------- +7ms
  - evdev:
    - [ 11, 567889,   3,  54,     495] # EV_ABS / ABS_MT_POSITION_Y       495 (-2)
    - [ 11, 567889,   3,   1,     495] # EV_ABS / ABS_Y                   495 (-2)
    - [ 11, 567889,   4,   5, 11409800] # EV_MSC / MSC_TIMESTAMP        11409800
    - [ 11, 567889,   0,   0,       0] # ------------ SYN_REPORT (0) ---------- +7ms
  - evdev:
    - [ 11, 575022,   3,  54,     493] # EV_ABS / ABS_MT_POSITION_Y       493 (-2)
    - [ 11, 575022,   3,   1,     493] # EV_ABS / ABS_Y                   493 (-2)
    - [ 11, 575022,   4,   5, 11416800] # EV_MSC / MSC_TIMESTAMP        11416800
    - [ 11, 575022,   0,   0,       0] # ------------ SYN_REPORT (0) ---------- +8ms
  - evdev:
    - [ 11, 582104,   3,  54,     491] # EV_ABS / ABS_MT_POSITION_Y       491 (-2)
    - [ 11, 582104,   3,   1,     491] # EV_ABS / ABS_Y                   491 (-2)
    - [ 11, 582104,   4,   5, 11423800] # EV_MSC / MSC_TIMESTAMP        11423800
    - [ 11, 582104,   0,   0,       0] # ------------ SYN_REPORT (0) ---------- +7ms
  - evdev:
    - [ 11, 589218,   3,  54,     489] # EV_ABS / ABS_MT_POSITION_Y       489 (-2)
    - [ 11, 589218,   3,   1,     489] # EV_ABS / ABS_Y                   489 (-2)
    - [ 11, 589218,   4,   5, 11430800] # EV_MSC / MSC_TIMESTAMP        11430800
    - [ 11, 589218,   0,   0,       0] # ------------ SYN_REPORT (0) ---------- +7ms
  - evdev:
    - [ 11, 596405,   3,  54,     487] # EV_ABS / ABS_MT_POSITION_Y       487 (-2)
    - [ 11, 596405,   3,   1,     487] # EV_ABS / ABS_Y                   487 (-2)
    - [ 11, 596405,   4,   5, 11437800] # EV_MSC / MSC_TIMESTAMP        11437800
    - [ 11, 596405,   0,   0,       0] # ------------ SYN_REPORT (0) ---------- +7ms
  - evdev:
    - [ 11, 603479,   3,  54,     485] # EV_ABS / ABS_MT_POSITION_Y       485 (-2)
    - [ 11, 603479,   3,   1,     485] # EV_ABS / ABS_Y                   485 (-2)
    - [ 11, 603479,   4,   5, 11444800] # EV_MSC / MSC_TIMESTAMP        11444800
    - [ 11, 603479,   0,   0,       0] # ------------ SYN_REPORT (0) ---------- +7ms
  - evdev:
    - [ 11, 610561,   3,  54,     483] # EV_ABS / ABS_MT_POSITION_Y       483 (-2)
    - [ 11, 610561,   3,   1,     483] # EV_ABS / ABS_Y                   483 (-2)
    - [ 11, 610561,   4,   5, 11451800] # EV_MSC / MSC_TIMESTAMP        11451800
    - [ 11, 610561,   0,   0,       0] # ------------ SYN_REPORT (0) ---------- +7ms
  - evdev:
    - [ 11, 617704,   3,  54,     480] # EV_ABS / ABS_MT_POSITION_Y       480 (-3)
    - [ 11, 617704,   3,   1,     480] # EV_ABS / ABS_Y                   480 (-3)
    - [ 11, 617704,   4,   5, 11458800] # EV_MSC / MSC_TIMESTAMP        11458800
    - [ 11, 617704,   0,   0,       0] # ------------ SYN_REPORT (0) ---------- +7ms
  - evdev:
    - [ 11, 624810,   3,  54,     477] # EV_ABS / ABS_MT_POSITION_Y       477 (-3)
    - [ 11, 624810,   3,   1,     477] # EV_ABS / ABS_Y                   477 (-3)
    - [ 11, 624810,   4,   5, 11465800] # EV_MSC / MSC_TIMESTAMP        11465800
    - [ 11, 624810,   0,   0,       0] # ------------ SYN_REPORT (0) ---------- +7ms
  - evdev:
    - [ 11, 631907,   3,  54,     473] # EV_ABS / ABS_MT_POSITION_Y       473 (-4)
    - [ 11, 631907,   3,   1,     473] # EV_ABS / ABS_Y                   473 (-4)
    - [ 11, 631907,   4,   5, 11472800] # EV_MSC / MSC_TIMESTAMP        11472800
    - [ 11, 631907,   0,   0,       0] # ------------ SYN_REPORT (0) ---------- +7ms
  - evdev:
    - [ 11, 639019,   3,  53,     709] # EV_ABS / ABS_MT_POSITION_X       709 (+1)
    - [ 11, 639019,   3,  54,     468] # EV_ABS / ABS_MT_POSITION_Y       468 (-5)
    - [ 11, 639019,   3,   0,     709] # EV_ABS / ABS_X                   709 (+1)
    - [ 11, 639019,   3,   1,     468] # EV_ABS / ABS_Y                   468 (-5)
    - [ 11, 639019,   4,   5, 11479800] # EV_MSC / MSC_TIMESTAMP        11479800
    - [ 11, 639019,   0,   0,       0] # ------------ SYN_REPORT (0) ---------- +8ms
  - evdev:
    - [ 11, 646091,   3,  54,     463] # EV_ABS / ABS_MT_POSITION_Y       463 (-5)
    - [ 11, 646091,   3,   1,     463] # EV_ABS / ABS_Y                   463 (-5)
    - [ 11, 646091,   4,   5, 11486800] # EV_MSC / MSC_TIMESTAMP        11486800
    - [ 11, 646091,   0,   0,       0] # ------------ SYN_REPORT (0) ---------- +7ms
  - evdev:
    - [ 11, 653179,   3,  53,     710] # EV_ABS / ABS_MT_POSITION_X       710 (+1)
    - [ 11, 653179,   3,  54,     457] # EV_ABS / ABS_MT_POSITION_Y       457 (-6)
    - [ 11, 653179,   3,   0,     710] # EV_ABS / ABS_X                   710 (+1)
    - [ 11, 653179,   3,   1,     457] # EV_ABS / ABS_Y                   457 (-6)
    - [ 11, 653179,   4,   5, 11493800] # EV_MSC / MSC_TIMESTAMP        11493800
    - [ 11, 653179,   0,   0,       0] # ------------ SYN_REPORT (0) ---------- +7ms
  - evdev:
    - [ 11, 660285,   3,  53,     711] # EV_ABS / ABS_MT_POSITION_X       711 (+1)
    - [ 11, 660285,   3,  54,     451] # EV_ABS / ABS_MT_POSITION_Y       451 (-6)
    - [ 11, 660285,   3,   0,     711] # EV_ABS / ABS_X                   711 (+1)
    - [ 11, 660285,   3,   1,     451] # EV_ABS / ABS_Y                   451 (-6)
    - [ 11, 660285,   4,   5, 11500800] # EV_MSC / MSC_TIMESTAMP        11500800
    - [ 11, 660285,   0,   0,       0] # ------------ SYN_REPORT (0) ---------- +7ms
  - evdev:
    - [ 11, 667441,   3,  54,     444] # EV_ABS / ABS_MT_POSITION_Y       444 (-7)
    - [ 11, 667441,   3,   1,     444] # EV_ABS / ABS_Y                   444 (-7)
    - [ 11, 667441,   4,   5, 11507800] # EV_MSC / MSC_TIMESTAMP        11507800
    - [ 11, 667441,   0,   0,       0] # ------------ SYN_REPORT (0) ---------- +7ms
  - evdev:
    - [ 11, 674546,   3,  54,     439] # EV_ABS / ABS_MT_POSITION_Y       439 (-5)
    - [ 11, 674546,   3,   1,     439] # EV_ABS / ABS_Y                   439 (-5)
    - [ 11, 674546,   4,   5, 11514800] # EV_MSC / MSC_TIMESTAMP        11514800
    - [ 11, 674546,   0,   0,       0] # ------------ SYN_REPORT (0) ---------- +7ms
  - evdev:
    - [ 11, 681672,   3,  54,     435] # EV_ABS / ABS_MT_POSITION_Y       435 (-4)
    - [ 11, 681672,   3,   1,     435] # EV_ABS / ABS_Y                   435 (-4)
    - [ 11, 681672,   4,   5, 11521800] # EV_MSC / MSC_TIMESTAMP        11521800
    - [ 11, 681672,   0,   0,       0] # ------------ SYN_REPORT (0) ---------- +7ms
  - evdev:
    - [ 11, 688755,   3,  54,     431] # EV_ABS / ABS_MT_POSITION_Y       431 (-4)
    - [ 11, 688755,   3,   1,     431] # EV_ABS / ABS_Y                   431 (-4)
    - [ 11, 688755,   4,   5, 11528800] # EV_MSC / MSC_TIMESTAMP        11528800
    - [ 11, 688755,   0,   0,       0] # ------------ SYN_REPORT (0) ---------- +7ms
  - evdev:
    - [ 11, 695847,   3,  54,     428] # EV_ABS / ABS_MT_POSITION_Y       428 (-3)
    - [ 11, 695847,   3,   1,     428] # EV_ABS / ABS_Y                   428 (-3)
    - [ 11, 695847,   4,   5, 11535800] # EV_MSC / MSC_TIMESTAMP        11535800
    - [ 11, 695847,   0,   0,       0] # ------------ SYN_REPORT (0) ---------- +7ms
  - evdev:
    - [ 11, 702919,   3,  54,     425] # EV_ABS / ABS_MT_POSITION_Y       425 (-3)
    - [ 11, 702919,   3,   1,     425] # EV_ABS / ABS_Y                   425 (-3)
    - [ 11, 702919,   4,   5, 11542800] # EV_MSC / MSC_TIMESTAMP        11542800
    - [ 11, 702919,   0,   0,       0] # ------------ SYN_REPORT (0) ---------- +7ms
  - evdev:
    - [ 11, 710066,   3,  54,     423] # EV_ABS / ABS_MT_POSITION_Y       423 (-2)
    - [ 11, 710066,   3,   1,     423] # EV_ABS / ABS_Y                   423 (-2)
    - [ 11, 710066,   4,   5, 11549800] # EV_MSC / MSC_TIMESTAMP        11549800
    - [ 11, 710066,   0,   0,       0] # ------------ SYN_REPORT (0) ---------- +8ms
  - evdev:
    - [ 11, 717167,   3,  54,     419] # EV_ABS / ABS_MT_POSITION_Y       419 (-4)
    - [ 11, 717167,   3,   1,     419] # EV_ABS / ABS_Y                   419 (-4)
    - [ 11, 717167,   4,   5, 11556800] # EV_MSC / MSC_TIMESTAMP        11556800
    - [ 11, 717167,   0,   0,       0] # ------------ SYN_REPORT (0) ---------- +7ms
  - evdev:
    - [ 11, 724464,   3,  54,     415] # EV_ABS / ABS_MT_POSITION_Y       415 (-4)
    - [ 11, 724464,   3,   1,     415] # EV_ABS / ABS_Y                   415 (-4)
    - [ 11, 724464,   4,   5, 11563800] # EV_MSC / MSC_TIMESTAMP        11563800
    - [ 11, 724464,   0,   0,       0] # ------------ SYN_REPORT (0) ---------- +7ms
  - evdev:
    - [ 11, 731385,   3,  54,     410] # EV_ABS / ABS_MT_POSITION_Y       410 (-5)
    - [ 11, 731385,   3,   1,     410] # EV_ABS / ABS_Y                   410 (-5)
    - [ 11, 731385,   4,   5, 11570800] # EV_MSC / MSC_TIMESTAMP        11570800
    - [ 11, 731385,   0,   0,       0] # ------------ SYN_REPORT (0) ---------- +7ms
  - evdev:
    - [ 11, 738487,   3,  54,     405] # EV_ABS / ABS_MT_POSITION_Y       405 (-5)
    - [ 11, 738487,   3,   1,     405] # EV_ABS / ABS_Y                   405 (-5)
    - [ 11, 738487,   4,   5, 11577800] # EV_MSC / MSC_TIMESTAMP        11577800
    - [ 11, 738487,   0,   0,       0] # ------------ SYN_REPORT (0) ---------- +7ms
  - evdev:
    - [ 11, 745580,   3,  54,     399] # EV_ABS / ABS_MT_POSITION_Y       399 (-6)
    - [ 11, 745580,   3,   1,     399] # EV_ABS / ABS_Y                   399 (-6)
    - [ 11, 745580,   4,   5, 11584800] # EV_MSC / MSC_TIMESTAMP        11584800
    - [ 11, 745580,   0,   0,       0] # ------------ SYN_REPORT (0) ---------- +7ms
  - evdev:
    - [ 11, 752683,   3,  54,     396] # EV_ABS / ABS_MT_POSITION_Y       396 (-3)
    - [ 11, 752683,   3,   1,     396] # EV_ABS / ABS_Y                   396 (-3)
    - [ 11, 752683,   4,   5, 11591800] # EV_MSC / MSC_TIMESTAMP        11591800
    - [ 11, 752683,   0,   0,       0] # ------------ SYN_REPORT (0) ---------- +7ms
  - evdev:
    - [ 11, 759860,   3,  54,     392] # EV_ABS / ABS_MT_POSITION_Y       392 (-4)
    - [ 11, 759860,   3,   1,     392] # EV_ABS / ABS_Y                   392 (-4)
    - [ 11, 759860,   4,   5, 11598800] # EV_MSC / MSC_TIMESTAMP        11598800
    - [ 11, 759860,   0,   0,       0] # ------------ SYN_REPORT (0) ---------- +7ms
  - evdev:
    - [ 11, 766846,   3,  54,     391] # EV_ABS / ABS_MT_POSITION_Y       391 (-1)
    - [ 11, 766846,   3,   1,     391] # EV_ABS / ABS_Y                   391 (-1)
    - [ 11, 766846,   4,   5, 11605800] # EV_MSC / MSC_TIMESTAMP        11605800
    - [ 11, 766846,   0,   0,       0] # ------------ SYN_REPORT (0) ---------- +7ms
  - evdev:
    - [ 11, 774156,   3,  54,     390] # EV_ABS / ABS_MT_POSITION_Y       390 (-1)
    - [ 11, 774156,   3,   1,     390] # EV_ABS / ABS_Y                   390 (-1)
    - [ 11, 774156,   4,   5, 11612800] # EV_MSC / MSC_TIMESTAMP        11612800
    - [ 11, 774156,   0,   0,       0] # ------------ SYN_REPORT (0) ---------- +8ms
  - evdev:
    - [ 11, 781123,   3,  54,     389] # EV_ABS / ABS_MT_POSITION_Y       389 (-1)
    - [ 11, 781123,   3,   1,     389] # EV_ABS / ABS_Y                   389 (-1)
    - [ 11, 781123,   4,   5, 11619800] # EV_MSC / MSC_TIMESTAMP        11619800
    - [ 11, 781123,   0,   0,       0] # ------------ SYN_REPORT (0) ---------- +7ms
  - evdev:
    - [ 11, 788233,   4,   5, 11626800] # EV_MSC / MSC_TIMESTAMP        11626800
    - [ 11, 788233,   0,   0,       0] # ------------ SYN_REPORT (0) ---------- +7ms
  - evdev:
    - [ 11, 795301,   4,   5, 11633800] # EV_MSC / MSC_TIMESTAMP        11633800
    - [ 11, 795301,   0,   0,       0] # ------------ SYN_REPORT (0) ---------- +7ms
  - evdev:
    - [ 11, 802432,   3,  54,     388] # EV_ABS / ABS_MT_POSITION_Y       388 (-1)
    - [ 11, 802432,   3,   1,     388] # EV_ABS / ABS_Y                   388 (-1)
    - [ 11, 802432,   4,   5, 11640800] # EV_MSC / MSC_TIMESTAMP        11640800
    - [ 11, 802432,   0,   0,       0] # ------------ SYN_REPORT (0) ---------- +7ms
  - evdev:
    - [ 11, 809532,   4,   5, 11647800] # EV_MSC / MSC_TIMESTAMP        11647800
    - [ 11, 809532,   0,   0,       0] # ------------ SYN_REPORT (0) ---------- +7ms
  - evdev:
    - [ 11, 816652,   4,   5, 11654800] # EV_MSC / MSC_TIMESTAMP        11654800
    - [ 11, 816652,   0,   0,       0] # ------------ SYN_REPORT (0) ---------- +7ms
  - evdev:
    - [ 11, 823925,   4,   5, 11661800] # EV_MSC / MSC_TIMESTAMP        11661800
    - [ 11, 823925,   0,   0,       0] # ------------ SYN_REPORT (0) ---------- +7ms
  - evdev:
    - [ 11, 830872,   4,   5, 11668800] # EV_MSC / MSC_TIMESTAMP        11668800
    - [ 11, 830872,   0,   0,       0] # ------------ SYN_REPORT (0) ---------- +7ms
  - evdev:
    - [ 11, 837975,   4,   5, 11675800] # EV_MSC / MSC_TIMESTAMP        11675800
    - [ 11, 837975,   0,   0,       0] # ------------ SYN_REPORT (0) ---------- +7ms
  - evdev:
    - [ 11, 845075,   4,   5, 11682800] # EV_MSC / MSC_TIMESTAMP        11682800
    - [ 11, 845075,   0,   0,       0] # ------------ SYN_REPORT (0) ---------- +8ms
  - evdev:
    - [ 11, 852170,   4,   5, 11689800] # EV_MSC / MSC_TIMESTAMP        11689800
    - [ 11, 852170,   0,   0,       0] # ------------ SYN_REPORT (0) ---------- +7ms
  - evdev:
    - [ 11, 859250,   4,   5, 11696800] # EV_MSC / MSC_TIMESTAMP        11696800
    - [ 11, 859250,   0,   0,       0] # ------------ SYN_REPORT (0) ---------- +7ms
  - evdev:
    - [ 11, 866368,   4,   5, 11703800] # EV_MSC / MSC_TIMESTAMP        11703800
    - [ 11, 866368,   0,   0,       0] # ------------ SYN_REPORT (0) ---------- +7ms
  - evdev:
    - [ 11, 873474,   4,   5, 11710800] # EV_MSC / MSC_TIMESTAMP        11710800
    - [ 11, 873474,   0,   0,       0] # ------------ SYN_REPORT (0) ---------- +7ms
  - evdev:
    - [ 11, 880607,   4,   5, 11717800] # EV_MSC / MSC_TIMESTAMP        11717800
    - [ 11, 880607,   0,   0,       0] # ------------ SYN_REPORT (0) ---------- +7ms
  - evdev:
    - [ 11, 887694,   4,   5, 11724800] # EV_MSC / MSC_TIMESTAMP        11724800
    - [ 11, 887694,   0,   0,       0] # ------------ SYN_REPORT (0) ---------- +7ms
  - evdev:
    - [ 11, 894884,   4,   5, 11731800] # EV_MSC / MSC_TIMESTAMP        11731800
    - [ 11, 894884,   0,   0,       0] # ------------ SYN_REPORT (0) ---------- +7ms
  - evdev:
    - [ 11, 901925,   4,   5, 11738800] # EV_MSC / MSC_TIMESTAMP        11738800
    - [ 11, 901925,   0,   0,       0] # ------------ SYN_REPORT (0) ---------- +7ms
  - evdev:
    - [ 11, 908985,   4,   5, 11745800] # EV_MSC / MSC_TIMESTAMP        11745800
    - [ 11, 908985,   0,   0,       0] # ------------ SYN_REPORT (0) ---------- +7ms
  - evdev:
    - [ 11, 916016,   4,   5, 11752800] # EV_MSC / MSC_TIMESTAMP        11752800
    - [ 11, 916016,   0,   0,       0] # ------------ SYN_REPORT (0) ---------- +8ms
  - evdev:
    - [ 11, 924521,   4,   5, 11759800] # EV_MSC / MSC_TIMESTAMP        11759800
    - [ 11, 924521,   0,   0,       0] # ------------ SYN_REPORT (0) ---------- +8ms
  - evdev:
    - [ 11, 929562,   4,   5, 11766800] # EV_MSC / MSC_TIMESTAMP        11766800
    - [ 11, 929562,   0,   0,       0] # ------------ SYN_REPORT (0) ---------- +5ms
  - evdev:
    - [ 11, 929567,   3,  57,      -1] # EV_ABS / ABS_MT_TRACKING_ID       -1
    - [ 11, 929567,   1, 330,       0] # EV_KEY / BTN_TOUCH                 0
    - [ 11, 929567,   1, 325,       0] # EV_KEY / BTN_TOOL_FINGER           0
    - [ 11, 929567,   0,   0,       0] # ------------ SYN_REPORT (0) ---------- +0ms
                                       # Touch device in neutral state
  # Current time is 23:38:20

The neutral state the touchpad is in at the end of the record is during a freeze, so everything before that should be what is happening.

journal, using --since "1 min ago" right after it happened:

Nov 29 23:42:36 brazil dbus-daemon[1856]: [system] Activation via systemd failed for unit 'dbus-org.freedesktop.home1.service': Unit dbus-org.freedesktop.home1.
service not found.
Nov 29 23:42:36 brazil sudo[5408]: pam_systemd_home(sudo:account): systemd-homed is not available: Unit dbus-org.freedesktop.home1.service not found.
Nov 29 23:42:36 brazil audit[5408]: USER_ACCT pid=5408 uid=1000 auid=1000 ses=1 msg='op=PAM:accounting grantors=pam_unix,pam_permit,pam_time acct="argus" exe="/usr/bin/sudo" hostname=? addr=? terminal=/dev/pts/0 res=success'
Nov 29 23:42:36 brazil audit[5408]: CRED_REFR pid=5408 uid=1000 auid=1000 ses=1 msg='op=PAM:setcred grantors=pam_faillock,pam_permit,pam_env,pam_faillock acct="root" exe="/usr/bin/sudo" hostname=? addr=? terminal=/dev/pts/0 res=success'
Nov 29 23:42:36 brazil audit[5408]: USER_START pid=5408 uid=1000 auid=1000 ses=1 msg='op=PAM:session_open grantors=pam_limits,pam_unix,pam_permit acct="root" exe="/usr/bin/sudo" hostname=? addr=? terminal=/dev/pts/0 res=success'
Nov 29 23:42:36 brazil sudo[5408]:    argus : TTY=pts/0 ; PWD=/home/argus ; USER=root ; COMMAND=/usr/bin/journalctl --since 1 min ago
Nov 29 23:42:36 brazil sudo[5408]: pam_unix(sudo:session): session opened for user root(uid=0) by (uid=1000)
Nov 29 23:42:36 brazil kernel: audit: type=1101 audit(1638247356.491:85): pid=5408 uid=1000 auid=1000 ses=1 msg='op=PAM:accounting grantors=pam_unix,pam_permit,pam_time acct="argus" exe="/usr/bin/sudo" hostname=? addr=? terminal=/dev/pts/0 res=success'
Nov 29 23:42:36 brazil kernel: audit: type=1110 audit(1638247356.491:86): pid=5408 uid=1000 auid=1000 ses=1 msg='op=PAM:setcred grantors=pam_faillock,pam_permit,pam_env,pam_faillock acct="root" exe="/usr/bin/sudo" hostname=? addr=? terminal=/dev/pts/0 res=success'
Nov 29 23:42:36 brazil kernel: audit: type=1105 audit(1638247356.491:87): pid=5408 uid=1000 auid=1000 ses=1 msg='op=PAM:session_open grantors=pam_limits,pam_unix,pam_permit acct="root" exe="/usr/bin/sudo" hostname=? addr=? terminal=/dev/pts/0 res=success'
N

some dmesg:

[   15.574257] kauditd_printk_skb: 12 callbacks suppressed
[   15.574262] audit: type=1130 audit(1638246620.600:62): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=NetworkManager-dispatcher comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
[   26.019735] audit: type=1131 audit(1638246631.046:63): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=NetworkManager-dispatcher comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
[   33.310064] audit: type=1131 audit(1638246638.336:64): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-hostnamed comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
[   33.454681] audit: type=1334 audit(1638246638.483:65): prog-id=0 op=UNLOAD
[   33.454692] audit: type=1334 audit(1638246638.483:66): prog-id=0 op=UNLOAD
[   33.454696] audit: type=1334 audit(1638246638.483:67): prog-id=0 op=UNLOAD
[  426.999867] audit: type=1130 audit(1638247031.508:68): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=polkit comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
[  428.095240] audit: type=1130 audit(1638247032.605:69): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=rtkit-daemon comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
[  428.390514] Bluetooth: RFCOMM TTY layer initialized
[  428.390522] Bluetooth: RFCOMM socket layer initialized
[  428.390523] Bluetooth: RFCOMM ver 1.11
[  444.479841] audit: type=1101 audit(1638247048.988:70): pid=5102 uid=1000 auid=1000 ses=1 msg='op=PAM:accounting grantors=pam_unix,pam_permit,pam_time acct="argus" exe="/usr/bin/sudo" hostname=? addr=? terminal=/dev/pts/0 res=success'
[  444.480608] audit: type=1110 audit(1638247048.988:71): pid=5102 uid=1000 auid=1000 ses=1 msg='op=PAM:setcred grantors=pam_faillock,pam_permit,pam_env,pam_faillock acct="root" exe="/usr/bin/sudo" hostname=? addr=? terminal=/dev/pts/0 res=success'
[  444.480700] audit: type=1105 audit(1638247048.988:72): pid=5102 uid=1000 auid=1000 ses=1 msg='op=PAM:session_open grantors=pam_limits,pam_unix,pam_permit acct="root" exe="/usr/bin/sudo" hostname=? addr=? terminal=/dev/pts/0 res=success'
[  444.484751] audit: type=1106 audit(1638247048.995:73): pid=5102 uid=1000 auid=1000 ses=1 msg='op=PAM:session_close grantors=pam_limits,pam_unix,pam_permit acct="root" exe="/usr/bin/sudo" hostname=? addr=? terminal=/dev/pts/0 res=success'
[  444.484859] audit: type=1104 audit(1638247048.995:74): pid=5102 uid=1000 auid=1000 ses=1 msg='op=PAM:setcred grantors=pam_faillock,pam_permit,pam_env,pam_faillock acct="root" exe="/usr/bin/sudo" hostname=? addr=? terminal=/dev/pts/0 res=success'
[  449.200140] audit: type=1101 audit(1638247053.708:75): pid=5117 uid=1000 auid=1000 ses=1 msg='op=PAM:accounting grantors=pam_unix,pam_permit,pam_time acct="argus" exe="/usr/bin/sudo" hostname=? addr=? terminal=/dev/pts/0 res=success'
[  449.201050] audit: type=1110 audit(1638247053.712:76): pid=5117 uid=1000 auid=1000 ses=1 msg='op=PAM:setcred grantors=pam_faillock,pam_permit,pam_env,pam_faillock acct="root" exe="/usr/bin/sudo" hostname=? addr=? terminal=/dev/pts/0 res=success'
[  449.201188] audit: type=1105 audit(1638247053.712:77): pid=5117 uid=1000 auid=1000 ses=1 msg='op=PAM:session_open grantors=pam_limits,pam_unix,pam_permit acct="root" exe="/usr/bin/sudo" hostname=? addr=? terminal=/dev/pts/0 res=success'
[  469.338625] audit: type=1106 audit(1638247073.848:78): pid=5117 uid=1000 auid=1000 ses=1 msg='op=PAM:session_close grantors=pam_limits,pam_unix,pam_permit acct="root" exe="/usr/bin/sudo" hostname=? addr=? terminal=/dev/pts/0 res=success'
[  469.338635] audit: type=1104 audit(1638247073.848:79): pid=5117 uid=1000 auid=1000 ses=1 msg='op=PAM:setcred grantors=pam_faillock,pam_permit,pam_env,pam_faillock acct="root" exe="/usr/bin/sudo" hostname=? addr=? terminal=/dev/pts/0 res=success'
[  476.775844] audit: type=1101 audit(1638247081.285:80): pid=5240 uid=1000 auid=1000 ses=1 msg='op=PAM:accounting grantors=pam_unix,pam_permit,pam_time acct="argus" exe="/usr/bin/sudo" hostname=? addr=? terminal=/dev/pts/0 res=success'
[  476.776494] audit: type=1110 audit(1638247081.285:81): pid=5240 uid=1000 auid=1000 ses=1 msg='op=PAM:setcred grantors=pam_faillock,pam_permit,pam_env,pam_faillock acct="root" exe="/usr/bin/sudo" hostname=? addr=? terminal=/dev/pts/0 res=success'
[  476.776656] audit: type=1105 audit(1638247081.285:82): pid=5240 uid=1000 auid=1000 ses=1 msg='op=PAM:session_open grantors=pam_limits,pam_unix,pam_permit acct="root" exe="/usr/bin/sudo" hostname=? addr=? terminal=/dev/pts/0 res=success'
[  496.043071] audit: type=1106 audit(1638247100.551:83): pid=5240 uid=1000 auid=1000 ses=1 msg='op=PAM:session_close grantors=pam_limits,pam_unix,pam_permit acct="root" exe="/usr/bin/sudo" hostname=? addr=? terminal=/dev/pts/0 res=success'
[  496.043103] audit: type=1104 audit(1638247100.551:84): pid=5240 uid=1000 auid=1000 ses=1 msg='op=PAM:setcred grantors=pam_faillock,pam_permit,pam_env,pam_faillock acct="root" exe="/usr/bin/sudo" hostname=? addr=? terminal=/dev/pts/0 res=success'
[  751.981709] audit: type=1101 audit(1638247356.491:85): pid=5408 uid=1000 auid=1000 ses=1 msg='op=PAM:accounting grantors=pam_unix,pam_permit,pam_time acct="argus" exe="/usr/bin/sudo" hostname=? addr=? terminal=/dev/pts/0 res=success'
[  751.982318] audit: type=1110 audit(1638247356.491:86): pid=5408 uid=1000 auid=1000 ses=1 msg='op=PAM:setcred grantors=pam_faillock,pam_permit,pam_env,pam_faillock acct="root" exe="/usr/bin/sudo" hostname=? addr=? terminal=/dev/pts/0 res=success'
[  751.982321] audit: type=1105 audit(1638247356.491:87): pid=5408 uid=1000 auid=1000 ses=1 msg='op=PAM:session_open grantors=pam_limits,pam_unix,pam_permit acct="root" exe="/usr/bin/sudo" hostname=? addr=? terminal=/dev/pts/0 res=success'
[  793.601302] audit: type=1101 audit(1638247398.108:88): pid=5471 uid=1000 auid=1000 ses=1 msg='op=PAM:accounting grantors=pam_unix,pam_permit,pam_time acct="argus" exe="/usr/bin/sudo" hostname=? addr=? terminal=/dev/pts/1 res=success'
[  793.602413] audit: type=1110 audit(1638247398.111:89): pid=5471 uid=1000 auid=1000 ses=1 msg='op=PAM:setcred grantors=pam_faillock,pam_permit,pam_env,pam_faillock acct="root" exe="/usr/bin/sudo" hostname=? addr=? terminal=/dev/pts/1 res=success'
[  793.602559] audit: type=1105 audit(1638247398.111:90): pid=5471 uid=1000 auid=1000 ses=1 msg='op=PAM:session_open grantors=pam_limits,pam_unix,pam_permit acct="root" exe="/usr/bin/sudo" hostname=? addr=? terminal=/dev/pts/1 res=success'
[  793.616823] audit: type=1106 audit(1638247398.124:91): pid=5471 uid=1000 auid=1000 ses=1 msg='op=PAM:session_close grantors=pam_limits,pam_unix,pam_permit acct="root" exe="/usr/bin/sudo" hostname=? addr=? terminal=/dev/pts/1 res=success'
[  793.616826] audit: type=1104 audit(1638247398.124:92): pid=5471 uid=1000 auid=1000 ses=1 msg='op=PAM:setcred grantors=pam_faillock,pam_permit,pam_env,pam_faillock acct="root" exe="/usr/bin/sudo" hostname=? addr=? terminal=/dev/pts/1 res=success'
[  909.989723] audit: type=1130 audit(1638247514.497:93): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=NetworkManager-dispatcher comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
[  910.013738] audit: type=1130 audit(1638247514.520:94): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-tmpfiles-clean comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
[  910.013743] audit: type=1131 audit(1638247514.520:95): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=systemd-tmpfiles-clean comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
[  920.023820] audit: type=1131 audit(1638247524.530:96): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=NetworkManager-dispatcher comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
[ 1109.439453] audit: type=1101 audit(1638247713.946:97): pid=5855 uid=1000 auid=1000 ses=1 msg='op=PAM:accounting grantors=pam_unix,pam_permit,pam_time acct="argus" exe="/usr/bin/sudo" hostname=? addr=? terminal=/dev/pts/2 res=success'
[ 1109.440691] audit: type=1110 audit(1638247713.946:98): pid=5855 uid=1000 auid=1000 ses=1 msg='op=PAM:setcred grantors=pam_faillock,pam_permit,pam_env,pam_faillock acct="root" exe="/usr/bin/sudo" hostname=? addr=? terminal=/dev/pts/2 res=success'
[ 1109.440813] audit: type=1105 audit(1638247713.946:99): pid=5855 uid=1000 auid=1000 ses=1 msg='op=PAM:session_open grantors=pam_limits,pam_unix,pam_permit acct="root" exe="/usr/bin/sudo" hostname=? addr=? terminal=/dev/pts/2 res=success'
[ 1117.813678] audit: type=1106 audit(1638247722.320:100): pid=5855 uid=1000 auid=1000 ses=1 msg='op=PAM:session_close grantors=pam_limits,pam_unix,pam_permit acct="root" exe="/usr/bin/sudo" hostname=? addr=? terminal=/dev/pts/2 res=success'
[ 1117.813682] audit: type=1104 audit(1638247722.320:101): pid=5855 uid=1000 auid=1000 ses=1 msg='op=PAM:setcred grantors=pam_faillock,pam_permit,pam_env,pam_faillock acct="root" exe="/usr/bin/sudo" hostname=? addr=? terminal=/dev/pts/2 res=success'
[ 1127.840926] audit: type=1101 audit(1638247732.346:102): pid=6139 uid=1000 auid=1000 ses=1 msg='op=PAM:accounting grantors=pam_unix,pam_permit,pam_time acct="argus" exe="/usr/bin/sudo" hostname=? addr=? terminal=/dev/pts/2 res=success'
[ 1127.841991] audit: type=1110 audit(1638247732.346:103): pid=6139 uid=1000 auid=1000 ses=1 msg='op=PAM:setcred grantors=pam_faillock,pam_permit,pam_env,pam_faillock acct="root" exe="/usr/bin/sudo" hostname=? addr=? terminal=/dev/pts/2 res=success'
[ 1127.842048] audit: type=1105 audit(1638247732.346:104): pid=6139 uid=1000 auid=1000 ses=1 msg='op=PAM:session_open grantors=pam_limits,pam_unix,pam_permit acct="root" exe="/usr/bin/sudo" hostname=? addr=? terminal=/dev/pts/2 res=success'
[ 1129.291249] audit: type=1106 audit(1638247733.796:105): pid=6139 uid=1000 auid=1000 ses=1 msg='op=PAM:session_close grantors=pam_limits,pam_unix,pam_permit acct="root" exe="/usr/bin/sudo" hostname=? addr=? terminal=/dev/pts/2 res=success'
[ 1129.291288] audit: type=1104 audit(1638247733.796:106): pid=6139 uid=1000 auid=1000 ses=1 msg='op=PAM:setcred grantors=pam_faillock,pam_permit,pam_env,pam_faillock acct="root" exe="/usr/bin/sudo" hostname=? addr=? terminal=/dev/pts/2 res=success'
[ 1790.979638] audit: type=1106 audit(1638248395.484:107): pid=5408 uid=1000 auid=1000 ses=1 msg='op=PAM:session_close grantors=pam_limits,pam_unix,pam_permit acct="root" exe="/usr/bin/sudo" hostname=? addr=? terminal=/dev/pts/0 res=success'
[ 1790.979731] audit: type=1104 audit(1638248395.484:108): pid=5408 uid=1000 auid=1000 ses=1 msg='op=PAM:setcred grantors=pam_faillock,pam_permit,pam_env,pam_faillock acct="root" exe="/usr/bin/sudo" hostname=? addr=? terminal=/dev/pts/0 res=success'
[ 1800.570378] audit: type=1130 audit(1638248405.074:109): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=shadow comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
[ 1800.577365] audit: type=1101 audit(1638248405.081:110): pid=7668 uid=1000 auid=1000 ses=1 msg='op=PAM:accounting grantors=pam_unix,pam_permit,pam_time acct="argus" exe="/usr/bin/sudo" hostname=? addr=? terminal=/dev/pts/0 res=success'
[ 1800.577670] audit: type=1110 audit(1638248405.081:111): pid=7668 uid=1000 auid=1000 ses=1 msg='op=PAM:setcred grantors=pam_faillock,pam_permit,pam_env,pam_faillock acct="root" exe="/usr/bin/sudo" hostname=? addr=? terminal=/dev/pts/0 res=success'
[ 1800.577731] audit: type=1105 audit(1638248405.081:112): pid=7668 uid=1000 auid=1000 ses=1 msg='op=PAM:session_open grantors=pam_limits,pam_unix,pam_permit acct="root" exe="/usr/bin/sudo" hostname=? addr=? terminal=/dev/pts/0 res=success'
[ 1800.583844] audit: type=1131 audit(1638248405.088:113): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=shadow comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
[ 1801.936793] audit: type=1130 audit(1638248406.441:114): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=man-db comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
[ 1801.936797] audit: type=1131 audit(1638248406.441:115): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=man-db comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
[ 1805.604474] audit: type=1106 audit(1638248410.108:116): pid=7668 uid=1000 auid=1000 ses=1 msg='op=PAM:session_close grantors=pam_limits,pam_unix,pam_permit acct="root" exe="/usr/bin/sudo" hostname=? addr=? terminal=/dev/pts/0 res=success'
[ 1805.604478] audit: type=1104 audit(1638248410.108:117): pid=7668 uid=1000 auid=1000 ses=1 msg='op=PAM:setcred grantors=pam_faillock,pam_permit,pam_env,pam_faillock acct="root" exe="/usr/bin/sudo" hostname=? addr=? terminal=/dev/pts/0 res=success'
[ 1809.952858] audit: type=1130 audit(1638248414.458:118): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=NetworkManager-dispatcher comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
[ 1818.527745] audit: type=1101 audit(1638248423.031:119): pid=7831 uid=1000 auid=1000 ses=1 msg='op=PAM:accounting grantors=pam_unix,pam_permit,pam_time acct="argus" exe="/usr/bin/sudo" hostname=? addr=? terminal=/dev/pts/0 res=success'
[ 1818.528238] audit: type=1110 audit(1638248423.034:120): pid=7831 uid=1000 auid=1000 ses=1 msg='op=PAM:setcred grantors=pam_faillock,pam_permit,pam_env,pam_faillock acct="root" exe="/usr/bin/sudo" hostname=? addr=? terminal=/dev/pts/0 res=success'
[ 1818.528311] audit: type=1105 audit(1638248423.034:121): pid=7831 uid=1000 auid=1000 ses=1 msg='op=PAM:session_open grantors=pam_limits,pam_unix,pam_permit acct="root" exe="/usr/bin/sudo" hostname=? addr=? terminal=/dev/pts/0 res=success'
[ 1818.533167] audit: type=1106 audit(1638248423.038:122): pid=7831 uid=1000 auid=1000 ses=1 msg='op=PAM:session_close grantors=pam_limits,pam_unix,pam_permit acct="root" exe="/usr/bin/sudo" hostname=? addr=? terminal=/dev/pts/0 res=success'
[ 1818.533171] audit: type=1104 audit(1638248423.038:123): pid=7831 uid=1000 auid=1000 ses=1 msg='op=PAM:setcred grantors=pam_faillock,pam_permit,pam_env,pam_faillock acct="root" exe="/usr/bin/sudo" hostname=? addr=? terminal=/dev/pts/0 res=success'
[ 1820.020172] audit: type=1131 audit(1638248424.524:124): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=NetworkManager-dispatcher comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
[ 2362.060517] audit: type=1101 audit(1638248966.564:125): pid=8148 uid=1000 auid=1000 ses=1 msg='op=PAM:accounting grantors=pam_unix,pam_permit,pam_time acct="argus" exe="/usr/bin/sudo" hostname=? addr=? terminal=/dev/pts/0 res=success'
[ 2362.060944] audit: type=1110 audit(1638248966.564:126): pid=8148 uid=1000 auid=1000 ses=1 msg='op=PAM:setcred grantors=pam_faillock,pam_permit,pam_env,pam_faillock acct="root" exe="/usr/bin/sudo" hostname=? addr=? terminal=/dev/pts/0 res=success'
[ 2362.060992] audit: type=1105 audit(1638248966.564:127): pid=8148 uid=1000 auid=1000 ses=1 msg='op=PAM:session_open grantors=pam_limits,pam_unix,pam_permit acct="root" exe="/usr/bin/sudo" hostname=? addr=? terminal=/dev/pts/0 res=success'
[ 2362.073504] audit: type=1106 audit(1638248966.578:128): pid=8148 uid=1000 auid=1000 ses=1 msg='op=PAM:session_close grantors=pam_limits,pam_unix,pam_permit acct="root" exe="/usr/bin/sudo" hostname=? addr=? terminal=/dev/pts/0 res=success'
[ 2362.073539] audit: type=1104 audit(1638248966.578:129): pid=8148 uid=1000 auid=1000 ses=1 msg='op=PAM:setcred grantors=pam_faillock,pam_permit,pam_env,pam_faillock acct="root" exe="/usr/bin/sudo" hostname=? addr=? terminal=/dev/pts/0 res=success'
[ 2440.974044] audit: type=1101 audit(1638249045.478:130): pid=8193 uid=1000 auid=1000 ses=1 msg='op=PAM:accounting grantors=pam_unix,pam_permit,pam_time acct="argus" exe="/usr/bin/sudo" hostname=? addr=? terminal=/dev/pts/0 res=success'
[ 2440.975120] audit: type=1110 audit(1638249045.481:131): pid=8193 uid=1000 auid=1000 ses=1 msg='op=PAM:setcred grantors=pam_faillock,pam_permit,pam_env,pam_faillock acct="root" exe="/usr/bin/sudo" hostname=? addr=? terminal=/dev/pts/0 res=success'
[ 2440.975284] audit: type=1105 audit(1638249045.481:132): pid=8193 uid=1000 auid=1000 ses=1 msg='op=PAM:session_open grantors=pam_limits,pam_unix,pam_permit acct="root" exe="/usr/bin/sudo" hostname=? addr=? terminal=/dev/pts/0 res=success'

I don't really think this one is super relevant but its there if you need it I guess.

Hopefully these are helpful! I'm stumped as to what's going on.

Also, yes it's a multitouch mouse, I use two fingers to scroll and have used WMs with gestures.

Last edited by eyes (2021-12-01 20:34:58)

Offline

#18 2021-11-30 17:04:24

seth
Member
Registered: 2012-09-03
Posts: 49,973

Re: Mouse Lag/Freezing without apparent cause

Google knows device and symptoms, but they don't seem down to libinput:
https://www.dell.com/community/XPS/XPS- … -p/8012567
https://gitlab.freedesktop.org/libinput … issues/618

Did you try xf86-input-evdev?

----
The 0bin.net urls turn my browser into a core-consumer - inspecting the html, it seems to decryp a huge data block in javascript… or mine bitcoins.

Online

#19 2021-12-01 20:33:55

eyes
Member
Registered: 2021-10-26
Posts: 25

Re: Mouse Lag/Freezing without apparent cause

seth wrote:

Google knows device and symptoms, but they don't seem down to libinput:
https://www.dell.com/community/XPS/XPS- … -p/8012567
https://gitlab.freedesktop.org/libinput … issues/618

Did you try xf86-input-evdev?

----
The 0bin.net urls turn my browser into a core-consumer - inspecting the html, it seems to decryp a huge data block in javascript… or mine bitcoins.

Deleting those urls. Didn't even notice a performance difference or both to inspect it. Thanks. I'll be more careful about such free sites in the future.

As for evdev, I installed it and left libinput installed as described in a previous post. Based on libinput record, the touchpad is now using evdev drivers so I think it has taken effect? Although I am using libinput to access that information, so that seems a bit odd.

Offline

#20 2021-12-01 22:36:42

seth
Member
Registered: 2012-09-03
Posts: 49,973

Re: Mouse Lag/Freezing without apparent cause

Which driver is in use can be seen in the xorg log, https://wiki.archlinux.org/title/Xorg#General
iirc libinput will take precedence over evdev if both are available.

Online

Board footer

Powered by FluxBB