3 lines
120 B
Bash
Executable file
3 lines
120 B
Bash
Executable file
#!/bin/bash
|
|
layout=$(setxkbmap -query | grep -oP 'layout:\s*\K\w+');
|
|
echo " $layout " | tr '[:lower:]' '[:upper:]';
|