9 lines
105 B
Bash
9 lines
105 B
Bash
|
#!/bin/zsh
|
||
|
|
||
|
if setxkbmap -query | grep layout | grep -q "us";
|
||
|
then
|
||
|
setxkbmap pt
|
||
|
else
|
||
|
setxkbmap us
|
||
|
fi
|