diff options
| author | Luke Smith <luke@lukesmith.xyz> | 2023-02-06 18:19:20 -0500 |
|---|---|---|
| committer | Luke Smith <luke@lukesmith.xyz> | 2023-02-06 18:19:20 -0500 |
| commit | c55a896653cacf5963fe6b4b66aebba61dfaf629 (patch) | |
| tree | 427ddf16f493a228cb9769fd22460f12b114165e /.local/bin/remapd | |
| parent | 624effaa18ebdbae50116dafc5fec4c7d9259e5b (diff) | |
| parent | 136456e4fab5a7cb428add6e995c941b2c99dcbe (diff) | |
| download | eibhear-c55a896653cacf5963fe6b4b66aebba61dfaf629.tar.gz eibhear-c55a896653cacf5963fe6b4b66aebba61dfaf629.tar.zst eibhear-c55a896653cacf5963fe6b4b66aebba61dfaf629.zip | |
Merge branch 'ssnailed-master'
Diffstat (limited to '.local/bin/remapd')
| -rw-r--r-- | .local/bin/remapd | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/.local/bin/remapd b/.local/bin/remapd new file mode 100644 index 0000000..4ce32b3 --- /dev/null +++ b/.local/bin/remapd @@ -0,0 +1,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 |
