mirror of
https://github.com/tldr-pages/tldr.git
synced 2024-11-12 04:54:52 +03:00
8ebd171d6f
Co-authored-by: marchersimon <50295997+marchersimon@users.noreply.github.com> Co-authored-by: Seth Falco <seth@falco.fun> Co-authored-by: Patrice Denis <patricedenis@users.noreply.github.com>
28 lines
530 B
Markdown
28 lines
530 B
Markdown
# xdotool
|
|
|
|
> Command-line automation for X11.
|
|
|
|
- Retrieve the X-Windows window ID of the running Firefox window(s):
|
|
|
|
`xdotool search --onlyvisible --name {{firefox}}`
|
|
|
|
- Click the right mouse button:
|
|
|
|
`xdotool click {{3}}`
|
|
|
|
- Get the id of the currently active window:
|
|
|
|
`xdotool getactivewindow`
|
|
|
|
- Focus on the window with id of 12345:
|
|
|
|
`xdotool windowfocus --sync {{12345}}`
|
|
|
|
- Type a message, with a 500ms delay for each letter:
|
|
|
|
`xdotool type --delay {{500}} "Hello world"`
|
|
|
|
- Press the enter key:
|
|
|
|
`xdotool key {{KP_Enter}}`
|