Difference between revisions of "Xdotool"

From Free Knowledge Base- The DUCK Project: information for everyone
Jump to: navigation, search
(Created page with "Lowercase: xdotool apt install xdotool export DISPLAY=:0.0 xdotool key A")
 
m
 
(2 intermediate revisions by one user not shown)
Line 5: Line 5:
 
  export DISPLAY=:0.0
 
  export DISPLAY=:0.0
 
  xdotool key A
 
  xdotool key A
 +
 +
If you use the "key" it sends a single key stroke, if you use "type" it sends multiple
 +
xdotool type Some words.
 +
 +
Refresh Google Chrome web browser on a remote computer via this command in ssh shell
 +
xdotool search --class Chrome windowactivate --sync %1 key F5 windowactivate $(xdotool getactivewindow)
 +
 +
You can easily discover the key name by using
 +
xev

Latest revision as of 00:42, 20 January 2020

Lowercase: xdotool

apt install xdotool
export DISPLAY=:0.0
xdotool key A

If you use the "key" it sends a single key stroke, if you use "type" it sends multiple

xdotool type Some words.

Refresh Google Chrome web browser on a remote computer via this command in ssh shell

xdotool search --class Chrome windowactivate --sync %1 key F5 windowactivate $(xdotool getactivewindow)

You can easily discover the key name by using

xev