5 lines
115 B
Bash
Executable file
5 lines
115 B
Bash
Executable file
#!/bin/sh
|
|
# Get current keyboard layout
|
|
|
|
setxkbmap -query | grep layout | awk '{print $2}' |
|
|
sed 's/latam/la/'
|