2024-03-07 20:39:23 +00:00
|
|
|
#!/bin/bash
|
2024-03-23 15:31:10 +00:00
|
|
|
$rootDir="${BASH_SOURCE%/*}";
|
|
|
|
pushd "$rootDir" > /dev/null;
|
2024-03-07 20:39:23 +00:00
|
|
|
|
|
|
|
. "../Software/base-devel/install.sh";
|
2024-03-08 23:10:24 +00:00
|
|
|
. "../Config/pacman/install.sh";
|
2024-03-07 20:39:23 +00:00
|
|
|
. "../Software/yay/install.sh";
|
2024-03-23 16:23:45 +00:00
|
|
|
. "../../Common/Scripts/hooks.sh";
|
2024-03-07 20:39:23 +00:00
|
|
|
|
2024-03-09 21:17:49 +00:00
|
|
|
sudo pacman --noconfirm -Syu pacman-contrib;
|
2024-03-09 11:17:03 +00:00
|
|
|
|
2024-03-23 15:31:10 +00:00
|
|
|
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";
|
|
|
|
|
2024-03-07 20:39:23 +00:00
|
|
|
popd > /dev/null;
|