snippetbashTip
xdotool — Automate X11 actions. More information: <https://manned.org/xdotool>.
Viewed 0 times
actionscommandxdotoolautomatecliinformationmorex11
linux
Problem
How to use the
xdotool command: Automate X11 actions. More information: <https://manned.org/xdotool>.Solution
xdotool — Automate X11 actions. More information: <https://manned.org/xdotool>.Retrieve the X-Windows window ID of the running Firefox window(s):
xdotool search --onlyvisible --name firefoxPerform a mouse
<RightClick>:xdotool click 3Get the ID of the currently active window:
xdotool getactivewindowFocus 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
<Enter> key:xdotool key KP_EnterCode Snippets
Retrieve the X-Windows window ID of the running Firefox window(s)
xdotool search --onlyvisible --name firefoxPerform a mouse `<RightClick>`
xdotool click 3Get the ID of the currently active window
xdotool getactivewindowFocus 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}}"Context
tldr-pages: linux/xdotool
Revisions (0)
No revisions yet.