Refactor various names, add git configs, add to installs

This commit is contained in:
2025-01-26 19:34:27 -06:00
parent 35617f4280
commit 4aed99d570
18 changed files with 65 additions and 25 deletions

12
set_script_env_vars Normal file
View File

@ -0,0 +1,12 @@
[[ -z $BOX_SETUP_OS ]] &&
echo "BOX_SETUP_OS must be set; options: arch, artix, debian, macos" &&
exit 1
local install_cmd=''
case $BOX_SETUP_OS in
(arch | artix) install_cmd="sudo pacman -S" ;;
(debian) install_cmd="sudo apt install" ;;
(macos) install_cmd="brew install" ;;
esac
export BOX_SETUP_INSTALL_COMMAND="$install_cmd"