FollieHiyuki-dotfiles/setup/bsp-layout.sh

14 lines
202 B
Bash
Raw Normal View History

2021-02-13 11:28:59 -05:00
#!/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 ..