8 lines
232 B
Bash
8 lines
232 B
Bash
#!/bin/sh
|
|
|
|
current_layer=$(timeout 0.1s keyd listen | grep -m 1 '^/' | sed 's/^\///')
|
|
if [ "$current_layer" = "qwerty" ]; then
|
|
current_layer="basic"
|
|
fi
|
|
DOTOOL_XKB_LAYOUT=us DOTOOL_XKB_VARIANT=$current_layer /usr/bin/dotool "$@"
|