mirror of
https://git.disroot.org/FollieHiyuki/dotfiles.git
synced 2024-11-25 00:38:23 -05:00
4a8718a544
And some clean up
15 lines
285 B
Bash
Executable File
15 lines
285 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 --recursive
|
|
|
|
echo "Install river"
|
|
zig build -Drelease-safe -Dxwayland --prefix $HOME/.local install
|
|
rm -rv ~/.local/etc
|
|
|
|
cd ..
|