2023-06-20 20:06:19 +00:00
|
|
|
#!/bin/bash
|
|
|
|
pushd "${BASH_SOURCE%/*}" > /dev/null;
|
|
|
|
|
2024-03-07 20:39:23 +00:00
|
|
|
. "../../../scripts/Arch/OS/install.sh";
|
2023-07-13 21:11:57 +00:00
|
|
|
. "../../../scripts/Arch/Software/GRUB/install.sh";
|
2023-06-20 20:06:19 +00:00
|
|
|
. "../../../scripts/Arch/Config/SecureBoot/install.sh";
|
|
|
|
. "../../../scripts/Arch/Software/nvidia-dkms/install.sh";
|
2023-07-27 19:24:09 +00:00
|
|
|
. "../../../scripts/Arch/Software/xone/install.sh";
|
2023-08-07 18:43:48 +00:00
|
|
|
. "../../../scripts/Arch/Software/bt-dualboot/install.sh";
|
2023-06-20 20:06:19 +00:00
|
|
|
. "../../../scripts/Arch/Collections/personal.sh";
|
|
|
|
|
|
|
|
NEXTCLOUD_DIR="${NEXTCLOUD_DIR}" \
|
|
|
|
INSTALL_FONTS=0 \
|
|
|
|
. "../../../scripts/Common/Config/UserProfile/install.sh";
|
|
|
|
|
|
|
|
popd > /dev/null;
|