From 8f68793f7c4fd33a3fabfc4f1bf6f51f7bec3ab9 Mon Sep 17 00:00:00 2001 From: Kn0ax Date: Mon, 30 Jun 2025 00:38:36 +0200 Subject: [PATCH] fix script path meh, stupid me --- install/hyprlandia.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/install/hyprlandia.sh b/install/hyprlandia.sh index 8e73a88..6a176ce 100644 --- a/install/hyprlandia.sh +++ b/install/hyprlandia.sh @@ -10,11 +10,11 @@ if [ -n "$gpu_info" ]; then if [ -t 0 ]; then read -p "NVIDIA GPU detected. Do you want to install NVIDIA drivers? (y/N) " install_nvidia if [[ "$install_nvidia" =~ ^[yY](es)?$ ]]; then - source ./nvidia + source ~/.local/share/omarchy/install/nvidia fi else # Non-interactive mode - run nvidia script - source ./nvidia + source ~/.local/share/omarchy/install/nvidia fi fi