Merge branch 'master' of ssh://git.rayelliott.dev:3222/dots/sxhkd

This commit is contained in:
Ray Elliott 2021-02-08 15:44:43 +00:00
commit 4f7255ff0e
2 changed files with 12 additions and 0 deletions

View File

@ -10,6 +10,10 @@
#super + @space
# dmenu_run
# toggle keyboard layout
super + BackSpace
~/.config/sxhkd/toggle-gb-ru-kb.sh
# mouse scroll down
super + Down
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