diff --git a/core/tabs/system-setup/debian/hyprland-kool-deb.sh b/core/tabs/system-setup/debian/hyprland-kool-deb.sh index b5f6d03f..88ef1940 100644 --- a/core/tabs/system-setup/debian/hyprland-kool-deb.sh +++ b/core/tabs/system-setup/debian/hyprland-kool-deb.sh @@ -2,7 +2,7 @@ . ../../common-script.sh -echo "Hyprland JaKooLit" +printf "%b\n" "${YELLOW}Starting Hyprland JaKooLit installation${RC}" git clone --depth=1 https://github.com/JaKooLit/Debian-Hyprland.git "$HOME/Debian-Hyprland" || { printf "%b\n" "${RED}Failed to clone Jakoolits Debian-Hyprland repo${RC}"; exit 1; } cd "$HOME/Debian-Hyprland" chmod +x install.sh diff --git a/core/tabs/system-setup/fedora/hyprland-kool-fed.sh b/core/tabs/system-setup/fedora/hyprland-kool-fed.sh index 1ea2a977..c14d5d01 100644 --- a/core/tabs/system-setup/fedora/hyprland-kool-fed.sh +++ b/core/tabs/system-setup/fedora/hyprland-kool-fed.sh @@ -1,8 +1,10 @@ #!/bin/bash -echo "Hyprland JaKooLit" +. ../../common-script.sh -git clone --depth=1 https://github.com/JaKooLit/Fedora-Hyprland.git ~/Fedora-Hyprland +printf "%b\n" "${YELLOW}Starting Hyprland JaKooLit installation${RC}" + +git clone --depth=1 https://github.com/JaKooLit/Fedora-Hyprland.git "$HOME/Fedora-Hyprland" || { printf "%b\n" "${RED}Failed to clone Jakoolits Fedora-Hyprland repo${RC}"; exit 1; } cd "$HOME/Fedora-Hyprland" chmod +x install.sh ./install.sh \ No newline at end of file diff --git a/core/tabs/system-setup/ubuntu/hyprland-kool-ubuntu24.sh b/core/tabs/system-setup/ubuntu/hyprland-kool-ubuntu24.sh index 23b8dc0d..6a6355ba 100644 --- a/core/tabs/system-setup/ubuntu/hyprland-kool-ubuntu24.sh +++ b/core/tabs/system-setup/ubuntu/hyprland-kool-ubuntu24.sh @@ -1,8 +1,10 @@ #!/bin/bash -echo "Hyprland JaKooLit" +. ../../common-script.sh -git clone -b 24.04 --depth=1 https://github.com/JaKooLit/Ubuntu-Hyprland.git ~/Ubuntu-Hyprland-24.04 -cd ~/Ubuntu-Hyprland-24.04 +printf "%b\n" "${YELLOW}Starting Hyprland JaKooLit installation${RC}" + +git clone -b 24.04 --depth=1 https://github.com/JaKooLit/Ubuntu-Hyprland.git "$HOME/Ubuntu-Hyprland-24.04" || { printf "%b\n" "${RED}Failed to clone Jakoolits Ubuntu-Hyprland repo${RC}"; exit 1; } +cd "$HOME/Ubuntu-Hyprland-24.04" chmod +x install.sh ./install.sh \ No newline at end of file