Files
omarchy/install/nvidia.sh

85 lines
2.8 KiB
Bash
Raw Normal View History

#!/bin/bash
# ==============================================================================
# Hyprland NVIDIA Setup Script for Arch Linux
# ==============================================================================
# This script automates the installation and configuration of NVIDIA drivers
# for use with Hyprland on Arch Linux, following the official Hyprland wiki.
#
# Author: https://github.com/Kn0ax
2025-06-30 23:56:33 -07:00
#
# ==============================================================================
2025-06-30 20:45:17 +02:00
# --- GPU Detection ---
2025-07-02 16:21:52 -07:00
if [ -n "$(lspci | grep -i 'nvidia')" ]; then
# --- Driver Selection ---
# Turing (16xx, 20xx), Ampere (30xx), Ada (40xx), and newer recommend the open-source kernel modules
2025-07-06 17:04:31 -07:00
if echo "$(lspci | grep -i 'nvidia')" | grep -q -E "RTX [2-9][0-9]|GTX 16"; then
NVIDIA_DRIVER_PACKAGE="nvidia-open-dkms"
2025-07-02 16:21:52 -07:00
else
NVIDIA_DRIVER_PACKAGE="nvidia-dkms"
2025-07-02 16:21:52 -07:00
fi
2025-07-02 16:21:52 -07:00
# Check which kernel is installed and set appropriate headers package
KERNEL_HEADERS="linux-headers" # Default
if pacman -Q linux-zen &>/dev/null; then
KERNEL_HEADERS="linux-zen-headers"
2025-07-02 16:21:52 -07:00
elif pacman -Q linux-lts &>/dev/null; then
KERNEL_HEADERS="linux-lts-headers"
2025-07-02 16:21:52 -07:00
elif pacman -Q linux-hardened &>/dev/null; then
KERNEL_HEADERS="linux-hardened-headers"
2025-07-02 16:21:52 -07:00
fi
2025-07-02 16:21:52 -07:00
# Enable multilib repository for 32-bit libraries
if ! grep -q "^\[multilib\]" /etc/pacman.conf; then
2025-06-30 00:47:42 +02:00
sudo sed -i '/^#\[multilib\]/,/^#Include/ s/^#//' /etc/pacman.conf
2025-07-02 16:21:52 -07:00
fi
2025-06-30 00:47:42 +02:00
2025-07-02 16:21:52 -07:00
# Install packages
PACKAGES_TO_INSTALL=(
2025-06-30 23:56:33 -07:00
"${KERNEL_HEADERS}"
"${NVIDIA_DRIVER_PACKAGE}"
"nvidia-utils"
"lib32-nvidia-utils"
"egl-wayland"
"libva-nvidia-driver" # For VA-API hardware acceleration
"qt5-wayland"
"qt6-wayland"
2025-07-02 16:21:52 -07:00
)
yay -S --needed --noconfirm "${PACKAGES_TO_INSTALL[@]}"
2025-07-02 16:21:52 -07:00
# Configure modprobe for early KMS
echo "options nvidia_drm modeset=1" | sudo tee /etc/modprobe.d/nvidia.conf >/dev/null
2025-07-02 16:21:52 -07:00
# Configure mkinitcpio for early loading
MKINITCPIO_CONF="/etc/mkinitcpio.conf"
2025-07-02 16:21:52 -07:00
# Define modules
NVIDIA_MODULES="nvidia nvidia_modeset nvidia_uvm nvidia_drm"
2025-07-02 16:21:52 -07:00
# Create backup
sudo cp "$MKINITCPIO_CONF" "${MKINITCPIO_CONF}.backup"
2025-07-02 16:21:52 -07:00
# Remove any old nvidia modules to prevent duplicates
sudo sed -i -E 's/ nvidia_drm//g; s/ nvidia_uvm//g; s/ nvidia_modeset//g; s/ nvidia//g;' "$MKINITCPIO_CONF"
# Add the new modules at the start of the MODULES array
sudo sed -i -E "s/^(MODULES=\\()/\\1${NVIDIA_MODULES} /" "$MKINITCPIO_CONF"
# Clean up potential double spaces
sudo sed -i -E 's/ +/ /g' "$MKINITCPIO_CONF"
2025-07-02 16:21:52 -07:00
sudo mkinitcpio -P
2025-07-02 16:21:52 -07:00
# Add NVIDIA environment variables to hyprland.conf
HYPRLAND_CONF="$HOME/.config/hypr/hyprland.conf"
if [ -f "$HYPRLAND_CONF" ]; then
cat >>"$HYPRLAND_CONF" <<'EOF'
# NVIDIA environment variables
env = NVD_BACKEND,direct
env = LIBVA_DRIVER_NAME,nvidia
env = __GLX_VENDOR_LIBRARY_NAME,nvidia
EOF
2025-07-02 16:21:52 -07:00
fi
fi