2023-04-17 08:26:56 +00:00
|
|
|
#!/bin/bash
|
|
|
|
pushd "${BASH_SOURCE%/*}" > /dev/null;
|
|
|
|
|
2023-05-22 21:12:02 +00:00
|
|
|
. "../../../scripts/Arch/Config/SecureBoot/install.sh";
|
2023-04-17 08:26:56 +00:00
|
|
|
. "../../../scripts/Arch/Devices/SurfaceBook2/install.sh";
|
2023-05-03 19:46:49 +00:00
|
|
|
. "../../../scripts/Arch/Software/sddm/install.sh";
|
2023-05-04 08:10:51 +00:00
|
|
|
. "../../../scripts/Arch/Config/ssh-agent/install.sh";
|
2023-04-17 08:26:56 +00:00
|
|
|
. "../../../scripts/Arch/Collections/school.sh";
|
|
|
|
|
2023-05-03 16:34:30 +00:00
|
|
|
NEXTCLOUD_DIR="${NEXTCLOUD_DIR}" \
|
2023-04-17 08:26:56 +00:00
|
|
|
INSTALL_FONTS=0 \
|
|
|
|
. "../../../scripts/Common/Config/UserProfile/install.sh";
|
|
|
|
|
|
|
|
popd > /dev/null;
|