1
0
mirror of https://git.disroot.org/FollieHiyuki/dotfiles.git synced 2025-02-26 14:29:33 -05:00
2021-02-18 18:17:03 +03:00

20 lines
369 B
Bash
Executable File

#!/bin/sh
# Need wlroots-devel to build
git clone https://github.com/ifreund/river.git
cd river || exit
echo "Initialize submodules"
git submodule update --init
echo "Install river"
if command -v doas >/dev/null
then
doas -- zig build -Drelease-safe -Dxwayland --prefix /usr install
else
sudo zig build -Drelease-safe -Dxwayland --prefix /usr install
fi
cd ..