PortValhalla/profiles/ManuSurface/Arch/install.sh

21 lines
440 B
Bash
Raw Normal View History

#!/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";
}
2024-03-23 15:31:10 +00:00
function initializeConfig() {
. "../../../scripts/Common/Config/Steam/hidpi.sh";
}
. "../../../scripts/Arch/OS/install.sh";
2023-11-13 11:35:20 +00:00
popd > /dev/null;