C0E7-4B50

This commit is contained in:
JaKooLit 2025-03-08 23:17:13 +09:00
parent 06e22ad0b3
commit 7fe3d55f43
5 changed files with 5 additions and 5 deletions

View File

@ -84,7 +84,7 @@ if [ -d "ags" ]; then
fi fi
# Clone nwg-look repository with the specified tag # Clone nwg-look repository with the specified tag
if git clone --recursive -b "$ags_tag" --depth 1 https://github.com/Aylur/ags.git; then if git clone --recursive -b "$ags_tag" --depth=1 https://github.com/Aylur/ags.git; then
cd ags || exit 1 cd ags || exit 1
# Build and install ags # Build and install ags
npm install npm install

View File

@ -30,7 +30,7 @@ if [ -d Hyprland-Dots-Debian ]; then
chmod +x copy.sh chmod +x copy.sh
./copy.sh ./copy.sh
else else
if git clone --depth 1 -b $dots_tag https://github.com/JaKooLit/Hyprland-Dots Hyprland-Dots-Debian; then if git clone --depth=1 -b $dots_tag https://github.com/JaKooLit/Hyprland-Dots Hyprland-Dots-Debian; then
cd Hyprland-Dots-Debian || exit 1 cd Hyprland-Dots-Debian || exit 1
chmod +x copy.sh chmod +x copy.sh
./copy.sh ./copy.sh

View File

@ -36,7 +36,7 @@ if [ -d "GTK-themes-icons" ]; then
fi fi
echo "$NOTE Cloning ${SKY_BLUE}GTK themes and Icons${RESET} repository..." 2>&1 | tee -a "$LOG" echo "$NOTE Cloning ${SKY_BLUE}GTK themes and Icons${RESET} repository..." 2>&1 | tee -a "$LOG"
if git clone --depth 1 https://github.com/JaKooLit/GTK-themes-icons.git ; then if git clone --depth=1 https://github.com/JaKooLit/GTK-themes-icons.git ; then
cd GTK-themes-icons cd GTK-themes-icons
chmod +x auto-extract.sh chmod +x auto-extract.sh
./auto-extract.sh ./auto-extract.sh

View File

@ -37,7 +37,7 @@ if [ -d "$theme_name" ]; then
fi fi
# Clone the repository # Clone the repository
if git clone --depth 1 "$source_theme" "$theme_name"; then if git clone --depth=1 "$source_theme" "$theme_name"; then
if [ ! -d "$theme_name" ]; then if [ ! -d "$theme_name" ]; then
echo "${ERROR} Failed to clone the repository." | tee -a "$LOG" echo "${ERROR} Failed to clone the repository." | tee -a "$LOG"
fi fi

View File

@ -24,7 +24,7 @@ printf "${INFO} Installing ${SKY_BLUE}Pokemon color scripts${RESET} ..."
if [ -d "pokemon-colorscripts" ]; then if [ -d "pokemon-colorscripts" ]; then
cd pokemon-colorscripts && git pull && sudo ./install.sh && cd .. cd pokemon-colorscripts && git pull && sudo ./install.sh && cd ..
else else
git clone --depth 1 https://gitlab.com/phoneybadger/pokemon-colorscripts.git && git clone --depth=1 https://gitlab.com/phoneybadger/pokemon-colorscripts.git &&
cd pokemon-colorscripts && sudo ./install.sh && cd .. cd pokemon-colorscripts && sudo ./install.sh && cd ..
fi fi