(feat) brick.sh -L
This commit is contained in:
parent
8861da21bf
commit
693430a180
44
brick.sh
44
brick.sh
|
@ -66,25 +66,7 @@ PKGS=()
|
||||||
ERRORED=false
|
ERRORED=false
|
||||||
AUTOMATIC=false
|
AUTOMATIC=false
|
||||||
|
|
||||||
# settings the PKGS var
|
|
||||||
# lets grab those from argv
|
|
||||||
while [[ $# -gt 0 ]]; do
|
|
||||||
case $1 in
|
|
||||||
-y|--noconfirm)
|
|
||||||
AUTOMATIC=true
|
|
||||||
shift;;
|
|
||||||
-*)
|
|
||||||
# meh domt need unkonw args
|
|
||||||
shift;;
|
|
||||||
*)
|
|
||||||
# everything else is a package name however
|
|
||||||
PKGS+=("$1")
|
|
||||||
shift;;
|
|
||||||
esac
|
|
||||||
done
|
|
||||||
|
|
||||||
# setting the BRICKS_DIR var
|
# setting the BRICKS_DIR var
|
||||||
|
|
||||||
BRICKS_PWD=$(pwd)
|
BRICKS_PWD=$(pwd)
|
||||||
|
|
||||||
while :; do
|
while :; do
|
||||||
|
@ -99,11 +81,35 @@ while :; do
|
||||||
exit 1
|
exit 1
|
||||||
fi
|
fi
|
||||||
done
|
done
|
||||||
|
|
||||||
unset BRICKS_PWD
|
unset BRICKS_PWD
|
||||||
|
|
||||||
|
|
||||||
BRICKS_DB=$(brickdb)
|
BRICKS_DB=$(brickdb)
|
||||||
BRICKS_INSTALLED=$(cat $BRICKS_DB/installed)
|
BRICKS_INSTALLED=$(cat $BRICKS_DB/installed)
|
||||||
|
# settings the PKGS var
|
||||||
|
# lets grab those from argv
|
||||||
|
while [[ $# -gt 0 ]]; do
|
||||||
|
case $1 in
|
||||||
|
-y|--noconfirm)
|
||||||
|
AUTOMATIC=true
|
||||||
|
shift;;
|
||||||
|
-L)
|
||||||
|
inf "listing packages"
|
||||||
|
for pkg in $(find $BRICKS_DIR -maxdepth 1 -type f -printf "%f\n" | grep -E \\.brick$ | sed 's/.brick//'); do
|
||||||
|
source $(getbrick $pkg)
|
||||||
|
inf "$(inf "$pkg - $(info)")"
|
||||||
|
done
|
||||||
|
exit 0
|
||||||
|
;;
|
||||||
|
-*)
|
||||||
|
# meh domt need unkonw args
|
||||||
|
shift;;
|
||||||
|
*)
|
||||||
|
# everything else is a package name however
|
||||||
|
PKGS+=("$1")
|
||||||
|
shift;;
|
||||||
|
esac
|
||||||
|
done
|
||||||
|
|
||||||
PPKGS=()
|
PPKGS=()
|
||||||
|
|
||||||
|
|
|
@ -4,6 +4,10 @@
|
||||||
# which also installs nvim
|
# which also installs nvim
|
||||||
# this brick is GPL3 only
|
# this brick is GPL3 only
|
||||||
|
|
||||||
|
info() {
|
||||||
|
echo a fun vim-like editor
|
||||||
|
}
|
||||||
|
|
||||||
pkgs() {
|
pkgs() {
|
||||||
echo neovim
|
echo neovim
|
||||||
}
|
}
|
||||||
|
|
|
@ -2,6 +2,10 @@
|
||||||
# omz brick (pacakge is GPL3 only, omz itself is MIT (as of jan 2024))
|
# omz brick (pacakge is GPL3 only, omz itself is MIT (as of jan 2024))
|
||||||
# made by alice
|
# made by alice
|
||||||
|
|
||||||
|
info() {
|
||||||
|
echo a nice shell framework
|
||||||
|
}
|
||||||
|
|
||||||
pkgs() {
|
pkgs() {
|
||||||
echo sh curl git zsh
|
echo sh curl git zsh
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue