Skip to content

Instantly share code, notes, and snippets.

@guedressel
Created May 28, 2014 20:07
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save guedressel/114eb2530b039923caf2 to your computer and use it in GitHub Desktop.
Save guedressel/114eb2530b039923caf2 to your computer and use it in GitHub Desktop.
Switch layout of keyboard in X11
#!/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