You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

20 lines
338 B

#!/usr/bin/env bash
set -o errexit
set -o pipefail
main() {
_setup_elan_touchpad
}
_setup_elan_touchpad() {
local etp='Elan Touchpad'
xinput list | if ! grep -q "${etp}"; then
return
fi
xinput set-prop "${etp}" 'libinput Tapping Enabled' 1
xinput set-prop "${etp}" 'libinput Natural Scrolling Enabled' 1
}
main "${@}"