From d593c4d27e029962ca7d1ba9d699695067e7d93f Mon Sep 17 00:00:00 2001 From: Gaurav Bankar Date: Thu, 8 Aug 2024 14:04:53 +0530 Subject: [PATCH] fixed conf copy --- scripts/installer/hypr.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/installer/hypr.sh b/scripts/installer/hypr.sh index c0799b7..1c03a4f 100644 --- a/scripts/installer/hypr.sh +++ b/scripts/installer/hypr.sh @@ -11,7 +11,7 @@ print_info "\nStarting hypr setup..." print_info "\nEverything is recommended to INSTALL" run_command "pacman -S --noconfirm hyprland" "Install Hyprland (Must)" "yes" -run_command "cp /home/$SUDO_USER/simple-hyprland/configs/hypr/hyprland.conf /home/$SUDO_USER/.config/hypr/" "Copy hyprland config (Must)" "yes" "no" +run_command "mkdir -p /home/$SUDO_USER/.config/hypr/ && cp -r /home/$SUDO_USER/simple-hyprland/configs/hypr/hyprland.conf /home/$SUDO_USER/.config/hypr/" "Copy hyprland config (Must)" "yes" "no" run_command "pacman -S --noconfirm xdg-desktop-portal-hyprland" "Install XDG desktop portal for Hyprland" "yes"