Parcourir la source

Script to disable touchscreen

Viktor Grahn il y a 2 ans
Parent
commit
a9035b0726
1 fichiers modifiés avec 4 ajouts et 0 suppressions
  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}