voidrice/.local/bin/langselect
BertramMiller 02009db96e
langselect script
as requested, this version offers more keyboard layouts to select from
2020-05-16 01:34:34 -04:00

7 lines
242 B
Bash

#!/bin/sh
# requirements: dmenu, xorg-setxkbmap
chosen=$(localectl list-x11-keymap-layouts | dmenu -i )
s=$(echo "$chosen" | sed "s/.*; //")
setxkbmap $s
notify-send "Keyboard layout:" "$(setxkbmap -query | grep "layout" | awk '{print $2}')"