Skip to content

Instantly share code, notes, and snippets.

@scemama
Created March 22, 2015 20:20
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 scemama/03e40e6b05d90e3dc3d8 to your computer and use it in GitHub Desktop.
Save scemama/03e40e6b05d90e3dc3d8 to your computer and use it in GitHub Desktop.
Toggle keyboard layout
#!/bin/bash
declare -A new_layout
new_layout["us"]="us_intl"
new_layout["us_intl"]="us"
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