36 lines
699 B
Bash
Executable file
36 lines
699 B
Bash
Executable file
#!/bin/bash
|
|
$rootDir="${BASH_SOURCE%/*}";
|
|
pushd "$rootDir" > /dev/null;
|
|
|
|
. "../Software/base-devel/install.sh";
|
|
. "../Config/pacman/install.sh";
|
|
. "../Software/yay/install.sh";
|
|
|
|
sudo pacman --noconfirm -Syu pacman-contrib;
|
|
|
|
function runHook() {
|
|
function fallback() {
|
|
${@:2};
|
|
}
|
|
|
|
if command -v $1 > /dev/null
|
|
then
|
|
$1 fallback;
|
|
else
|
|
fallback;
|
|
fi;
|
|
}
|
|
|
|
runHook installDrivers;
|
|
|
|
runHook installSoftware \
|
|
. "$(pwd)/../Collections/personal.sh";
|
|
|
|
runHook initializeConfig;
|
|
|
|
runHook initializeProfile \
|
|
NEXTCLOUD_DIR="${NEXTCLOUD_DIR}" \
|
|
INSTALL_FONTS=0 \
|
|
. "$(pwd)/../../../scripts/Common/Config/UserProfile/install.sh";
|
|
|
|
popd > /dev/null;
|