diff options
author | B. Watson <yalhcru@gmail.com> | 2010-05-12 23:27:43 +0200 |
---|---|---|
committer | David Somero <xgizzmo@slackbuilds.org> | 2010-05-12 23:27:43 +0200 |
commit | d9486fe88906567a3dc46f4011997d5202cd91aa (patch) | |
tree | 4badb93b233900e532969c0575187796a4142b9d /accessibility/xdotool/README | |
parent | a63b77bad6f21fda8c2e2b7613fdc959ac15d196 (diff) | |
download | slackbuilds-d9486fe88906567a3dc46f4011997d5202cd91aa.tar.gz |
accessibility/xdotool: Added to 12.2 repository
Diffstat (limited to 'accessibility/xdotool/README')
-rw-r--r-- | accessibility/xdotool/README | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/accessibility/xdotool/README b/accessibility/xdotool/README new file mode 100644 index 0000000000..a587318f84 --- /dev/null +++ b/accessibility/xdotool/README @@ -0,0 +1,11 @@ +xdotool - fake keyboard/mouse input + +This tool lets you programatically (or manually) simulate keyboard input +and mouse activity, move and resize windows, etc. It does this using +X11's XTEST extension and other Xlib functions. + +Example: focus the firefox url bar + +WID=`xdotool search "Mozilla Firefox" | head -1` +xdotool windowfocus $WID +xdotool key ctrl+l |