From 3e99052bf5f840a38d10fa504465692b16550911 Mon Sep 17 00:00:00 2001 From: JaKooLit Date: Mon, 23 Oct 2023 01:01:40 +0900 Subject: [PATCH] updated install script for xdph --- install-scripts/xdph.sh | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/install-scripts/xdph.sh b/install-scripts/xdph.sh index c0df5ec..102f978 100755 --- a/install-scripts/xdph.sh +++ b/install-scripts/xdph.sh @@ -24,12 +24,8 @@ LOG="install-$(date +%d-%H%M%S)_xdph.log" # Clone and build xdg-desktop-portal-hyprland printf "${NOTE} Installing xdg-desktop-portal-hyprland...\n" -if git clone https://github.com/hyprwm/xdg-desktop-portal-hyprland.git 2>&1 | tee -a "$LOG"; then +if git clone --recursive https://github.com/hyprwm/xdg-desktop-portal-hyprland 2>&1 | tee -a "$LOG"; then cd xdg-desktop-portal-hyprland || exit 1 - cd subprojects - git clone https://github.com/hyprwm/hyprland-protocols.git - git clone https://github.com/Kistler-Group/sdbus-cpp.git - cd .. make all if sudo make install 2>&1 | tee -a "$LOG"; then printf "${OK} xdg-desktop-portal-hyprland installed successfully.\n"