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