voidrice/.local/bin/remapd
snailed 53a66c6254
Create remapd
This script will automatically run remaps when it detects a line in dmesg that contains "input:"
2023-02-06 21:15:02 +00:00

6 lines
91 B
Bash

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