10 lines
152 B
Bash
Executable file
10 lines
152 B
Bash
Executable file
#!/bin/sh
|
|
# shellcheck disable=SC2210
|
|
|
|
DEBOUNCE=1
|
|
|
|
while :; do
|
|
udevadm monitor -us input | timeout "$DEBOUNCE" cat
|
|
sleep .1
|
|
remaps -qd
|
|
done
|