river/README.md

83 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
window manger.
2020-03-28 10:02:38 -07:00
- Dynamic window management based on a stack of views and tags like dwm.
2020-05-24 12:07:57 -07:00
- Scriptable configuration and control through a separate binary,
`riverctl`, like bspwm. This works using the custom
[river-control](protocol/river-control-unstable-v1.xml) protocol.
2020-03-28 10:02:38 -07:00
2020-04-12 05:12:48 -07:00
## Building
To compile river first ensure that you have the following dependencies
installed:
2020-04-13 15:40:43 -07:00
- [zig](https://github.com/ziglang/zig) 0.6.0
2020-04-12 05:12:48 -07:00
- wayland
- wayland-protocols
- [wlroots](https://github.com/swaywm/wlroots) 0.10.1
- xkbcommon
2020-05-28 07:27:49 -07:00
- pixman
- pkg-config
2020-04-12 05:12:48 -07:00
*Note: NixOS users should refer to the
[Building on NixOS wiki page](https://github.com/ifreund/river/wiki/Building-on-NixOS)*
Then run, for example,
```
sudo zig build -Drelease-safe=true --prefix /usr/local install
```
to build and install the `river` and `riverctl` binaries to
`/usr/local/bin`. To enable experimental Xwayland support pass the
`-Dxwayland=true` 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.
River has no keybindings by default; mappings can be created using the `map`
command of `riverctl`. Generally, creating mappings and other configuration is
done with a shell script. River will execute any arbitrary shell command passed
with the `-c` flag during startup. For example:
```
river -c /path/to/config.sh
```
An example script with sane defaults is provided [here](contrib/config.sh) in
the contrib directory.
Some configuration options are still hardcoded in [Config.zig](river/Config.zig).
Eventually all configuration will be moved to the `riverctl` binary.
2020-04-13 15:40:43 -07:00
2020-03-28 10:02:38 -07:00
## Development
2020-04-12 05:12:48 -07:00
Check out the [roadmap](https://github.com/ifreund/river/issues/1)
if you'd like to see what has been done and what is left to do.
2020-04-10 14:18:34 -07:00
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).