ploopy on startup
authorIan Kelling <ian@iankelling.org>
Sat, 12 Nov 2022 19:06:09 +0000 (14:06 -0500)
committerIan Kelling <ian@iankelling.org>
Sat, 12 Nov 2022 19:06:09 +0000 (14:06 -0500)
brc2
input-setup

diff --git a/brc2 b/brc2
index ea1faafd479eb2b1f5128728f71c41a5853fd991..6ee207c10b126f440bd4952fff223a3a8fda2f7f 100644 (file)
--- a/brc2
+++ b/brc2
@@ -1462,10 +1462,6 @@ gajlogs() {
   sqlite3 -separator ' ' /p/c/subdir_files/.local/share/gajim/logs.db "select time, message from logs" | less
 }
 
-# slow down ploopy trackball
-ploop() {
-xinput --set-prop $(xinput list | grep -F 'Ploopy Corporation Trackball Mouse' | sed -rn 's/.*[[:space:]]id=([^[:space:]]*).*/\1/p') 'libinput Accel Speed' -0.9
-}
 
 net-dev-info() {
   e "lspci -nnk|gr -iA2 net"
index 9f6734cfcfd8e23902617416a74bbff2c391e193..8f0d99b971d32a8f033409bcb540cd5365bd5a80 100755 (executable)
@@ -34,10 +34,10 @@ ms() {
   # customizability. I havent yet determined the best settings here.
   if xinput --list-props "$1" | grep "libinput Accel Speed" &>/dev/null; then
     xinput --set-prop "$1" "libinput Accel Speed" 1
-    else
-  xinput --set-prop "$1" 'Device Accel Profile'  $4
-  xinput --set-prop "$1" 'Device Accel Constant Deceleration' $5
-  xinput --set-prop "$1" 'Device Accel Velocity Scaling' $6
+  else
+    xinput --set-prop "$1" 'Device Accel Profile'  $4
+    xinput --set-prop "$1" 'Device Accel Constant Deceleration' $5
+    xinput --set-prop "$1" 'Device Accel Velocity Scaling' $6
   fi
   mi "$1"
 }
@@ -90,9 +90,11 @@ if set_device_id "Logitech Unifying Device"; then
   xinput --set-prop "$device_id" 'Evdev Middle Button Emulation' 1
 fi
 
+# slow down ploopy trackball, until we recompile firmware
+id=$(xinput list | grep -F 'Ploopy Corporation Trackball Mouse' | sed -rn 's/.*[[:space:]]id=([^[:space:]]*).*/\1/p' ||:)
+if [[ $id ]]; then
+  xinput --set-prop  'libinput Accel Speed' -0.9
+fi
 
 set +x
 exit 0
-
-# ploopy setup until i recompile firmware
-# xinput --set-prop $(xinput list | grep -F 'Ploopy Corporation Trackball Mouse' | sed -rn 's/.*[[:space:]]id=([^[:space:]]*).*/\1/p') 'libinput Accel Speed' -0.9