diff options
-rwxr-xr-x | mouse-settings | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/mouse-settings b/mouse-settings index 47014a8..949a7b8 100755 --- a/mouse-settings +++ b/mouse-settings @@ -8,9 +8,7 @@ elif [[ $(hostname) == "james" ]]; then # 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 + elif [[ $(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 |