Explorar el Código

Script to disable touchscreen

Viktor Grahn hace 2 años
padre
commit
a9035b0726
Se han modificado 1 ficheros con 4 adiciones y 0 borrados
  1. 4 0
      disableTouchScreen

+ 4 - 0
disableTouchScreen

@@ -0,0 +1,4 @@
+#!/bin/bash
+
+INPUT_ID=$(xinput list | grep "Wacom HID 4943 Finger" | sed 's/.*id=\([[:digit:]]\+\).*$/\1/')
+xinput disable ${INPUT_ID}