forked from Shinonome/dots-hyprland
48 lines
1.5 KiB
Bash
Executable File
48 lines
1.5 KiB
Bash
Executable File
#!/usr/bin/env bash
|
|
cd "$(dirname "$0")"
|
|
export base="$(pwd)"
|
|
source ./sdata/lib/environment-variables.sh
|
|
source ./sdata/lib/functions.sh
|
|
source ./sdata/lib/package-installers.sh
|
|
source ./sdata/lib/options.sh
|
|
|
|
prevent_sudo_or_root
|
|
set -e
|
|
|
|
#####################################################################################
|
|
# For subcommands
|
|
case ${SCRIPT_SUBCOMMAND} in
|
|
exp-uninstall)
|
|
source ./sdata/exp/uninstall.sh
|
|
exit
|
|
;;
|
|
exp-update)
|
|
source ./sdata/exp/update.sh
|
|
exit
|
|
;;
|
|
esac
|
|
#####################################################################################
|
|
# 0. Before we start
|
|
if [[ "${SKIP_ALLGREETING}" != true ]]; then
|
|
source ./sdata/step/0.install-greeting.sh
|
|
fi
|
|
#####################################################################################
|
|
if [[ "${SKIP_ALLDEPS}" != true ]]; then
|
|
printf "${STY_CYAN}[$0]: 1. Install dependencies\n${STY_RST}"
|
|
source ./sdata/step/1.install-deps-selector.sh
|
|
fi
|
|
#####################################################################################
|
|
if [[ "${SKIP_ALLSETUPS}" != true ]]; then
|
|
printf "${STY_CYAN}[$0]: 2. Setup for permissions/services etc\n${STY_RST}"
|
|
source ./sdata/step/2.install-setups-selector.sh
|
|
fi
|
|
#####################################################################################
|
|
if [[ "${SKIP_ALLFILES}" != true ]]; then
|
|
printf "${STY_CYAN}[$0]: 3. Copying config files\n${STY_RST}"
|
|
if [[ "${EXPERIMENTAL_FILES_SCRIPT}" == true ]]; then
|
|
source ./sdata/step/3.install-files.experimental.sh
|
|
else
|
|
source ./sdata/step/3.install-files.sh
|
|
fi
|
|
fi
|