{"id":48590620,"url":"https://github.com/thecodeversehub/codeverse-compositor","last_synced_at":"2026-04-08T19:03:25.972Z","repository":{"id":335527935,"uuid":"1145956662","full_name":"TheCodeVerseHub/Codeverse-compositor","owner":"TheCodeVerseHub","description":null,"archived":false,"fork":false,"pushed_at":"2026-04-05T08:02:43.000Z","size":6688,"stargazers_count":3,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2026-04-05T10:07:14.539Z","etag":null,"topics":["compositor","contribution","contributions-welcome","linux","linux-kernel","opensource","oss","projects","rust"],"latest_commit_sha":null,"homepage":"","language":"Rust","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/TheCodeVerseHub.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":"CONTRIBUTING.md","funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":".github/CODEOWNERS","security":"SECURITY.md","support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2026-01-30T12:40:50.000Z","updated_at":"2026-04-05T08:02:46.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/TheCodeVerseHub/Codeverse-compositor","commit_stats":null,"previous_names":["sinistermage/codeverse-compositor","thecodeversehub/codeverse-compositor"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/TheCodeVerseHub/Codeverse-compositor","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/TheCodeVerseHub%2FCodeverse-compositor","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/TheCodeVerseHub%2FCodeverse-compositor/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/TheCodeVerseHub%2FCodeverse-compositor/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/TheCodeVerseHub%2FCodeverse-compositor/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/TheCodeVerseHub","download_url":"https://codeload.github.com/TheCodeVerseHub/Codeverse-compositor/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/TheCodeVerseHub%2FCodeverse-compositor/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":31569401,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-08T14:31:17.711Z","status":"ssl_error","status_checked_at":"2026-04-08T14:31:17.202Z","response_time":54,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.5:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["compositor","contribution","contributions-welcome","linux","linux-kernel","opensource","oss","projects","rust"],"created_at":"2026-04-08T19:03:10.328Z","updated_at":"2026-04-08T19:03:25.962Z","avatar_url":"https://github.com/TheCodeVerseHub.png","language":"Rust","funding_links":[],"categories":[],"sub_categories":[],"readme":"# CodeVerse Compositor\n\nA work-in-progress Wayland compositor written in Rust, built on top of [Smithay](https://github.com/Smithay/smithay).\n\nThis repository is a Rust workspace containing the compositor plus supporting crates (configuration, IPC, window/layout logic, and launcher).\n\n## Workspace crates\n\n- `crates/codeverse-compositor`: The compositor binary (`codeverse-compositor`)\n- `crates/codeverse-window`: Window management, layouts, and workspace tree\n- `crates/codeverse-config`: TOML configuration + keybindings + theme\n- `crates/codeverse-ipc`: IPC types/helpers\n- `crates/codeverse-launcher`: App discovery / `.desktop` parsing\n\n## Requirements\n\n- Linux\n- Rust toolchain (edition 2021)\n- System libraries required by Smithay/DRM/input stacks (exact package names vary by distro). Commonly needed:\n  - `libxkbcommon`\n  - `libinput`\n  - `libseat`\n  - `libdrm` + GBM/Mesa/EGL\n  - `pkg-config` (often required to locate system libs)\n\nIf you hit build errors about missing `-dev`/`-devel` packages, install the corresponding development headers for your distro.\n\n## Build\n\n- Debug build:\n  - `cargo build`\n- Release build:\n  - `cargo build --release`\n\nTo build just the compositor crate:\n- `cargo build -p codeverse-compositor`\n\n## Run\n\nThe binary auto-selects a backend:\n- **Winit backend (nested)** when `DISPLAY` or `WAYLAND_DISPLAY` is set (i.e. launched inside an existing X11/Wayland session)\n- **DRM backend (TTY / “real” session)** otherwise\n\nRun from an existing desktop session (nested):\n- `RUST_LOG=info cargo run -p codeverse-compositor`\n\nRun on a clean TTY (DRM):\n- `RUST_LOG=info cargo run -p codeverse-compositor --release`\n\nNotes:\n- DRM/TTY mode typically requires correct device permissions (e.g. `video`/`input` groups) and a seat/session setup.\n- If you’re unsure, start with nested mode first.\n\n## Configuration\n\n- Default config path:\n  - `~/.config/codeverse-compositor/config.toml`\n- Example config shipped in this repo:\n  - `config/default.toml`\n\nTo start customizing:\n- `mkdir -p ~/.config/codeverse-compositor`\n- `cp config/default.toml ~/.config/codeverse-compositor/config.toml`\n\n## Testing in a VM (QEMU)\n\nThere is a helper script that boots a Linux live ISO and copies the compositor binary into a shared folder:\n- `./scripts/qemu-test.sh`\n\nThere is also a convenience deploy script for a running VM:\n- `./scripts/deploy-to-vm.sh`\n\n## Development\n\nUseful commands:\n- Format: `cargo fmt --all`\n- Lint: `cargo clippy --workspace --all-targets -- -D warnings`\n- Tests: `cargo test --workspace`\n\n## Contributing\n\nSee [CONTRIBUTING.md](CONTRIBUTING.md).\n\n## Security\n\nSee [SECURITY.md](SECURITY.md) for reporting vulnerabilities.\n\n## License\n\nMIT licensed. See [LICENSE](LICENSE).\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fthecodeversehub%2Fcodeverse-compositor","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fthecodeversehub%2Fcodeverse-compositor","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fthecodeversehub%2Fcodeverse-compositor/lists"}