浏览代码

~/.bin/xkbswap: Swap around the current keymap (de, us).

I never use it myself, it's bound to `Mod4+l`.
Lucas Stadler 13 年之前
父节点
当前提交
558caa48b0
共有 1 个文件被更改,包括 11 次插入0 次删除
  1. 11 0
      .bin/xkbswap

+ 11 - 0
.bin/xkbswap

@ -0,0 +1,11 @@
1
#!/bin/sh
2
3
# Swap the current keyboard layout (from de to us and back again).
4
5
if setxkbmap -query | grep us &> /dev/null; then
6
	lang=de
7
else
8
	lang=us
9
fi
10
11
setxkbmap $lang