diff options
-rwxr-xr-x | mouse-settings | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/mouse-settings b/mouse-settings index 08e40f7..8255630 100755 --- a/mouse-settings +++ b/mouse-settings @@ -10,9 +10,10 @@ elif [[ $(hostname) == "james" ]]; 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 + 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}') 3.0 + xinput set-prop $EXT_POINTER $(xinput list-props $EXT_POINTER | grep "Device Accel Adaptive Deceleration (" | awk -F '[()]' '{print $2}') 1.0 + xinput set-prop $EXT_POINTER $(xinput list-props $EXT_POINTER | grep "Device Accel Velocity Scaling (" | awk -F '[()]' '{print $2}') 10 fi xset m 3/2 4 fi |