This commit is contained in:
= 2021-01-01 00:31:01 +00:00
parent 4aa2a6166d
commit 459b7dd049
2 changed files with 12 additions and 0 deletions

View File

@ -10,6 +10,10 @@
#super + @space #super + @space
# dmenu_run # dmenu_run
# toggle keyboard layout
super + BackSpace
~/.config/sxhkd/toggle-gb-ru-kb.sh
# mouse scroll down # mouse scroll down
super + Down super + Down
xte 'mouseclick 5' xte 'mouseclick 5'

8
toggle-gb-ru-kb.sh Executable file
View File

@ -0,0 +1,8 @@
#!/bin/sh
LAYOUT=$(setxkbmap -query | grep layout | grep -oP "gb|ru")
if [ $LAYOUT = 'gb' ] ; then
setxkbmap ru
else
setxkbmap gb
fi