Browse Source

Add files via upload

master
Jack Moore GitHub 4 years ago
parent
commit
e5c55649a0
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 12 additions and 0 deletions
  1. +12
    -0
      dmenu-kb

+ 12
- 0
dmenu-kb View File

@@ -0,0 +1,12 @@
#!/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

Loading…
Cancel
Save