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