20 lines
951 B
Bash
20 lines
951 B
Bash
# Install Utility for AMD GPUs if needed
|
|
read -p "Would you like to install LACT, an AMD GPU Utility? (y/N) " amd_gpu
|
|
if [ "$amd_gpu" == "y" ]; then
|
|
sudo dnf install -y https://github.com/ilya-zlobintsev/LACT/releases/download/v0.5.4/lact-0.5.4-0.x86_64.fedora-40.rpm
|
|
sudo systemctl enable --now lactd
|
|
fi
|
|
read -p "Would you like to install the proprietary NVIDIA Drivers? (y/N) " nvidia_gpu
|
|
if [ "$nvidia_gpu" == "y" ]; then
|
|
sudo dnf install -y akmod-nvidia xorg-x11-drv-nvidia-cuda
|
|
echo -e "\nRemove the duplicate lines below from grub:"
|
|
echo -e "\t\"rd.driver.blacklist=nouveau,"
|
|
echo -e "\tmodprobe.blacklist=nouveau,"
|
|
echo -e "\tnvidia-drm.modeset=1\"\n"
|
|
echo -e "\n Save the file & close nvim to continue.\n"
|
|
kitty -1 -e bash -c "sudo nvim /etc/default/grub"
|
|
sudo grub2-mkconfig -o /etc/grub2-efi.cfg
|
|
sudo systemctl enable nvidia-hibernate.service nvidia-suspend.service \
|
|
nvidia-resume.service nvidia-powerd.service
|
|
fi
|