mirror of
https://github.com/LukeSmithxyz/voidrice.git
synced 2026-01-30 09:48:11 +01:00
11 lines
211 B
Bash
Executable File
11 lines
211 B
Bash
Executable File
#!/bin/sh
|
|
|
|
# Rerun the remaps script whenever a new input device is added.
|
|
|
|
while :; do
|
|
udevadm monitor -u -t seat -s input -s usb | grep --line-buffer -m1 -P '[^un]bind'
|
|
sleep 1
|
|
remaps us:dvorak
|
|
done
|
|
|