FollieHiyuki-dotfiles/setup/river.sh

15 lines
285 B
Bash
Raw Normal View History

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