2023-04-17 08:26:56 +00:00
|
|
|
#!/bin/bash
|
|
|
|
pushd "${BASH_SOURCE%/*}" > /dev/null;
|
|
|
|
|
2024-03-07 20:39:23 +00:00
|
|
|
. "../../../scripts/Arch/OS/install.sh";
|
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";
|
|
|
|
. "../../../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";
|
|
|
|
|
2023-11-13 11:35:20 +00:00
|
|
|
. "../../../scripts/Common/Config/Steam/hidpi.sh";
|
|
|
|
|
2023-04-17 08:26:56 +00:00
|
|
|
popd > /dev/null;
|