PortValhalla/profiles/ManuSurface/Arch/install.sh

24 lines
568 B
Bash
Raw Normal View History

2024-03-24 23:26:12 +00:00
#!/bin/bash -e
pushd "${BASH_SOURCE%/*}" > /dev/null;
2024-03-23 15:31:10 +00:00
function installDrivers() {
2024-03-27 08:29:54 +00:00
local dir="${BASH_SOURCE%/*}";
. "$dir/../../../scripts/Arch/Config/SecureBoot/install.sh";
. "$dir/../../../scripts/Arch/Drivers/SurfaceBook2/install.sh";
2024-03-23 15:31:10 +00:00
}
function installSoftware() {
2024-03-27 08:29:54 +00:00
local dir="${BASH_SOURCE%/*}";
. "$dir/../../../scripts/Arch/Collections/school.sh";
2024-03-23 15:31:10 +00:00
}
2024-03-23 15:31:10 +00:00
function initializeConfig() {
2024-03-27 08:29:54 +00:00
local dir="${BASH_SOURCE%/*}";
. "$dir/../../../scripts/Common/Config/Steam/hidpi.sh";
2024-03-23 15:31:10 +00:00
}
. "../../../scripts/Arch/OS/install.sh";
2023-11-13 11:35:20 +00:00
popd > /dev/null;