voidrice/.local/bin/remapd
2023-02-08 13:35:57 -05:00

9 lines
157 B
Bash
Executable file

#!/bin/sh
# Rerun the remaps script whenever a new input device is added.
while : ; do
remaps
dmesg -W -f kern | grep "input:" -q
sleep 1
done