7 lines
220 B
Plaintext
7 lines
220 B
Plaintext
|
#!/bin/sh
|
||
|
test "$ACTION" && case $ACTION in
|
||
|
add) id=1;;
|
||
|
remove) id=0;;
|
||
|
esac || id=$(test -c /dev/ttyACM0 && echo 1 || echo 0)
|
||
|
test "$id" && XAUTHORITY="/home/janek/.cache/Xauthority" DISPLAY=:0 xkblayout-state set $id
|