{"id":13539422,"url":"https://github.com/StrataWM/strata","last_synced_at":"2025-04-02T06:30:53.878Z","repository":{"id":168690867,"uuid":"644471816","full_name":"StrataWM/strata","owner":"StrataWM","description":"A cutting-edge, robust and sleek Wayland compositor with batteries included.","archived":false,"fork":false,"pushed_at":"2024-03-16T16:59:33.000Z","size":601,"stargazers_count":172,"open_issues_count":8,"forks_count":7,"subscribers_count":14,"default_branch":"main","last_synced_at":"2024-11-03T04:32:34.460Z","etag":null,"topics":["cargo","linux","rust","rust-wayland","smithay","tty","wayland","wayland-compositor","window-manager","windowmanager","x11"],"latest_commit_sha":null,"homepage":"https://stratawm.github.io","language":"Rust","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"gpl-3.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/StrataWM.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":"CONTRIBUTING.md","funding":null,"license":"LICENSE","code_of_conduct":"CODE_OF_CONDUCT.md","threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":"SECURITY.md","support":null,"governance":null,"roadmap":"ROADMAP.md","authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2023-05-23T15:27:47.000Z","updated_at":"2024-10-20T12:38:08.000Z","dependencies_parsed_at":"2023-07-13T18:27:24.779Z","dependency_job_id":"33d8caee-38be-43f8-ac0f-2e61f41a9b9a","html_url":"https://github.com/StrataWM/strata","commit_stats":null,"previous_names":["stratawm/strata","stratawm/stratawm"],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/StrataWM%2Fstrata","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/StrataWM%2Fstrata/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/StrataWM%2Fstrata/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/StrataWM%2Fstrata/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/StrataWM","download_url":"https://codeload.github.com/StrataWM/strata/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":246767690,"owners_count":20830532,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","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":["cargo","linux","rust","rust-wayland","smithay","tty","wayland","wayland-compositor","window-manager","windowmanager","x11"],"created_at":"2024-08-01T09:01:25.647Z","updated_at":"2025-04-02T06:30:53.327Z","avatar_url":"https://github.com/StrataWM.png","language":"Rust","readme":"\u003cp align=center\u003e\n    \u003cimg src=\"https://github.com/StrataWM/.github/blob/main/assets/profile_banner.png\" /\u003e\n\u003c/p\u003e\n\n\u003cp align=\"center\"\u003e\n    \u003cimg src=\"https://img.shields.io/github/languages/top/stratawm/stratawm?style=for-the-badge\"/\u003e\n    \u003cimg src=\"https://img.shields.io/github/commit-activity/m/stratawm/stratawm?style=for-the-badge\"/\u003e\n    \u003cimg src=\"https://img.shields.io/github/stars/stratawm/stratawm?style=for-the-badge\"/\u003e\n    \u003cimg src=\"https://img.shields.io/github/watchers/stratawm/stratawm.svg?style=for-the-badge\"/\u003e\n    \u003cimg src=\"https://img.shields.io/github/license/stratawm/stratawm?style=for-the-badge\"/\u003e\n\u003c/p\u003e\n\n## What's Strata?\n\nStrata is a cutting-edge, robust and sleek Wayland compositor written in [Rust](https://rust-lang.org) using the [Smithay](https://github.com/smithay/smithay) library. It is designed to be minimal and flexible yet customizable. Strata is configured in [Lua](https://www.lua.org/), a lightweight, high-level, multi-paradigm programming language. Lua allows you to customize Strata to a level which may be difficult to do in other config formats such as TOML or YAML.\n\n\n# Getting Started\n\n## 1. Dependencies\n\nTo compile and use Strata, you need some dependencies that have to be installed using a package manager, such as `pacman` or `apt`, depending on your distro. The required dependencies are listed below:\n\n* `udev`\n* `wayland` \n* `wayland-protocols` \n* `libinput` \n* `libxkbcommon` \n* `libglvnd` \n* `seatd` \n* `dbus-glib `\n* `mesa`\n* `make` (for compiling and linking)\n\nIf you're on Arch or any Arch-based distro (such as Artix, Garuda, Manjaro, etc.), you can install these using the following command:\n\n```sh\nsudo pacman -S udev wayland wayland-protocols libinput libxkbcommon libglvnd seatd dbus-glib mesa make\n```\n\nIf you're on Debian, or Debian-based distros such as Ubuntu, Mate, Zorin, etc... you can install these using this command:\n\n```sh\nsudo apt-get install libudev-dev libgbm-dev libxkbcommon-dev libegl1-mesa-dev libwayland-dev libinput-dev libdbus-1-dev libsystemd-dev libseat-dev make\n```\n\n## 2. Installing Rust\n\nTo compile Strata, you have to install Rust:\n\n### All Linux distros\n\n```sh\ncurl https://sh.rustup.rs -sSf | sh\n```\n\n### Arch Linux\n\n```sh\nsudo pacman -S rust\n```\n\n\n## 3. Compiling\n ### 3.1 Clone the repository\n ```sh\n git clone https://github.com/stratawm/stratawm\n ```\n\n ### 3.2 Compile and Install\n To install, `cd` into the cloned repo and then run:\n ```sh\nsudo make install\n```\nThis will compile Strata and also copy the necessary libraries. It will also copy a default config for you to get started with. This might take a bit of time since it has to compile the source code and all the dependencies but if your system is a bit better than a potato, it won't take much time.\n\n## Executing\nTo start Strata, you can run this command from a terminal\n\n```sh\nstratawm --backend winit\n```\n\nThis will start Strata using the `winit` backend. For this to work, another X11 window manager or another Wayland should be running. Support for launching from the TTY will be added shortly.\n\n\n# License\n\nStrataWM and all its subsidiaries are licensed under the GNU GPL v3 License. See [LICENSE](https://github.com/stratawm/stratawm/tree/main/LICENSE) for details.\n\n# Contributing\n\nRefer to [CONTRIBUTING.md](https://github.com/stratawm/stratawm/tree/main/CONTRIBUTING.md)\n","funding_links":[],"categories":["Rust"],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2FStrataWM%2Fstrata","html_url":"https://awesome.ecosyste.ms/projects/github.com%2FStrataWM%2Fstrata","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2FStrataWM%2Fstrata/lists"}