PortValhalla/profiles/DerGeret/Arch/install.sh

14 lines
385 B
Bash
Raw Normal View History

2023-06-20 20:06:19 +00:00
#!/bin/bash
pushd "${BASH_SOURCE%/*}" > /dev/null;
2024-03-23 15:31:10 +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";
}
2023-06-20 20:06:19 +00:00
2024-03-23 15:31:10 +00:00
. "../../../scripts/Arch/OS/install.sh";
2023-06-20 20:06:19 +00:00
popd > /dev/null;