Created
January 26, 2015 09:28
-
-
Save scemama/ce2fa4238b940f8c48c8 to your computer and use it in GitHub Desktop.
Change keyboard layout
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 | |
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