voidrice/.local/bin/langselect
BertramMiller 6e476c459b
langselect (works with dwmblocks "language" module)
This script uses dmenu and xorg-setxkbmap to switch between keyboard layouts
2020-05-15 21:48:44 -04:00

8 lines
255 B
Bash

#!/bin/sh
# requirements: dmenu, xorg-setxkbmap
choices="us\\nfr\\nua\\nru"
chosen=$(echo -e "$choices" | dmenu -i )
s=$(echo "$chosen" | sed "s/.*; //")
setxkbmap $s
notify-send "Keyboard layout:" "$(setxkbmap -query | grep "layout" | awk '{print $2}')"