dotfiles/home/Scripts/switchlayout.sh

9 lines
157 B
Bash
Raw Normal View History

#!/bin/bash
curLayout=$(setxkbmap -query | grep layout | sed 's/layout: //g')
if [ $curLayout == "eu" ]; then
setxkbmap dvorak
else
setxkbmap eu
fi