1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36
|
xdo: Fake input from the mouse and keyboard very easily
### See the website for more up-to-date documentation
# http://www.semicomplete.com/projects/xdotool/
#
# Also see the manpage, which you can generate by running:
# make xdotool.1
Compile: make xdotool
Run: ./xdotool <cmd> <args>
Use: The following commands are available:
key "key1" ["key2" ... "keyN"]
+ Example: ./xdotool key "ctrl+l" "BackSpace"
mousemove xcoord ycoord
+ Example: ./xdotool mousemove 500 1000
mouseup <button>
mousedown <button>
click <button>
+ Example: ./xdotool click 1 (click left button)
type "string to type"
+ Example: ./xdotool type "hello there"
windowmove <windowid> <x> <y>
windowsize <windowid> <width> <height>
windowfocus <windowid>
+ This will call XSetInputFocus. It will only work if the
window is currently on the screen (ie; not on another desktop or
minimized)
search <regexp>
+ This outputs a list of window ids matching the given regexp.
Matches test: window title, window name, window class
See 'xwininfo' output for what each of these are/mean.
$Id: README 1892 2008-06-03 09:04:59Z jordansissel $
|