Difficulty: ★☆☆☆☆
In Manjaro Xfce, while typing, the touchpad doesn’t work, which is a default setting in this Desktop Environment (DE)
,
As There is no setting in Mouse and Touchpad Settings to switch this feature off using the GUI, you can do this by:
-
Go to Add/Remove Software
-
install
xorg-xinput -
Open a terminal by pressing Ctrl+Alt+T and execute:
xinputThis will display Input devices in your Computer. Under Virtual Core Pointer, look out for your touchpad name and note down its ID.
-
Execute:
xinput list-props IDWhere
IDis the number that came up in step #3 E.G.12That command will display different kind of touchpad settings
look forDisable while typing Enabled [number] 1 -
1meansYesin boolean so we have to make this0by executing:xinput set-prop [your touchpad id] [touchpad settings number] 0E.G.
xinput set-prop 12 302 0 -
That’s it! You’re done!
