summaryrefslogtreecommitdiffstats
path: root/bin/hornet/watch-kbd
diff options
context:
space:
mode:
Diffstat (limited to 'bin/hornet/watch-kbd')
-rwxr-xr-xbin/hornet/watch-kbd14
1 files changed, 0 insertions, 14 deletions
diff --git a/bin/hornet/watch-kbd b/bin/hornet/watch-kbd
deleted file mode 100755
index a4d504e..0000000
--- a/bin/hornet/watch-kbd
+++ /dev/null
@@ -1,14 +0,0 @@
-#!/bin/bash
-set -eu
-set -o pipefail
-
-trap 'kill $(jobs -p)' EXIT
-
-inotifywait -mq -e create -e delete -e moved_to --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 &
-wait