FollieHiyuki-dotfiles/setup/bsp-layout.sh
2021-02-18 18:17:03 +03:00

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 ..