diff options
Diffstat (limited to 'bin')
-rwxr-xr-x | bin/touchpad_enable_tap.sh | 13 | ||||
-rwxr-xr-x | bin/yubikey_detect_touch.sh | 10 |
2 files changed, 19 insertions, 4 deletions
diff --git a/bin/touchpad_enable_tap.sh b/bin/touchpad_enable_tap.sh index 938c652..fbe1150 100755 --- a/bin/touchpad_enable_tap.sh +++ b/bin/touchpad_enable_tap.sh @@ -13,11 +13,16 @@ set -eu # xinput, libinput TOUCHPAD_ID="$(xinput | awk '/Touchpad/ {split($6, a, "="); print a[2]}')" -TAPPING_PROP_ID="$(xinput list-props "$TOUCHPAD_ID" | awk '/Tapping Enabled \(/ {split($4, a, "[()]"); print a[2]}')" +#TAPPING_PROP_ID="$(xinput list-props "$TOUCHPAD_ID" | awk '/Tapping Enabled \(/ {split($4, a, "[()]"); print a[2]}')" +TAPPING_PROP_ID="$(xinput list-props "$TOUCHPAD_ID" | awk '/Tap Action \(/ {split($4, a, "[()]"); print a[2]}')" +PALM_DETECT_PROP="$(xinput list-props "$TOUCHPAD_ID" | awk '/Palm Detection \(/ {split($4, a, "[()]"); print a[2]}')" -printf 'Touchpad ID:\t%s\n' "$TOUCHPAD_ID" -printf 'Tapping Prop:\t%s\n' "$TAPPING_PROP_ID" +printf 'Touchpad ID:\t\t%s\n' "$TOUCHPAD_ID" +printf 'Tapping Prop:\t\t%s\n' "$TAPPING_PROP_ID" +printf "Palm Detect Prop:\t%s\n" "$PALM_DETECT_PROP" -/usr/bin/xinput set-prop "$TOUCHPAD_ID" "$TAPPING_PROP_ID" 1 +/usr/bin/xinput set-prop "$TOUCHPAD_ID" "$TAPPING_PROP_ID" 1 1 1 1 1 1 +/usr/bin/xinput set-prop "$TOUCHPAD_ID" "$PALM_DETECT_PROP" 1 printf '\n...Tapping Enabled\n' + diff --git a/bin/yubikey_detect_touch.sh b/bin/yubikey_detect_touch.sh new file mode 100755 index 0000000..ce4893e --- /dev/null +++ b/bin/yubikey_detect_touch.sh @@ -0,0 +1,10 @@ +#!/bin/sh +set -e + +if ! pgrep yubikey-touch-detector; then + yubikey-touch-detector & +fi + +if ! pgrep yubikey-push-the-button; then + yubikey-push-the-button & +fi |