river/README.md

89 lines
2.8 KiB
Markdown
Raw Normal View History

2020-04-10 14:18:34 -07:00
# river
2020-03-28 10:02:38 -07:00
2020-06-11 04:28:40 -07:00
river is a dynamic tiling wayland compositor that takes inspiration from
2020-04-12 05:12:48 -07:00
[dwm](https://dwm.suckless.org) and
[bspwm](https://github.com/baskerville/bspwm).
2020-03-28 10:02:38 -07:00
2020-06-11 04:28:40 -07:00
*Note: river is currently early in development. Expect breaking changes
and missing features. If you run into a bug don't hesitate to
2020-04-26 10:06:11 -07:00
[open an issue](https://github.com/ifreund/river/issues/new)*
2020-03-28 10:02:38 -07:00
## Design goals
2020-04-12 05:12:48 -07:00
- Simplicity and minimalism, river should not overstep the bounds of a
2020-06-22 08:19:07 -07:00
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
2020-06-17 03:40:43 -07:00
separate `riverctl` binary implementing it.
2020-03-28 10:02:38 -07:00
2020-04-12 05:12:48 -07:00
## Building
On cloning the repository, you must init and update the submodules as well
with e.g.
2020-11-02 04:59:59 -08:00
```
git submodule update --init
```
2020-04-12 05:12:48 -07:00
To compile river first ensure that you have the following dependencies
installed:
- [zig](https://ziglang.org/download/) 0.7.1
2020-04-12 05:12:48 -07:00
- wayland
- wayland-protocols
2020-11-10 02:46:03 -08:00
- [wlroots](https://github.com/swaywm/wlroots) 0.12.0
2020-04-12 05:12:48 -07:00
- xkbcommon
- libevdev
2020-05-28 07:27:49 -07:00
- pixman
- pkg-config
- scdoc (optional, but required for man page generation)
2020-04-12 05:12:48 -07:00
2020-10-05 14:17:05 -07:00
*Note: NixOS users may refer to the
[Building on NixOS wiki page](https://github.com/ifreund/river/wiki/Building-on-NixOS)*
Then run, for example:
```
zig build -Drelease-safe --prefix /usr install
```
To enable experimental Xwayland support pass the `-Dxwayland` option as well.
## Usage
2020-04-12 05:12:48 -07:00
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`
2020-04-13 15:40:43 -07:00
Usually this executable init file will be a shell script invoking riverctl
to create mappings and preform other configuration.
An example init script with sane defaults is provided [here](example/init)
in the example directory and installed to `/etc/river/init`.
For complete documentation see the `river(1)`, `riverctl(1)`, and
`rivertile(1)` man pages.
2020-03-28 10:02:38 -07:00
## Development
2020-06-11 04:24:46 -07:00
If you are interested in the development of river, please join us at
[#river](https://webchat.freenode.net/#river) on freenode. You should also
read [CONTRIBUTING.md](CONTRIBUTING.md) if you intend to submit patches.
2020-05-26 14:13:43 -07:00
2020-06-05 01:34:26 -07:00
## Licensing
2020-05-26 14:13:43 -07:00
river is released under the GNU General Public License version 3, or (at your
option) any later version.
2020-05-26 14:15:51 -07:00
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
2020-05-26 14:13:43 -07:00
this project are released under the ISC license (as stated in their copyright
blocks).