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