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

View File

@@ -0,0 +1,25 @@
# xwininfo
> 显示关于窗口的信息。
> 另请参见:`xprop``xkill`。
> 更多信息:<https://www.x.org/releases/current/doc/man/man1/xwininfo.1.xhtml>。
- 显示光标以选择一个窗口并显示其属性ID、名称、大小、位置等
`xwininfo`
- 显示所有窗口的树形结构:
`xwininfo -tree -root`
- 显示具有特定ID的窗口的属性
`xwininfo -id {{id}}`
- 显示具有特定名称的窗口的属性:
`xwininfo -name {{name}}`
- 通过名称搜索并显示窗口的ID
`xwininfo -tree -root | grep {{keyword}} | head -1 | perl -ne 'print $1 if /(0x[\da-f]+)/ig;'`