projects
/
~bandali
/
configs
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
cb259b461b4d2c5d2719945c01317d6714de86cb
[~bandali/configs]
/
sxhkd
/
.local
/
bin
/
toggle-layout
1
#!/bin/bash
2
3
lang
=
"$(setxkbmap -print | grep xkb_symbols | cut -d'+' -f 2)"
4
5
if
[
"
$lang
"
=
"us"
];
then
6
setxkbmap ir
7
else
8
setxkbmap us
9
xmodmap
$HOME
/
.Xmodmap
10
fi