diff options
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 |