2020-04-10 23:18:34 +02:00
|
|
|
# river
|
2020-03-28 18:02:38 +01:00
|
|
|
|
2020-06-11 13:28:40 +02:00
|
|
|
river is a dynamic tiling wayland compositor that takes inspiration from
|
2020-04-12 14:12:48 +02:00
|
|
|
[dwm](https://dwm.suckless.org) and
|
|
|
|
[bspwm](https://github.com/baskerville/bspwm).
|
2020-03-28 18:02:38 +01:00
|
|
|
|
2020-06-11 13:28:40 +02: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 19:06:11 +02:00
|
|
|
[open an issue](https://github.com/ifreund/river/issues/new)*
|
2020-03-28 18:02:38 +01:00
|
|
|
|
|
|
|
## Design goals
|
|
|
|
|
2020-04-12 14:12:48 +02:00
|
|
|
- Simplicity and minimalism, river should not overstep the bounds of a
|
2020-06-22 17:19:07 +02:00
|
|
|
window manager.
|
2020-06-16 17:39:46 +02:00
|
|
|
- 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 12:40:43 +02:00
|
|
|
separate `riverctl` binary implementing it.
|
2020-03-28 18:02:38 +01:00
|
|
|
|
2020-04-12 14:12:48 +02:00
|
|
|
## Building
|
|
|
|
|
|
|
|
To compile river first ensure that you have the following dependencies
|
|
|
|
installed:
|
|
|
|
|
2020-10-05 23:17:05 +02:00
|
|
|
- [zig](https://ziglang.org/download/) master (will stick with 0.7.0 when it is released)
|
2020-04-12 14:12:48 +02:00
|
|
|
- wayland
|
|
|
|
- wayland-protocols
|
2020-07-16 21:20:43 +02:00
|
|
|
- [wlroots](https://github.com/swaywm/wlroots) 0.11.0
|
2020-04-12 14:12:48 +02:00
|
|
|
- xkbcommon
|
2020-08-24 14:52:47 +02:00
|
|
|
- libevdev
|
2020-05-28 16:27:49 +02:00
|
|
|
- pixman
|
|
|
|
- pkg-config
|
2020-06-16 17:39:46 +02:00
|
|
|
- scdoc (optional, but required for man page generation)
|
2020-04-12 14:12:48 +02:00
|
|
|
|
2020-10-05 23:17:05 +02:00
|
|
|
*Note: NixOS users may refer to the
|
2020-05-29 12:28:37 +02:00
|
|
|
[Building on NixOS wiki page](https://github.com/ifreund/river/wiki/Building-on-NixOS)*
|
|
|
|
|
2020-06-11 13:34:06 +02:00
|
|
|
Then run, for example,
|
|
|
|
```
|
2020-06-17 12:40:43 +02:00
|
|
|
zig build -Drelease-safe=true --prefix /usr/local install
|
2020-06-11 13:34:06 +02:00
|
|
|
```
|
2020-06-17 12:40:43 +02:00
|
|
|
to build and install the binaries and man pages to `/usr/local/bin` and
|
|
|
|
`/usr/local/share/man`. To enable experimental Xwayland support pass the
|
2020-06-11 13:34:06 +02:00
|
|
|
`-Dxwayland=true` option as well.
|
2020-06-01 21:25:24 +02:00
|
|
|
|
|
|
|
## Usage
|
|
|
|
|
2020-04-12 14:12:48 +02:00
|
|
|
River can either be run nested in an X11/wayland session or directly
|
|
|
|
from a tty using KMS/DRM.
|
|
|
|
|
2020-06-01 21:25:24 +02:00
|
|
|
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.
|
|
|
|
|
2020-06-17 12:40:43 +02:00
|
|
|
For a complete list of commands see the `riverctl(1)` man page.
|
2020-04-14 00:40:43 +02:00
|
|
|
|
2020-06-13 21:28:36 +02:00
|
|
|
Keyboard configuration is not yet implemented in river, but since river uses
|
|
|
|
libxkbcommon you may use the following environment variables to set defaults:
|
|
|
|
|
|
|
|
- `XKB_DEFAULT_RULES`
|
|
|
|
- `XKB_DEFAULT_MODEL`
|
|
|
|
- `XKB_DEFAULT_LAYOUT`
|
|
|
|
- `XKB_DEFAULT_VARIANT`
|
|
|
|
- `XKB_DEFAULT_OPTIONS`
|
|
|
|
|
|
|
|
Possible values for these variables can be found in the `xkeyboard-config(7)`
|
|
|
|
man page. For example, to use a dvorak layout one could start river with
|
|
|
|
|
|
|
|
```
|
|
|
|
XKB_DEFAULT_LAYOUT="us(dvorak)" river
|
|
|
|
```
|
|
|
|
|
2020-03-28 18:02:38 +01:00
|
|
|
## Development
|
|
|
|
|
2020-04-12 14:12:48 +02: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 23:18:34 +02:00
|
|
|
|
2020-06-11 13:24:46 +02: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 23:13:43 +02:00
|
|
|
|
2020-06-05 10:34:26 +02:00
|
|
|
## Licensing
|
2020-05-26 23:13:43 +02:00
|
|
|
|
|
|
|
river is released under the GNU General Public License version 3, or (at your
|
|
|
|
option) any later version.
|
|
|
|
|
2020-05-26 23:15:51 +02: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 23:13:43 +02:00
|
|
|
this project are released under the ISC license (as stated in their copyright
|
|
|
|
blocks).
|