summaryrefslogtreecommitdiffstats
path: root/bin/hush/watch-kbd
diff options
context:
space:
mode:
authorJesse Luehrs <doy@tozt.net>2021-03-01 03:44:51 -0500
committerJesse Luehrs <doy@tozt.net>2021-03-01 03:44:51 -0500
commit41e40fada15dfab455b02e51407feaaa2db0ebb2 (patch)
tree73831d6d87cf338343fddad7515a26522168e0a1 /bin/hush/watch-kbd
parent432bbcf90817b53ec7c7fff9cd819ada7efb2223 (diff)
downloadconf-41e40fada15dfab455b02e51407feaaa2db0ebb2.tar.gz
conf-41e40fada15dfab455b02e51407feaaa2db0ebb2.zip
remove hush configuration
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