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