Generic Linux command-line automation tool (no X!)
It's simple: Pay for it or fork it.
Thanks for all the people that are supporting this project!
All backers and sponsors are listed here
Recently we've read the story of faker.js and the poor developer behind it. And independent software developers in China, like us, have 10 times more life pressure than the author of faker.js. Since ydotool has the opportunity to benefit large IT companies (these large IT companies are the main cause of life pressure here, such as the "996" working hours), we need to stop this from the beginning. ydotool only has 1% stars of faker.js has, so it's not too late ;)
This project will not receive any updates from us unless there are supports.
If you are uncomfortable with the new refactored version, you can simply git checkout
an older version.
- Donate on Patreon
- Buy our products on our Tindie Store, if they are meaningful to you (please leave a message:
ydotool user
, so we can know that this purchase is for supporting ydotool)
Currently implemented command(s):
type
- Type a stringsleep
- Sleep some timekey
- Press keysmousemove
- Move mouse pointer to absolute positionclick
- Click on mouse buttonsrecorder
- Record/replay input events
Now it's possible to chain multiple commands together, separated by a comma between two spaces.
Switch to tty1, wait 2 seconds, and type some words:
ydotool key ctrl+alt+f1 , sleep 2000 , type 'Hey guys. This is Austin.'
Close a window in graphical environment:
ydotool key Alt+F4
Relatively move mouse pointer to -100,100:
ydotool mousemove -100 100
Warning: implicit mousemove call does not work with negative values, so until https://github.com/ReimuNotMoe/ydotool/issues/119 is fixed, use explicit method:
ydotool mousemove -x -100 -y 100
Move mouse pointer to 100,100:
ydotool mousemove --absolute 100 100
Mouse right click:
ydotool click right
Mouse click queue:
ydotool click left right left
Mouse repeating left click:
ydotool click --repeat 5 --next-delay 25 left
This program requires access to /dev/uinput
. This usually requires root permissions.
You can use it on anything as long as it accepts keyboard/mouse/whatever input. For example, wayland, text console, etc.
See /usr/include/linux/input-event-codes.h
ydotool works differently from xdotool. xdotool sends X events directly to X server, while ydotool uses the uinput framework of Linux kernel to emulate an input device.
When ydotool runs and creates a virtual input device, it will take some time for your graphical environment (X11/Wayland) to recognize and enable the virtual input device. (Usually done by udev)
So, if the delay was too short, the virtual input device may not got recognized & enabled by your graphical environment in time.
In order to solve this problem, I made a persistent background service, ydotoold, to hold a persistent virtual device, and accept input from ydotool. When ydotoold is unavailable, ydotool will try to work without it.
CMake 3.14+ is required.
All dependencies will be configured by CPM automatically to save you from building & installing them manually. So an Internet connection is required.
The libraries, libevdevPlus
and libuInputPlus
, are too small and too troublesome to be complied as shared libraries. So now they are statically linked. As a result, the compiled binaries will only depend on libc
and libstdc++
.
CMake will no longer build the packages or install compiled files to system directories. Because it's complicated to build packages for every distro correctly using CPack, and every distribution has its own customs of filesystem hierarchy. I suggest you to copy compiled files to desired destination manually.
mkdir build
cd build
cmake ..
make -j `nproc`
Currently, ydotool does not recognize if the user is using a custom keyboard layout. In order to comfortably use ydotool alongside a custom keyboard layout, the user could use one of the following fixes/workarounds:
In sway, the process is fairly easy. Following the instructions there, you would end up with something like:
input "16700:8197:DELL_DELL_USB_Keyboard" {
xkb_layout "us,us"
xkb_variant "dvorak,"
xkb_options "grp:shifts_toggle, caps:swapescape"
}
The identifier for your keyboard can be obtained from the output of swaymsg -t get_inputs
.
As mentioned here, consider using a hardware-based configuration that supports using a custom layout without configuring it in software.