Fork of river (Wayland compositor, https://codeberg.org/river/river)
Go to file
2020-12-30 20:29:45 +01:00
.github/workflows ci: check fmt of build.zig 2020-12-05 22:54:53 +01:00
contrib build: install example config to /etc/river/init 2020-12-30 20:29:28 +01:00
deps foreign-toplevel-management: basic implementation 2020-12-24 13:07:59 +01:00
doc docs: improve startup and config information 2020-12-30 20:29:45 +01:00
example build: install example config to /etc/river/init 2020-12-30 20:29:28 +01:00
protocol meta: make copyright headers more maintainable 2020-11-11 20:33:43 +01:00
river command: s/master/main/g (breaking change) 2020-12-30 18:15:47 +01:00
riverctl code: switch to custom wlroots/libwayland bindings 2020-12-13 22:53:33 +01:00
rivertile command: s/master/main/g (breaking change) 2020-12-30 18:15:47 +01:00
.editorconfig editorconfig: add scdoc config 2020-06-17 16:22:53 +02:00
.gitignore docs: small man pages fixes and updates 2020-06-17 12:14:23 +02:00
.gitmodules code: switch to custom wlroots/libwayland bindings 2020-12-13 22:53:33 +01:00
AUTHORS meta: make copyright headers more maintainable 2020-11-11 20:33:43 +01:00
build.zig build: install example config to /etc/river/init 2020-12-30 20:29:28 +01:00
CONTRIBUTING.md docs: Advertise irc channel instead of the old matrix channel 2020-11-01 10:31:08 +01:00
LICENSE Relicense to GPL-3.0-or-later 2020-05-02 19:21:10 +02:00
README.md docs: improve startup and config information 2020-12-30 20:29:45 +01:00

river

river is a dynamic tiling wayland compositor that takes inspiration from dwm and bspwm.

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

  • Simplicity and minimalism, river should not overstep the bounds of a window manager.
  • 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

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:

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

Note: NixOS users may refer to the Building on NixOS wiki page

Then run, for example:

zig build -Drelease-safe=true --prefix /usr install

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

Usage

River can either be run nested in an X11/wayland session or directly from a tty using KMS/DRM.

On startup river will look for and run an executable file at one of the following locations, checked in the order listed:

  • $XDG_CONFIG_HOME/river/init
  • $HOME/.config/river/init
  • /etc/river/init

Usually this executable init file will be a shell script invoking riverctl to create mappings and preform other configuration. The init file path may be overridden with the -c flag.

An example init script with sane defaults is provided here in the example directory and installed to /etc/river/init.

For a complete list of commands and documentation see the riverctl(1) man page.

Development

Check out the roadmap if you'd like to see what has been done and what is left to do.

If you are interested in the development of river, please join us at #river on freenode. You should also read CONTRIBUTING.md if you intend to submit patches.

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).