(feat) add brick for brick
This commit is contained in:
parent
d8114901dc
commit
f497614854
|
@ -26,6 +26,7 @@ to do this, run this:
|
||||||
ok so for now there arent a lot (probably wont be lmao) but theres the ones that are there:
|
ok so for now there arent a lot (probably wont be lmao) but theres the ones that are there:
|
||||||
1. `omz` - a cool shell framework
|
1. `omz` - a cool shell framework
|
||||||
2. `nvim` - like vim but better + has my "rice"
|
2. `nvim` - like vim but better + has my "rice"
|
||||||
|
3. `brick` - brick's brick to install brick on your system (hopefully it won't brick it)
|
||||||
|
|
||||||
to get the auto generated list of packages, run `./brick.sh -L`
|
to get the auto generated list of packages, run `./brick.sh -L`
|
||||||
|
|
||||||
|
|
|
@ -0,0 +1,22 @@
|
||||||
|
#!/bin/sh
|
||||||
|
# brick brick - a brick to install brick
|
||||||
|
# it installs brick.sh to ~/.local/bin/brick
|
||||||
|
# :3
|
||||||
|
|
||||||
|
downloads=(
|
||||||
|
https://git.blek.codes/blek/os/raw/branch/main/brick.sh
|
||||||
|
)
|
||||||
|
|
||||||
|
pkgs() {
|
||||||
|
echo bash curl
|
||||||
|
}
|
||||||
|
|
||||||
|
install() {
|
||||||
|
mkdir -p ~/.local/bin
|
||||||
|
cp ${downloads[0]} ~/.local/bin/brick
|
||||||
|
chmod +x ~/.local/bin/brick
|
||||||
|
}
|
||||||
|
|
||||||
|
uninstall() {
|
||||||
|
rm ~/.local/bin/brick
|
||||||
|
}
|
Loading…
Reference in New Issue