Files
dotfiles/.bin/kbdswitch
Simonas Narbutas fd56f2ca1c kbd notif in awesome
2018-07-30 14:57:54 +02:00

11 lines
240 B
Bash
Executable File

#!/bin/sh
LANG1="us"
LANG2="lt"
CURRENT_LANG=$(setxkbmap -query | grep layout |awk -F" " '{print $2}')
if [ "$CURRENT_LANG" = $LANG1 ]; then
setxkbmap $LANG2 && echo $LANG2
else
setxkbmap $LANG1 && echo $LANG1
fi
xmodmap ~/.Xmodmap