Go to file
Cat /dev/Nulo 4ed070b68c WIP: weird matching mechanism 2021-11-07 21:07:34 -03:00
.github/workflows ci: fix xbps invocation 2021-09-27 19:10:46 +02:00
common common: standardize on -help option 2021-07-24 19:31:04 +02:00
completions completions/fish: simplify 2021-11-01 18:27:41 +07:00
contrib contrib: recommend using a venv for layout.py 2021-10-06 12:16:36 +02:00
deps pointer-constraints: fix coordinates 2021-10-11 15:01:57 +02:00
doc docs: update URLs for migration to riverwm github org 2021-11-01 11:28:43 +01:00
example docs: assorted fixes/cleanups 2021-11-01 00:29:06 +01:00
protocol river: implement xdg-activation-v1 2021-08-19 12:58:52 +00:00
river WIP: weird matching mechanism 2021-11-07 21:07:34 -03:00
riverctl build: fix trailing newline in version string 2021-11-02 23:54:44 +01:00
rivertile build: fix trailing newline in version string 2021-11-02 23:54:44 +01:00
.editorconfig editorconfig: add scdoc config 2020-06-17 16:22:53 +02:00
.gitignore code: update to zig 0.8.0 2021-06-05 17:29:58 +00:00
.gitmodules code: switch to custom wlroots/libwayland bindings 2020-12-13 22:53:33 +01:00
CONTRIBUTING.md doc: add IRC web client link 2021-05-28 17:39:43 +00:00
LICENSE Relicense to GPL-3.0-or-later 2020-05-02 19:21:10 +02:00
README.md docs: clarify description of dependencies 2021-11-03 13:40:46 +01:00
build.zig build: bump version to 0.2.0-dev 2021-11-03 00:31:55 +01:00

README.md

river

River is a dynamic tiling Wayland compositor with flexible runtime configuration.

Join us at #river on irc.libera.chat. Read our man pages and our wiki.

Note: river is currently early in development. Expect breaking changes and missing features. If you run into a bug don't hesitate to open an issue

Design goals

  • Simple and predictable behavior, river should be easy to use and have a low cognitive load.
  • Window management based on a stack of views and tags.
  • Dynamic layouts generated by external, user-written executables. A default rivertile layout generator is provided.
  • Scriptable configuration and control through a custom Wayland protocol and separate riverctl binary implementing it.

Building

Packaging status

On cloning the repository, you must init and update the submodules as well with e.g.

git submodule update --init

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

  • zig 0.8
  • wayland
  • wayland-protocols
  • wlroots 0.14
  • xkbcommon
  • libevdev
  • pixman
  • pkg-config
  • scdoc (optional, but required for man page generation)

Then run, for example:

zig build -Drelease-safe --prefix ~/.local install

To enable experimental Xwayland support pass the -Dxwayland option as well.

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 invoking riverctl(1) to create mappings, start programs such as a layout generator or status bar, and preform other configuration.

An example init script with sane defaults is provided here in the example directory.

For complete documentation see the river(1), riverctl(1), and rivertile(1) man pages.

Licensing

river is released under the GNU General Public License version 3, or (at your option) any later version.

The protocols in the protocol directory are released under various licenses by various parties. You should refer to the copyright block of each protocol for the licensing information. The protocols prefixed with river and developed by this project are released under the ISC license (as stated in their copyright blocks).