1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-07-03 15:55:26 +02:00
tldr/pages/linux/xdotool.md

29 lines
575 B
Markdown
Raw Normal View History

# xdotool
> Automate X11 actions.
> More information: <https://manned.org/xdotool>.
- Retrieve the X-Windows window ID of the running Firefox window(s):
2017-04-14 23:08:36 +01:00
`xdotool search --onlyvisible --name {{firefox}}`
- Perform a mouse `<RightClick>`:
`xdotool click {{3}}`
2017-11-26 11:47:45 +02:00
- Get the ID of the currently active window:
2017-11-26 11:47:45 +02:00
`xdotool getactivewindow`
- Focus on the window with ID of 12345:
2017-11-26 11:47:45 +02:00
`xdotool windowfocus --sync {{12345}}`
- Type a message, with a 500ms delay for each letter:
`xdotool type --delay {{500}} "Hello world"`
- Press the `<Enter>` key:
2017-11-26 11:47:45 +02:00
`xdotool key {{KP_Enter}}`