8 lines
109 B
Bash
Executable File
8 lines
109 B
Bash
Executable File
#!/bin/bash
|
|
if hyprctl devices | grep -q "active keymap: Russian"; then
|
|
echo "ru"
|
|
else
|
|
echo "en"
|
|
fi
|
|
|