mirror of
https://github.com/LukeSmithxyz/voidrice.git
synced 2026-01-30 09:48:11 +01:00
9 lines
167 B
Bash
Executable File
9 lines
167 B
Bash
Executable File
#!/bin/sh
|
|
|
|
# Rerun the remaps script whenever a new input device is added.
|
|
|
|
while :; do
|
|
remaps
|
|
watch -gn1 sh -c 'xinput --list | grep keyboard' >/dev/null 2>&1
|
|
done
|