自定义键盘布局
一、在linux下,习惯用vim的用户,注意了!原来系统本身就可以自定义按键布局,特别是Caps Lock 与ctrl!实在是太方便了!
1.ubuntu下:
a.选择“系统”--> “首选项”--> “键盘”
b.在“键盘首选项”对话框中选择“布局”标签,在这个标签页中点击“选项”按钮。
c.在“键盘布局选项”对话框中点击“Ctrl key position”的小三角,并在其中的下拉列表框中选择“Swap Ctrl and CapsLock”。然后关闭即可。
2.arch下:
修改配置文件: /etc/X11/xorg.conf.d/01-keyboard-layout.conf (键盘布局文件,也可能为 /etc/X11/xorg.conf)
Section "InputClass" Identifier "keyboard-layout" Driver "evdev" MatchIsKeyboard "yes" Option "XkbLayout" "us, ru, ca, fr" Option "XkbOptions" "ctrl:swapcaps" #添加这一行即可 EndSection
二、在windows下,可以修改注册表
可以下个KeyTweak ,图形化更改映射,或者按键精灵什么的。如果不想下载,可以直接在注册表中修改,一劳永逸,全局生效~~
方法:
1.打开regedit:
2.找到 HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Keyboard Layout
3.加‘Scancode Map’二进制项,内容为(更多键位扫描码参见 http://christina.kuo.blog.163.com/blog/static/1242669022011102311523706/)
0000 00 00 00 00 00 00 00 00 0008 03 00 00 00 1D 00 3A 00 0010 3A 00 1D 00 00 00 00 00
注销或者重启一下就能看到效果了……
Stay hungry
Stay foolish