PortValhalla/profiles/ManuSurface/Arch/install.sh

25 lines
638 B
Bash
Executable file

#!/bin/bash -e
pushd "${BASH_SOURCE%/*}" > /dev/null;
function installDrivers() {
local dir="${BASH_SOURCE%/*}";
. "$dir/../../../scripts/Arch/Config/SecureBoot/install.sh";
. "$dir/../../../scripts/Arch/Drivers/SurfaceBook2/install.sh";
}
function installSoftware() {
local dir="${BASH_SOURCE%/*}";
. "$dir/../../../scripts/Arch/Collections/school.sh";
}
function initializeConfig() {
local dir="${BASH_SOURCE%/*}";
. "$dir/../../../scripts/Common/Config/Steam/hidpi.sh";
. "$dir/../../../scripts/Unix/Devices/Surface Book 2/install.sh";
}
. "../../../scripts/Arch/OS/install.sh";
popd > /dev/null;