2023-04-17 08:26:56 +00:00
|
|
|
#!/bin/bash
|
|
|
|
pushd "${BASH_SOURCE%/*}" > /dev/null;
|
|
|
|
|
2024-03-23 15:31:10 +00:00
|
|
|
function installDrivers() {
|
|
|
|
. "../../../scripts/Arch/Config/SecureBoot/install.sh";
|
|
|
|
. "../../../scripts/Arch/Devices/SurfaceBook2/install.sh";
|
|
|
|
}
|
|
|
|
|
|
|
|
function installSoftware() {
|
|
|
|
. "../../../scripts/Arch/Collections/school.sh";
|
|
|
|
}
|
2023-04-17 08:26:56 +00:00
|
|
|
|
2024-03-23 15:31:10 +00:00
|
|
|
function initializeConfig() {
|
|
|
|
. "../../../scripts/Common/Config/Steam/hidpi.sh";
|
|
|
|
}
|
|
|
|
|
|
|
|
. "../../../scripts/Arch/OS/install.sh";
|
2023-04-17 08:26:56 +00:00
|
|
|
|
2023-11-13 11:35:20 +00:00
|
|
|
|
2023-04-17 08:26:56 +00:00
|
|
|
popd > /dev/null;
|