Skip to content

Instantly share code, notes, and snippets.

@scemama
Created January 26, 2015 09:28
Show Gist options
  • Save scemama/ce2fa4238b940f8c48c8 to your computer and use it in GitHub Desktop.
Save scemama/ce2fa4238b940f8c48c8 to your computer and use it in GitHub Desktop.
Change keyboard layout
#!/bin/bash
declare -A new_layout
if [[ -z $1 ]] ; then
new_layout["fr"]="us"
new_layout["us"]="us_intl"
new_layout["us_intl"]="us"
else
new_layout["us"]="fr"
new_layout["us_intl"]="fr"
new_layout["fr"]="us"
fi
cur_layout=$(setxkbmap -query | grep layout | cut -c13-)
setxkbmap -layout ${new_layout[$cur_layout]}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment