2023-06-20 20:06:19 +00:00
|
|
|
#!/bin/bash
|
|
|
|
pushd "${BASH_SOURCE%/*}" > /dev/null;
|
|
|
|
|
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-06-21 19:45:52 +00:00
|
|
|
. "../../../scripts/Arch/Software/xow/install.sh";
|
2023-06-20 20:06:19 +00:00
|
|
|
. "../../../scripts/Arch/Software/sddm/install.sh";
|
|
|
|
. "../../../scripts/Arch/Config/ssh-agent/install.sh";
|
|
|
|
. "../../../scripts/Arch/Collections/personal.sh";
|
|
|
|
|
|
|
|
NEXTCLOUD_DIR="${NEXTCLOUD_DIR}" \
|
|
|
|
INSTALL_FONTS=0 \
|
|
|
|
. "../../../scripts/Common/Config/UserProfile/install.sh";
|
|
|
|
|
|
|
|
popd > /dev/null;
|