24 lines
562 B
Bash
Executable file
24 lines
562 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";
|
|
. "../../Common/Scripts/hooks.sh";
|
|
|
|
sudo pacman --noconfirm -Syu pacman-contrib;
|
|
|
|
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;
|