diff options
author | Kevin <[email protected]> | 2024-11-11 00:45:17 -0300 |
---|---|---|
committer | GitHub <[email protected]> | 2024-11-11 00:45:17 -0300 |
commit | 88291578497345523e797ea7cc8b61560906e3aa (patch) | |
tree | ceaf4cbf2f30dfc1a76f342e7f2515b12b20b372 /docs/guide/libraries/river.md | |
parent | 44710fb30105f5e76fc84845e9379787440f3c4c (diff) | |
parent | 302fcae7ae0b58767518e6003d0a80966d7ca4bb (diff) |
Merge branch 'Aylur:main' into lua-refactor
Diffstat (limited to 'docs/guide/libraries/river.md')
-rw-r--r-- | docs/guide/libraries/river.md | 68 |
1 files changed, 34 insertions, 34 deletions
diff --git a/docs/guide/libraries/river.md b/docs/guide/libraries/river.md index 299aa8c..dc1c71e 100644 --- a/docs/guide/libraries/river.md +++ b/docs/guide/libraries/river.md @@ -2,40 +2,6 @@ Library and CLI tool for monitoring the [River Wayland Compositor](https://isaacfreund.com/software/river/). -## Installation - -1. install dependencies - -:::code-group - -```sh [<i class="devicon-archlinux-plain"></i> Arch] -sudo pacman -Syu meson json-glib gobject-introspection -``` - -```sh [<i class="devicon-fedora-plain"></i> Fedora] -sudo dnf install meson gcc json-glib-devel gobject-introspection-devel -``` - -```sh [<i class="devicon-ubuntu-plain"></i> Ubuntu] -sudo apt install meson libjson-glib-dev gobject-introspection -``` - -::: - -2. clone repo - -```sh -git clone https://github.com/aylur/astal.git -cd astal/lib/river -``` - -3. install - -```sh -meson setup --prefix /usr build -meson install -C build -``` - ## Usage You can browse the [River reference](https://aylur.github.io/libastal/river). @@ -84,3 +50,37 @@ end ``` ::: + +## Installation + +1. install dependencies + +:::code-group + +```sh [<i class="devicon-archlinux-plain"></i> Arch] +sudo pacman -Syu meson json-glib gobject-introspection +``` + +```sh [<i class="devicon-fedora-plain"></i> Fedora] +sudo dnf install meson gcc json-glib-devel gobject-introspection-devel +``` + +```sh [<i class="devicon-ubuntu-plain"></i> Ubuntu] +sudo apt install meson libjson-glib-dev gobject-introspection +``` + +::: + +2. clone repo + +```sh +git clone https://github.com/aylur/astal.git +cd astal/lib/river +``` + +3. install + +```sh +meson setup --prefix /usr build +meson install -C build +``` |