mirror of
https://github.com/LukeSmithxyz/voidrice.git
synced 2026-03-20 01:37:45 +01:00
8 lines
255 B
Bash
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}')"
|