diff options
| author | Luke Smith <luke@lukesmith.xyz> | 2023-01-27 19:16:36 -0500 |
|---|---|---|
| committer | Luke Smith <luke@lukesmith.xyz> | 2023-01-27 19:16:36 -0500 |
| commit | bc846c9ae98339b82dbc4155b184bc924e050a10 (patch) | |
| tree | f9f9cf97441e011f881ba7aed7b6d277f42cc055 /.local/bin/statusbar | |
| parent | f30078225e1a19af0d6b2696187a991f332a65bf (diff) | |
| parent | f5ac77e719ff9696438037fd68d0b7bd584534e3 (diff) | |
| download | eibhear-bc846c9ae98339b82dbc4155b184bc924e050a10.tar.gz eibhear-bc846c9ae98339b82dbc4155b184bc924e050a10.tar.zst eibhear-bc846c9ae98339b82dbc4155b184bc924e050a10.zip | |
Merge branch 'master' of github.com:LukeSmithxyz/voidrice
Diffstat (limited to '.local/bin/statusbar')
| -rwxr-xr-x | .local/bin/statusbar/sb-kbselect | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/.local/bin/statusbar/sb-kbselect b/.local/bin/statusbar/sb-kbselect index f0c923f..ab2140c 100755 --- a/.local/bin/statusbar/sb-kbselect +++ b/.local/bin/statusbar/sb-kbselect @@ -5,6 +5,7 @@ kb="$(setxkbmap -query | grep -oP 'layout:\s*\K\w+')" || exit 1 case $BLOCK_BUTTON in 1) kb_choice="$(awk '/! layout/{flag=1; next} /! variant/{flag=0} flag {print $2, "- " $1}' /usr/share/X11/xkb/rules/base.lst | dmenu -l 15)" + [ -z "$kb_choice" ] && exit 0 kb="$(echo "$kb_choice" | awk '{print $3}')" setxkbmap "$kb" pkill -RTMIN+30 "${STATUSBAR:-dwmblocks}";; |
