mirror of
https://git.disroot.org/FollieHiyuki/dotfiles.git
synced 2024-11-25 00:38:23 -05:00
19 lines
363 B
Bash
Executable File
19 lines
363 B
Bash
Executable File
#!/bin/sh -e
|
|
|
|
# Need wlroots-devel to build
|
|
git clone https://github.com/ifreund/river.git
|
|
cd river
|
|
|
|
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 ..
|