This repository has been archived on 2022-08-21. You can view files and clone it, but cannot push or open issues or pull requests.
dotfiles/setup/bsp-layout.sh

14 lines
202 B
Bash
Executable File

#!/bin/sh
git clone https://github.com/phenax/bsp-layout.git
cd bsp-layout || exit
if command -v doas >/dev/null
then
doas -- make PREFIX=/usr install
else
sudo make PREFIX=/usr install
fi
cd ..