2017-02-20 22:52:56 -05:00
|
|
|
# xdotool
|
|
|
|
|
2025-06-29 11:47:51 +03:00
|
|
|
> Automate X11 actions.
|
2022-03-22 03:07:48 +10:00
|
|
|
> More information: <https://manned.org/xdotool>.
|
2017-02-20 22:52:56 -05:00
|
|
|
|
|
|
|
- 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}}`
|
2017-02-20 22:52:56 -05:00
|
|
|
|
2025-03-09 14:03:08 +02:00
|
|
|
- Perform a mouse `<RightClick>`:
|
2017-02-20 22:52:56 -05:00
|
|
|
|
|
|
|
`xdotool click {{3}}`
|
2017-11-26 11:47:45 +02:00
|
|
|
|
2021-08-15 19:59:09 +02:00
|
|
|
- Get the ID of the currently active window:
|
2017-11-26 11:47:45 +02:00
|
|
|
|
|
|
|
`xdotool getactivewindow`
|
|
|
|
|
2021-08-15 19:59:09 +02:00
|
|
|
- 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"`
|
|
|
|
|
2025-03-09 14:03:08 +02:00
|
|
|
- Press the `<Enter>` key:
|
2017-11-26 11:47:45 +02:00
|
|
|
|
|
|
|
`xdotool key {{KP_Enter}}`
|