2024-03-24 23:26:12 +00:00
|
|
|
#!/bin/bash -e
|
2024-06-19 00:14:24 +00:00
|
|
|
function install() {
|
2024-07-07 18:04:05 +00:00
|
|
|
function installDrivers() {
|
|
|
|
. "../../../scripts/Arch/Config/SecureBoot/install.sh";
|
|
|
|
. "../../../scripts/Arch/Software/nvidia-dkms/install.sh";
|
|
|
|
. "../../../scripts/Arch/Software/xone/install.sh";
|
|
|
|
. "../../../scripts/Arch/Software/bt-dualboot/install.sh";
|
|
|
|
}
|
|
|
|
|
|
|
|
function initializeConfig() {
|
|
|
|
. "../../../scripts/Unix/Devices/Logitech G903/install.sh";
|
|
|
|
}
|
2024-03-28 12:17:08 +00:00
|
|
|
|
2024-06-19 00:14:24 +00:00
|
|
|
pushd "$dir" > /dev/null;
|
|
|
|
. "../../../scripts/Arch/OS/install.sh";
|
|
|
|
popd > /dev/null;
|
|
|
|
}
|
2023-06-20 20:06:19 +00:00
|
|
|
|
2024-06-19 00:14:24 +00:00
|
|
|
install;
|