As I tried to start the libinput-gestures after installation:
1 | libinput-gestures-setup start |
It failed
1 | libinput-gestures failed to start as a desktop application. |
I ventured through google, but got not solution.
Until I started to try other touch pad drivers, I saw a similar command I just used when installing libinput gestures
:
1 | sudo gpasswd -a $USER input |
In order to use libinput gestures
, the current user must added into the input
group, but it won’t take effect until you run the following command to join the group you’ve just added yourself to:
1 | newgrp input |
The newgrp command is used to change the current group ID during a login session.
The official docs suggested reboot after adding user to input
group.
Obviously too long, I didn’t read.