2024-11-04 15:46:00 -05:00
|
|
|
#!/bin/sh
|
2024-11-13 13:17:22 -05:00
|
|
|
|
2024-12-11 11:21:03 -05:00
|
|
|
current_layer=$(get_plasma_keyboard_layout)
|
|
|
|
#current_layer=$(timeout 0.1s keyd listen | grep -m 1 '^/' | sed 's/^\///')
|
|
|
|
#if [ "$current_layer" = "qwerty" ]; then
|
|
|
|
# current_layer="basic"
|
|
|
|
#fi
|
2024-11-13 13:17:22 -05:00
|
|
|
DOTOOL_XKB_LAYOUT=us DOTOOL_XKB_VARIANT=$current_layer /usr/bin/dotool "$@"
|