Saturday, 16 July 2022

[Linux] Disable the keyboard joystick

At time, the keyboard joystick goes rampage sending the pointer flying all over the screen - ok, it is more like it makes it creep about. Be it as it may, one can switch of such sticks:
xinput --disable $(xinput --list | grep -F Stick | cut -d "=" -f 2 | cut -d '[' -f 1)

No comments:

Post a Comment

[git] Create a local branch from another branch

From the active branch git checkout -b <LOCAL_BRANCH> From a donator branch git checkout -b <LOCAL_BRANCH> <DONATING_BRANCH...