Dotfiles/home/herbstluftwm/.config/herbstluftwm/changelang

10 lines
193 B
Plaintext
Raw Normal View History

2022-08-04 16:27:25 +00:00
#! /bin/sh
2022-10-12 15:48:27 +00:00
if [ -f /tmp/nospanish ]; then
2022-08-04 16:27:25 +00:00
setxkbmap us,ru && xkb-switch -n
2022-12-17 18:54:25 +00:00
else if [ -f /tmp/noenglish ]; then
setxkbmap ru,es && xkb-switch -n
else
setxkbmap us,ru,es && xkb-switch -n
fi
2022-10-12 15:48:27 +00:00
fi