fix script path

meh, stupid me
This commit is contained in:
Kn0ax
2025-06-30 00:38:36 +02:00
parent fbd85990d0
commit 8f68793f7c

View File

@ -10,11 +10,11 @@ if [ -n "$gpu_info" ]; then
if [ -t 0 ]; then if [ -t 0 ]; then
read -p "NVIDIA GPU detected. Do you want to install NVIDIA drivers? (y/N) " install_nvidia read -p "NVIDIA GPU detected. Do you want to install NVIDIA drivers? (y/N) " install_nvidia
if [[ "$install_nvidia" =~ ^[yY](es)?$ ]]; then if [[ "$install_nvidia" =~ ^[yY](es)?$ ]]; then
source ./nvidia source ~/.local/share/omarchy/install/nvidia
fi fi
else else
# Non-interactive mode - run nvidia script # Non-interactive mode - run nvidia script
source ./nvidia source ~/.local/share/omarchy/install/nvidia
fi fi
fi fi