FollieHiyuki-dotfiles/setup/bsp-layout.sh

14 lines
197 B
Bash
Raw Normal View History

#!/bin/sh -e
2021-02-13 11:28:59 -05:00
git clone https://github.com/phenax/bsp-layout.git
cd bsp-layout
2021-02-13 11:28:59 -05:00
if command -v doas >/dev/null
then
doas -- make PREFIX=/usr install
else
sudo make PREFIX=/usr install
fi
cd ..