Compare commits

..

8 Commits

Author SHA1 Message Date
Ferdinand Schober
93f5172daa fix clippy 2025-03-15 00:31:37 +01:00
Ferdinand Schober
f849135c61 cleanup 2025-03-15 00:24:11 +01:00
Ferdinand Schober
77cddacc4a remove port change notification 2025-03-15 00:24:11 +01:00
Ferdinand Schober
7ccf9188fe cleanup 2025-03-15 00:24:11 +01:00
Ferdinand Schober
6f8d7e3c1d fix hostname / port binding 2025-03-15 00:24:11 +01:00
Ferdinand Schober
7e9ad6f1a2 improve 2025-03-15 00:24:11 +01:00
Ferdinand Schober
f6c526b596 properly synchronize frontend 2025-03-15 00:24:11 +01:00
Ferdinand Schober
639e86d95e remove changed signal 2025-03-15 00:24:11 +01:00

View File

@@ -144,11 +144,10 @@ rust toolchain.
Additionally, available backends and frontends can be configured manually via
[cargo features](https://doc.rust-lang.org/cargo/reference/features.html).
E.g. if only support for sway is needed, the following command produces
an executable with support for only the `layer-shell` capture backend
and `wlroots` emulation backend:
E.g. if only wayland support is needed, the following command produces
an executable with just support for wayland:
```sh
cargo build --no-default-features --features layer_shell_capture,wlroots_emulation
cargo build --no-default-features --features wayland
```
For a detailed list of available features, checkout the [Cargo.toml](./Cargo.toml)
</details>