mirror of
https://github.com/LukeSmithxyz/voidrice.git
synced 2026-01-30 09:48:11 +01:00
11 lines
191 B
Bash
11 lines
191 B
Bash
#!/bin/sh
|
|
|
|
# Rerun the remaps script whenever a new input device is added. Run by the
|
|
# xprofile by default.
|
|
|
|
while : ; do
|
|
dmesg -W -f kern | grep "input:" -q
|
|
sleep 1
|
|
remaps
|
|
done
|