14 lines
459 B
Bash
Executable file
14 lines
459 B
Bash
Executable file
#!/bin/bash
|
|
pushd "${BASH_SOURCE%/*}" > /dev/null;
|
|
|
|
. "../../../scripts/Arch/Config/SecureBoot/install.sh";
|
|
. "../../../scripts/Arch/Devices/SurfaceBook2/install.sh";
|
|
. "../../../scripts/Arch/Software/sddm/install.sh";
|
|
. "../../../scripts/Arch/Config/ssh-agent/install.sh";
|
|
. "../../../scripts/Arch/Collections/school.sh";
|
|
|
|
NEXTCLOUD_DIR="${NEXTCLOUD_DIR}" \
|
|
INSTALL_FONTS=0 \
|
|
. "../../../scripts/Common/Config/UserProfile/install.sh";
|
|
|
|
popd > /dev/null;
|