This repository has been archived on 2022-08-21. You can view files and clone it, but cannot push or open issues or pull requests.
dotfiles/setup/river.sh

15 lines
282 B
Bash
Raw Normal View History

#!/bin/sh
2021-02-13 17:28:59 +01:00
# Need wlroots-devel to build
git clone https://github.com/ifreund/river.git
cd river
2021-02-13 17:28:59 +01:00
echo "Initialize submodules"
2021-06-08 21:44:48 +02:00
git submodule update --init --recursive
2021-02-13 17:28:59 +01:00
echo "Install river"
zig build -Drelease-safe -Dxwayland --prefix $HOME/.local install
rm -rv ~/.local/etc
2021-02-13 17:28:59 +01:00
cd ..