You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

13 lines
194B

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