My Qtile window manager configuration
git clone https://github.com/m-col/qtile-config
Files | Refs | Readme

Commit ec8dcc42c73063864c651117826fde0f2a691b98
Parent: b20d662fc47ccb38598417385ad4a6aa85eda18a
Author: mcol <mcol@posteo.net>
Date: 2021-09-02 20:52:49 +0100
Committer: mcol <mcol@posteo.net>
Committed: 2021-09-02 20:52:49 +0100

Add my usb mouse to wayland libinput config

wayland.py Modified

@@ -39,7 +39,8 @@
 try:
     from libqtile.backend.wayland import InputConfig
     wayland_libinput_config = {
-        "type:pointer": InputConfig(drag=True, tap=True, pointer_accel=0.4)
+            "type:pointer": InputConfig(pointer_accel=-0.7),
+            "1267:12377:ELAN1300:00 04F3:3059 Touchpad": InputConfig(drag=True, tap=True, pointer_accel=0.4),
     }
 except ImportError:
     wayland_libinput_config = None