20 lines
440 B
Bash
Executable file
20 lines
440 B
Bash
Executable file
#!/bin/bash
|
|
pushd "${BASH_SOURCE%/*}" > /dev/null;
|
|
|
|
function installDrivers() {
|
|
. "../../../scripts/Arch/Config/SecureBoot/install.sh";
|
|
. "../../../scripts/Arch/Devices/SurfaceBook2/install.sh";
|
|
}
|
|
|
|
function installSoftware() {
|
|
. "../../../scripts/Arch/Collections/school.sh";
|
|
}
|
|
|
|
function initializeConfig() {
|
|
. "../../../scripts/Common/Config/Steam/hidpi.sh";
|
|
}
|
|
|
|
. "../../../scripts/Arch/OS/install.sh";
|
|
|
|
|
|
popd > /dev/null;
|