8 lines
106 B
Bash
Executable file
8 lines
106 B
Bash
Executable file
#!/bin/bash
|
|
|
|
if setxkbmap -query | grep layout | grep -q "us";
|
|
then
|
|
setxkbmap pt
|
|
else
|
|
setxkbmap us
|
|
fi
|