add keyboard switch script
This commit is contained in:
parent
f1704018c0
commit
a021af59f3
1 changed files with 15 additions and 0 deletions
15
.local/bin/statusbar/kbselect
Executable file
15
.local/bin/statusbar/kbselect
Executable file
|
@ -0,0 +1,15 @@
|
|||
#!/bin/bash
|
||||
# works on any init system
|
||||
# requirements: dmenu, xorg-setxkbmap, xkblayout-state (https://github.com/nonpop/xkblayout-state)
|
||||
kb="$(xkblayout-state print "%s")"
|
||||
|
||||
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)"
|
||||
kb="$(echo "$kb_choice" | awk '{print $3}')"
|
||||
setxkbmap "$kb"
|
||||
pkill -RTMIN+30 "${STATUSBAR:-dwmblocks}";;
|
||||
3) notify-send "$(xkblayout-state print "Current layout: %s(%n)")";;
|
||||
6) "$TERMINAL" -e "$EDITOR" "$0" ;;
|
||||
esac
|
||||
|
||||
echo "$kb"
|
Loading…
Reference in a new issue