mirror of
https://github.com/olexsmir/dotfiles.git
synced 2026-01-15 16:51:34 +02:00
6 lines
109 B
Bash
Executable file
6 lines
109 B
Bash
Executable file
#/bin/sh
|
|
case "$(xkblayout)" in
|
|
"Eng") echo "us" ;;
|
|
"Rus") echo "ru" ;;
|
|
"Ukr") echo "ua" ;;
|
|
esac
|