xdotool 0.0.2

A wrapper for the command line tool xdotool written in Rust
Documentation
  • Coverage
  • 26.86%
    47 out of 175 items documented15 out of 63 items with examples
  • Size
  • Source code size: 80.13 kB This is the summed size of all the files inside the crates.io package for this release.
  • Documentation size: 7.75 MB This is the summed size of all files generated by rustdoc for all configured targets
  • Ø build duration
  • this release: 9s Average build duration of successful builds.
  • all releases: 9s Average build duration of successful builds in releases after 2024-10-23.
  • Links
  • Treborium/rust-xdotool
    9 1 0
  • crates.io
  • Dependencies
  • Versions
  • Owners
  • Treborium

Rust xdotool

A wrapper for the command line tool xdotool written in Rust

Note

I've tried my best documenting everything as detailed as possible. For even more information please look at the man page of xdotool. If a function does not behave like xdotool would, please submit an issue or even better a pull request :)

Since xdotool is often used in combination with wmctrl you might want to check out my rust wrapper for this tool too!

Dependencies

xdotool needs to be installed:

# Ubuntu
sudo apt-get install xdotool

# Arch Linux
sudo pacman -S xdotool

# Fedora
sudo dnf install xdotool

# You get the idea

Usage

Add xdotool to your dependencies in your Corgo.toml

[dependencies]
xdotool = "0.0.2"

If you want the latest build use the GitHub repository as your uplink:

[dependencies]
xdotool = { git = "https://github.com/Treborium/rust-xdotool" }

Examples

For examples on a certain function please view the documentation.