mirror of
https://github.com/tldr-pages/tldr.git
synced 2025-04-29 23:24:55 +02:00
650 B
650 B
xwininfo
창에 대한 정보를 표시. 같이 보기:
xprop
,xkill
. 더 많은 정보: https://www.x.org/releases/current/doc/man/man1/xwininfo.1.xhtml.
- 커서를 표시하여 창을 선택하고 해당 속성(아이디, 이름, 크기, 위치 등) 표시:
xwininfo
- 모든 창의 트리 구조 표시:
xwininfo -tree -root
- 특정 ID를 가진 창의 속성 표시:
xwininfo -id {{아이디}}
- 특정 이름을 가진 창의 속성 표시:
xwininfo -name {{이름}}
- 이름으로 검색하여 창의 ID 표시:
xwininfo -tree -root | grep {{키워드}} | head -1 | perl -ne 'print $1 if /(0x[\da-f]+)/ig;'