From 175847352f0b6ec9115563d478452279850551ac Mon Sep 17 00:00:00 2001 From: Patrick Simianer Date: Tue, 1 Sep 2020 22:36:48 +0200 Subject: mouse-settings: evdev / libinput --- mouse-settings | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/mouse-settings b/mouse-settings index a34214d..08e40f7 100755 --- a/mouse-settings +++ b/mouse-settings @@ -5,6 +5,14 @@ if [[ $(hostname) == "bogues" ]]; then xinput set-prop $EXT_POINTER $(xinput list-props $EXT_POINTER | grep "libinput Accel Speed (" | awk -F '[()]' '{print $2}') 0.1 elif [[ $(hostname) == "james" ]]; then export EXT_POINTER=$(xinput list | grep "QEMU Virtio Mouse" | grep pointer | awk -F'=' '{print $2}' | cut -f 1) - xinput set-prop $EXT_POINTER $(xinput list-props $EXT_POINTER | grep "libinput Accel Speed (" | awk -F '[()]' '{print $2}') -0.95 + # for libinput + if [[ $(xinput list-props $EXT_POINTER | grep libinput) > 0 ]]; then + xinput set-prop $EXT_POINTER $(xinput list-props $EXT_POINTER | grep "libinput Accel Speed (" | awk -F '[()]' '{print $2}') -0.95 + fi + # for evdev + if [[ $(xinput list-props $EXT_POINTER | grep Evdev) > 0 ]]; then + xinput set-prop $EXT_POINTER $(xinput list-props $EXT_POINTER | grep "Device Accel Constant Deceleration (" | awk -F '[()]' '{print $2}') 2.0 + xinput set-prop $EXT_POINTER $(xinput list-props $EXT_POINTER | grep "Device Accel Adaptive Deceleration (" | awk -F '[()]' '{print $2}') 1.25 + fi xset m 3/2 4 fi -- cgit v1.2.3