5 lines
160 B
Bash
Executable File
5 lines
160 B
Bash
Executable File
#!/usr/bin/env bash
|
|
DEVICE="$(xinput list --name-only | grep -i "Touchpad$")"
|
|
echo Device is ${DEVICE}
|
|
xinput set-prop "${DEVICE}" "libinput Tapping Enabled" 1
|