https://github.com/Smithay/client-toolkit
Smithay's toolkit for writing wayland clients
https://github.com/Smithay/client-toolkit
Last synced: 6 months ago
JSON representation
Smithay's toolkit for writing wayland clients
- Host: GitHub
- URL: https://github.com/Smithay/client-toolkit
- Owner: Smithay
- License: mit
- Created: 2018-04-12T09:00:37.000Z (about 7 years ago)
- Default Branch: master
- Last Pushed: 2024-10-16T20:19:38.000Z (7 months ago)
- Last Synced: 2024-11-14T08:02:13.637Z (6 months ago)
- Language: Rust
- Size: 27.3 MB
- Stars: 285
- Watchers: 13
- Forks: 80
- Open Issues: 55
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- Contributing: CONTRIBUTING.md
- License: LICENSE.txt
Awesome Lists containing this project
README
[](https://crates.io/crates/smithay-client-toolkit)
[](https://docs.rs/smithay-client-toolkit)
[](https://github.com/Smithay/client-toolkit/actions?query=workflow%3A%22Continuous+Integration%22)# Smithay's Client Toolkit
This crate is a toolkit for writing wayland clients in rust, on top of [wayland-client](https://crates.io/crates/wayland-client).
Currently a work in progress, it currently provides the following utilities:
- Automatic binding of general wayland globals (`wl_compositor`, `wl_shm`, etc..)
- Abstraction to create windows (aka toplevel surfaces), abstracting the interaction
with the shell (`xdg_shell` or `wl_shell`) and the drawing of decorations
- Wrapper for `wl_keyboard` for automatic keymap interpretation using `libxkbcommon.so`.
- Utilites for creating dpi aware surfaces.## Documentation
The documentation for the master branch is [available online](https://smithay.github.io/client-toolkit/).
The documentation for the releases can be found on [docs.rs](https://docs.rs/smithay-client-toolkit).
## Requirements
Requires at least rust 1.65 to be used and version 1.15 of the wayland system libraries if
using the system backend.