8 lines
315 B
Bash
8 lines
315 B
Bash
|
#!/bin/bash
|
||
|
pushd "${BASH_SOURCE%/*}" > /dev/null;
|
||
|
. "$dir/../../../scripts/Arch/Config/SecureBoot/install.sh";
|
||
|
. "$dir/../../../scripts/Arch/Software/nvidia-dkms/install.sh";
|
||
|
. "$dir/../../../scripts/Arch/Software/xone/install.sh";
|
||
|
. "$dir/../../../scripts/Arch/Software/bt-dualboot/install.sh";
|
||
|
popd > /dev/null;
|