mirror of
https://github.com/LukeSmithxyz/voidrice.git
synced 2026-03-20 01:37:45 +01:00
10 lines
157 B
Bash
Executable File
10 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
|