53a66c6254
This script will automatically run remaps when it detects a line in dmesg that contains "input:"
6 lines
91 B
Bash
6 lines
91 B
Bash
#!/bin/sh
|
|
while : ; do
|
|
dmesg -W -f kern | grep "input:" -q
|
|
sleep 1
|
|
remaps
|
|
done
|