summaryrefslogtreecommitdiffstats
path: root/.local/bin/remapd
blob: cf67428a7034b2ad2e345f3125bf3ebba018f98d (plain) (blame)
1
2
3
4
5
6
7
8
9
#!/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