Created
May 28, 2014 20:07
-
-
Save guedressel/114eb2530b039923caf2 to your computer and use it in GitHub Desktop.
Switch layout of keyboard in X11
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# | |
# switch keyboardlayout of my external cherry keyboard to german layout | |
# | |
set -e | |
DEV_NAME="HID 046a:0023" | |
LAYOUT="at" | |
DEV_ID=`xinput list --id-only "keyboard:$DEV_NAME"` | |
exec setxkbmap -device $DEV_ID -layout $LAYOUT |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment