14 lines
263 B
Bash
Executable file
14 lines
263 B
Bash
Executable file
#!/bin/bash
|
|
pushd "${BASH_SOURCE%/*}" > /dev/null;
|
|
|
|
. ../../Config/pacman/install.sh;
|
|
|
|
yay --noconfirm -Syu \
|
|
linux-headers;
|
|
|
|
yay --noconfirm -Syu \
|
|
nvidia-dkms \
|
|
lib32-nvidia-utils;
|
|
|
|
. ../../../Common/Config/nvidia-dkms/install.sh;
|
|
popd > /dev/null;
|