mirror of
https://git.disroot.org/FollieHiyuki/dotfiles.git
synced 2024-11-24 16:28:22 -05:00
359cc044b2
neovim: lsp: add ansiblels chore: cleanup shebang (remove 'sh -e' pattern)
15 lines
282 B
Bash
Executable File
15 lines
282 B
Bash
Executable File
#!/bin/sh
|
|
|
|
# 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 ..
|