add new chinese translations

This commit is contained in:
2024-12-30 15:25:56 +08:00
parent a850046d7b
commit 0d798759fd
5418 changed files with 105800 additions and 7052 deletions

20
pages.zh/linux/xmodmap.md Normal file
View File

@@ -0,0 +1,20 @@
# xmodmap
> 用于修改 X 中的键盘映射和指针按钮映射的工具。
> 更多信息:<https://manned.org/xmodmap>。
- 交换指针的左键单击和右键单击:
`xmodmap -e 'pointer = 3 2 1'`
- 将键盘上的一个键重新分配到另一个键:
`xmodmap -e 'keycode {{keycode}} = {{keyname}}'`
- 禁用键盘上的一个键:
`xmodmap -e 'keycode {{keycode}} ='`
- 执行指定文件中的所有 xmodmap 表达式:
`xmodmap {{path/to/file}}`