2025-03-14 21:59:59 -06:00
|
|
|
# xdotool
|
|
|
|
|
|
2025-07-24 22:27:13 -06:00
|
|
|
> Automate X11 actions.
|
2025-03-14 21:59:59 -06:00
|
|
|
> More information: <https://manned.org/xdotool>.
|
|
|
|
|
|
|
|
|
|
- Retrieve the X-Windows window ID of the running Firefox window(s):
|
|
|
|
|
|
2026-02-18 06:55:01 -07:00
|
|
|
`xdotool search --onlyvisible --name firefox`
|
2025-03-14 21:59:59 -06:00
|
|
|
|
2025-03-19 19:23:44 -06:00
|
|
|
- Perform a mouse `<RightClick>`:
|
2025-03-14 21:59:59 -06:00
|
|
|
|
2026-02-18 06:55:01 -07:00
|
|
|
`xdotool click 3`
|
2025-03-14 21:59:59 -06:00
|
|
|
|
|
|
|
|
- Get the ID of the currently active window:
|
|
|
|
|
|
|
|
|
|
`xdotool getactivewindow`
|
|
|
|
|
|
2026-02-18 06:55:01 -07:00
|
|
|
- Focus on the window with a specific ID:
|
2025-03-14 21:59:59 -06:00
|
|
|
|
|
|
|
|
`xdotool windowfocus --sync {{12345}}`
|
|
|
|
|
|
|
|
|
|
- Type a message, with a 500ms delay for each letter:
|
|
|
|
|
|
2026-02-18 06:55:01 -07:00
|
|
|
`xdotool type --delay 500 "{{Hello world}}"`
|
2025-03-14 21:59:59 -06:00
|
|
|
|
2025-03-19 19:23:44 -06:00
|
|
|
- Press the `<Enter>` key:
|
2025-03-14 21:59:59 -06:00
|
|
|
|
2026-02-18 06:55:01 -07:00
|
|
|
`xdotool key KP_Enter`
|