1
0
Fork
You've already forked river
0
forked from river/river
A non-monolithic Wayland compositor
  • Zig 99.7%
  • C 0.3%
2026年02月28日 20:40:05 +01:00
.builds ci: stop running redundant jobs on every git.sr.ht push 2026年02月19日 19:26:16 +01:00
.forgejo/issue_template forgejo: this ain't gitea 2026年02月19日 19:34:29 +01:00
common doc: use the REUSE licensing specification [1] 2026年01月01日 16:41:52 +00:00
contrib doc: use the REUSE licensing specification [1] 2026年01月01日 16:41:52 +00:00
doc doc: link window manager list in man page 2026年01月12日 12:30:55 +01:00
LICENSES doc: use the REUSE licensing specification [1] 2026年01月01日 16:41:52 +00:00
logo doc: use the REUSE licensing specification [1] 2026年01月01日 16:41:52 +00:00
protocol protocol: add libinput-config nested sessions note 2026年02月20日 16:17:30 +01:00
river Xwayland: minor cleanup 2026年02月28日 15:14:18 +01:00
.editorconfig editorconfig: remove dead code 2026年01月01日 17:01:10 +00:00
.gitignore doc: use the REUSE licensing specification [1] 2026年01月01日 16:41:52 +00:00
.mailmap doc: use the REUSE licensing specification [1] 2026年01月01日 16:41:52 +00:00
build.zig build: replace use of deprecated functions 2026年02月28日 20:40:05 +01:00
build.zig.zon river: implement ext-data-control-v1 2026年02月24日 12:19:16 +01:00
CODE_OF_CONDUCT.md doc: fix last missing © symbols 2026年01月01日 16:59:16 +00:00
CONTRIBUTING.md doc: fix last missing © symbols 2026年01月01日 16:59:16 +00:00
PACKAGING.md doc: fix last missing © symbols 2026年01月01日 16:59:16 +00:00
README.md docs: link to nice protocol docs in readme 2026年02月20日 16:54:58 +01:00

Overview

River is a non-monolithic Wayland compositor. Unlike other Wayland compositors, river does not combine the compositor and window manager into one program. Instead, users can choose any window manager implementing the river-window-management-v1 protocol.

There is a list of compatible window managers on our wiki.

If you are looking for the old dynamic tiling version of river, see river-classic.

Features

River defers all window management policy to a separate window manager implementing the river-window-management-v1 protocol. This includes window position/size, pointer/keyboard bindings, focus management, window decorations, desktop shell graphics, and more.

River itself provides frame perfect rendering, good performance, support for many Wayland protocol extensions, robust Xwayland support, the ability to hot-swap window managers, and more.

Motivation

Why split the window manager to a separate process? I aim to:

  • Significantly lower the barrier to entry for writing a Wayland window manager.
  • Allow implementing Wayland window managers in high-level garbage collected languages without impacting compositor performance and latency.
  • Allow hot-swapping between window managers without restarting the compositor and all Wayland programs.
  • Promote diversity and experimentation in window manager design.

Current Status

The first release supporting the river-window-management-v1 protocol will be 0.4.0. The protocol is implemented on river's main branch and is already robust/feature complete enough for me to use as my daily driver.

The river-window-management-v1 protocol and other river protocol extensions are stable. We do not break window managers.

Currently the only documentation for the river-window-management-v1 protocol is the protocol specification itself. While this is all developers comfortable with writing Wayland clients should need, I'd like to add some more beginner-friendly documentation including a well-commented example window manager before the 0.4.0 release.

If everything goes well with the 0.4.0 release, I expect the following non-bugfix release to be river 1.0.0. After river 1.0.0, all backwards incompatible changes will be strictly avoided.

Building

Note: If you are packaging river for distribution, see PACKAGING.md.

To compile river first ensure that you have the following dependencies installed. The "development" versions are required if applicable to your distribution.

  • zig 0.15
  • wayland
  • wayland-protocols
  • wlroots 0.19
  • xkbcommon 1.12 or newer
  • libevdev
  • pixman
  • pkg-config
  • scdoc (optional, but required for man page generation)

Then run, for example:

zig build -Doptimize=ReleaseSafe --prefix ~/.local install

To enable Xwayland support pass the -Dxwayland option as well. Run zig build -h to see a list of all options.

Usage

River can either be run nested in an X11/Wayland session or directly from a tty using KMS/DRM. Simply run the river command.

On startup river will run an executable file at $XDG_CONFIG_HOME/river/init if such an executable exists. If $XDG_CONFIG_HOME is not set, ~/.config/river/init will be used instead.

Usually this executable is a shell script which starts the user's window manager and any other long-running programs.

For complete documentation see the river(1) man page.

Donate

If my work on river adds value to your life and you'd like to support me financially you can find donation information here.

Licensing

This project follows the REUSE Specification, all files have SPDX copyright and license information.

In overview:

  • River's source code is released under the GPL-3.0-only license.
  • River's Wayland protocols are released under the MIT license.
  • River's logo and documentation are released under the CC-BY-SA-4.0 license.