PortValhalla/profiles/ManuSurface/Arch/install.sh

29 lines
831 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-27 08:31:03 +00:00
. "$dir/../../../scripts/Unix/Devices/Surface Book 2/install.sh";
2024-03-28 12:17:08 +00:00
. "$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";
2024-03-23 15:31:10 +00:00
}
. "../../../scripts/Arch/OS/install.sh";
2023-11-13 11:35:20 +00:00
popd > /dev/null;