summaryrefslogtreecommitdiffstats
path: root/sxhkd/.local/bin
diff options
context:
space:
mode:
Diffstat (limited to 'sxhkd/.local/bin')
-rwxr-xr-xsxhkd/.local/bin/toggle-layout9
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