summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xmouse14
1 files changed, 11 insertions, 3 deletions
diff --git a/mouse b/mouse
index 8adad4f..c4d76e3 100755
--- a/mouse
+++ b/mouse
@@ -1,5 +1,13 @@
+#!/usr/bin/env zsh
+
export EXT_POINTER=$(xinput list | grep "USB-HID Keyboard" | grep pointer | awk -F'=' '{print $2}' | cut -f 1)
-xinput set-prop $EXT_POINTER 269 2.5
-xinput set-prop $EXT_POINTER 270 1.0
-xinput set-prop $EXT_POINTER 271 5.0
+
+if [[ $(hostname) == "bryant" ]]; then
+ xinput set-prop $EXT_POINTER $(xinput list-props $EXT_POINTER | grep "Device Accel Constant Deceleration" | cut -d: -f 2 | strips) 2.5
+ xinput set-prop $EXT_POINTER $(xinput list-props $EXT_POINTER | grep "Device Accel Constant Deceleration" | cut -d: -f 2 | strips) 1.0
+ xinput set-prop $EXT_POINTER $(xinput list-props $EXT_POINTER | grep "Device Adaptive Constant Deceleration" | cut -d: -f 2 | strips) 5.0
+elif [[ $(hostname) == "bogues" ]]; then
+ exec xinput set-prop $EXT_POINTER 268 2.5
+ exec xinput set-prop $EXT_POINTER 269 1.25
+fi