diff options
Diffstat (limited to 'sxhkd/.local')
-rwxr-xr-x | sxhkd/.local/bin/toggle-layout | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/sxhkd/.local/bin/toggle-layout b/sxhkd/.local/bin/toggle-layout new file mode 100755 index 0000000..fcae134 --- /dev/null +++ b/sxhkd/.local/bin/toggle-layout @@ -0,0 +1,9 @@ +#!/bin/bash + +lang="$(setxkbmap -print | grep xkb_symbols | cut -d'+' -f 2)" + +if [ "$lang" = "us" ]; then + setxkbmap ir +else + setxkbmap us +fi
\ No newline at end of file |