diff options
author | Amin Bandali <me@aminb.org> | 2015-03-07 12:49:11 -0500 |
---|---|---|
committer | Amin Bandali <me@aminb.org> | 2015-03-07 12:49:11 -0500 |
commit | ed5099ff571bda9392e255a6fdb8fceffdfd11a9 (patch) | |
tree | c65610bfb4ff1d21c4bc39ffdf8b4498adbdbb71 /sxhkd/.local/bin/toggle-layout | |
parent | 5009311386052de13a10969a7440402b300a1db9 (diff) | |
download | configs-ed5099ff571bda9392e255a6fdb8fceffdfd11a9.tar.gz configs-ed5099ff571bda9392e255a6fdb8fceffdfd11a9.tar.xz configs-ed5099ff571bda9392e255a6fdb8fceffdfd11a9.zip |
use XF86LaunchA for changing the keyboard layout
Diffstat (limited to 'sxhkd/.local/bin/toggle-layout')
-rwxr-xr-x | sxhkd/.local/bin/toggle-layout | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/sxhkd/.local/bin/toggle-layout b/sxhkd/.local/bin/toggle-layout new file mode 100755 index 0000000..fcae134 --- /dev/null +++ b/sxhkd/.local/bin/toggle-layout @@ -0,0 +1,9 @@ +#!/bin/bash + +lang="$(setxkbmap -print | grep xkb_symbols | cut -d'+' -f 2)" + +if [ "$lang" = "us" ]; then + setxkbmap ir +else + setxkbmap us +fi
\ No newline at end of file |