mirror of
https://github.com/tldr-pages/tldr.git
synced 2025-04-22 06:22:07 +02:00
xdotool: added more examples (#1650)
This commit is contained in:
parent
f3c002d32f
commit
d6e9cf0092
1 changed files with 16 additions and 0 deletions
|
@ -9,3 +9,19 @@
|
|||
- Click the right mouse button:
|
||||
|
||||
`xdotool click {{3}}`
|
||||
|
||||
- Get the id of the currently active window:
|
||||
|
||||
`xdotool getactivewindow`
|
||||
|
||||
- Focus on the window with id of 12345:
|
||||
|
||||
`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_Enter}}`
|
||||
|
|
Loading…
Add table
Reference in a new issue