12 lines
402 B
Text
12 lines
402 B
Text
|
#!/usr/bin/env bash
|
||
|
|
||
|
# ***This script was made by Clay Gomera (Drake)***
|
||
|
# - Description: A dwmblocks script to print the keyboard layout
|
||
|
# - Dependencies: dwm, dwmblocks, setxkbmap
|
||
|
|
||
|
# this variable will store the current keyboard layout in X
|
||
|
layout=$(setxkbmap -query | grep -oP 'layout:\s*\K\w+');
|
||
|
|
||
|
# print the current keyboard layout in all caps
|
||
|
echo " $layout " | tr '[:lower:]' '[:upper:]';
|