summaryrefslogtreecommitdiffstats
path: root/.local/bin
diff options
context:
space:
mode:
authorLuke Smith <luke@lukesmith.xyz>2023-01-27 19:16:36 -0500
committerLuke Smith <luke@lukesmith.xyz>2023-01-27 19:16:36 -0500
commitbc846c9ae98339b82dbc4155b184bc924e050a10 (patch)
treef9f9cf97441e011f881ba7aed7b6d277f42cc055 /.local/bin
parentf30078225e1a19af0d6b2696187a991f332a65bf (diff)
parentf5ac77e719ff9696438037fd68d0b7bd584534e3 (diff)
downloadeibhear-bc846c9ae98339b82dbc4155b184bc924e050a10.tar.gz
eibhear-bc846c9ae98339b82dbc4155b184bc924e050a10.tar.zst
eibhear-bc846c9ae98339b82dbc4155b184bc924e050a10.zip
Merge branch 'master' of github.com:LukeSmithxyz/voidrice
Diffstat (limited to '.local/bin')
-rwxr-xr-x.local/bin/statusbar/sb-kbselect1
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}";;