Xdotool工具 --09 March 2015
什么是Xdotool
Xdotool lets you simulate keyboard input and mouse activity, move and resize windows, etc. It does this using X11’s XTEST extension and other Xlib functions.
Additionally, you can search for windows and move, resize, hide, and modify window properties like the title. If your window manager supports it, you can use xdotool to switch desktops, move windows between desktops, and change the number of desktops.
For more information, please click Xdotool Website
Xdotool安装方法
- ubuntu系统下可以直接的使用
sudo apt-get install xdotool
安装. - 除了第一种情况外可以使用直接下载xdotool源码包,再编译安装.
- 编译安装过程中会遇到缺少头文件或者依赖库,主要需要安装的有:
- libxkbcommon: 下载地址
- libXtst: 可以直接在源中apt-get安装(ferdora使用yum install)
- 编译安装方法
- make
- export PREFIX=/usr(设置安装目录,默认在/usr/local)
- make install
- 编译安装过程中会遇到缺少头文件或者依赖库,主要需要安装的有:
Xdotool的使用
鼠标操作
xdotool支持很多鼠标操作,包括鼠标的移动,左击,右击,滚轮等
- 鼠标移动到x,y处: xdotool mousemove x y
- 鼠标点击右键: xdotool click 3
- 鼠标向上翻滚: xdotool click 4
- 获取鼠标位置: xdotool getmouselocation
- …
键盘操作
xdotool支持很多键盘操作,常用的使用如下:
- 按下p键: xdotool key p
- 按下ctrl+shift+t键: xdotool key ctrl+shift+t
- 按下p键持续1000ms: xdotool key –delay 1000 p
- …
窗口操作
xdotool支持很多窗口操作,包括窗口的移动,最小化等等
- 查询主文件夹窗口id: xdotool search –name “主文件夹”
- 聚焦到id为WID的窗口: xdotool windowfocus WID
- 移动id为WID的窗口左上角到x,y处: xdotool windowmove WID x y
- 改变id为WID的窗口大小为w,h: xdotool windowsize WID w h
- 最小化id为WID的窗口: xdotool windowminimize WID
- …
简单示例
官方参考手册
在有些平台,编译安装xdotool之后,只能使用xdotool –help简单的查看命令,不能使用man xdotool查看手册,这里把上面的内容和官方参考手册一起作成pdf,以供下载使用.
- EOF -
声明:本文采用BY-NC-SA协议进行授权.转载请注明: Xdotool工具
comments powered by Disqus