Create remapd

This script will automatically run remaps when it detects a line in dmesg that contains "input:"
This commit is contained in:
snailed 2023-02-06 21:15:02 +00:00 committed by GitHub
parent 32a896ffdf
commit 53a66c6254
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

6
.local/bin/remapd Normal file
View file

@ -0,0 +1,6 @@
#!/bin/sh
while : ; do
dmesg -W -f kern | grep "input:" -q
sleep 1
remaps
done