x0*,x11*,xauth,xbacklight,xclip,xcursor,xdg*,xdotool,xinput,xr*,xsel,xset,xsetwacom: add Korean translation (#14439)

This commit is contained in:
코드싸이
2024-10-29 15:16:48 +09:00
committed by GitHub
parent 03c68430fd
commit 5297ea5b15
21 changed files with 496 additions and 0 deletions

28
pages.ko/linux/xdotool.md Normal file
View File

@@ -0,0 +1,28 @@
# xdotool
> X11을 위한 명령줄 자동화 도구.
> 더 많은 정보: <https://manned.org/xdotool>.
- 실행 중인 Firefox 창의 X-Windows 창 ID 검색:
`xdotool search --onlyvisible --name {{firefox}}`
- 오른쪽 마우스 버튼 클릭:
`xdotool click {{3}}`
- 현재 활성 창의 ID 가져오기:
`xdotool getactivewindow`
- ID가 12345인 창에 포커스 맞추기:
`xdotool windowfocus --sync {{12345}}`
- 각 글자마다 500ms 지연을 두고 메시지 입력:
`xdotool type --delay {{500}} "Hello world"`
- Enter 키 누르기:
`xdotool key {{KP_Enter}}`