PortValhalla/profiles/ManuSurface/Arch/install.sh

29 lines
861 B
Bash
Raw Normal View History

2024-03-24 23:26:12 +00:00
#!/bin/bash -e
function install() {
local dir="$(realpath "${BASH_SOURCE%/*}")";
function installDrivers() {
. "$dir/../../../scripts/Arch/Config/SecureBoot/install.sh";
. "$dir/../../../scripts/Arch/Drivers/SurfaceBook2/install.sh";
}
2024-03-23 15:31:10 +00:00
function installSoftware() {
. "$dir/../../../scripts/Arch/Collections/school.sh";
}
function initializeConfig() {
. "$dir/../../../scripts/Common/Config/Steam/hidpi.sh";
. "$dir/../../../scripts/Unix/Devices/Surface Book 2/install.sh";
. "$dir/../../../scripts/Unix/Devices/Logitech G903/install.sh";
2024-04-12 06:34:54 +00:00
# Because, as it looks, Surface Books are fucking stupid.
. "$dir/../../../scripts/Common/Config/GRUB/verbose.sh";
}
pushd "$dir" > /dev/null;
. "../../../scripts/Arch/OS/install.sh";
popd > /dev/null;
}
2023-11-13 11:35:20 +00:00
install;