1
0
mirror of https://github.com/jack-something/dmenu-keyboard synced 2024-11-14 00:46:34 -05:00
dmenu-keyboard/dmenu-kb
2019-06-26 19:36:46 +01:00

13 lines
194 B
Bash

#!/bin/sh
pgrep -x dmenu && exit
choice=$(echo "gb" | dmenu -i -p "Please type the keymap you wish to use:") || exit 1
if [ -z $choice ]; then
setxkbmap us
else
setxkbmap $choice
fi