mirror of
https://git.disroot.org/FollieHiyuki/dotfiles.git
synced 2024-11-25 00:38:23 -05:00
14 lines
202 B
Bash
14 lines
202 B
Bash
|
#!/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 ..
|