summaryrefslogtreecommitdiffstats
path: root/bin/hush/watch-kbd
diff options
context:
space:
mode:
Diffstat (limited to 'bin/hush/watch-kbd')
-rwxr-xr-xbin/hush/watch-kbd11
1 files changed, 0 insertions, 11 deletions
diff --git a/bin/hush/watch-kbd b/bin/hush/watch-kbd
deleted file mode 100755
index cbb3824..0000000
--- a/bin/hush/watch-kbd
+++ /dev/null
@@ -1,11 +0,0 @@
-#!/bin/sh
-set -eu
-set -o pipefail
-
-inotifywait -mq -e create -e delete --exclude '.*tmp.*' /dev/input/by-id/ | \
- while read -r event; do
- echo "$event"
- if echo "$event" | grep -q USB_Keyboard; then
- setup-inputs
- fi
- done