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