replaced folders//folder with directories/directory

This commit is contained in:
JaKooLit
2025-03-13 23:16:04 +09:00
parent a4164ca612
commit 36e84ebc53
5 changed files with 9 additions and 9 deletions

View File

@@ -25,7 +25,7 @@ source $ZSH/oh-my-zsh.sh
# fastfetch. Will be disabled if above colorscript was chosen to install # fastfetch. Will be disabled if above colorscript was chosen to install
fastfetch -c $HOME/.config/fastfetch/config-compact.jsonc fastfetch -c $HOME/.config/fastfetch/config-compact.jsonc
# Set-up icons for files/folders in terminal using lsd # Set-up icons for files/directories in terminal using lsd
alias ls='lsd' alias ls='lsd'
alias l='ls -l' alias l='ls -l'
alias la='ls -a' alias la='ls -a'

View File

@@ -67,9 +67,9 @@ printf "\n%.0s" {1..1}
# ags v1 # ags v1
printf "${NOTE} Install and Compiling ${SKY_BLUE}Aylur's GTK shell $ags_tag${RESET}..\n" printf "${NOTE} Install and Compiling ${SKY_BLUE}Aylur's GTK shell $ags_tag${RESET}..\n"
# Check if folder exists and remove it # Check if directory exists and remove it
if [ -d "ags" ]; then if [ -d "ags" ]; then
printf "${NOTE} Removing existing ags folder...\n" printf "${NOTE} Removing existing ags directory...\n"
rm -rf "ags" rm -rf "ags"
fi fi

View File

@@ -32,7 +32,7 @@ done
# Check if the directory exists and delete it if present # Check if the directory exists and delete it if present
if [ -d "GTK-themes-icons" ]; then if [ -d "GTK-themes-icons" ]; then
echo "$NOTE GTK themes and Icons folder exist..deleting..." 2>&1 | tee -a "$LOG" echo "$NOTE GTK themes and Icons directory exist..deleting..." 2>&1 | tee -a "$LOG"
rm -rf "GTK-themes-icons" 2>&1 | tee -a "$LOG" rm -rf "GTK-themes-icons" 2>&1 | tee -a "$LOG"
fi fi
@@ -42,7 +42,7 @@ if git clone --depth=1 https://github.com/JaKooLit/GTK-themes-icons.git ; then
chmod +x auto-extract.sh chmod +x auto-extract.sh
./auto-extract.sh ./auto-extract.sh
cd .. cd ..
echo "$OK Extracted GTK Themes & Icons to ~/.icons & ~/.themes folders" 2>&1 | tee -a "$LOG" echo "$OK Extracted GTK Themes & Icons to ~/.icons & ~/.themes directories" 2>&1 | tee -a "$LOG"
else else
echo "$ERROR Download failed for GTK themes and Icons.." 2>&1 | tee -a "$LOG" echo "$ERROR Download failed for GTK themes and Icons.." 2>&1 | tee -a "$LOG"
fi fi

View File

@@ -37,7 +37,7 @@ if [ -n "$ISAUR" ]; then
else else
printf "\n%s - Installing ${SKY_BLUE}$pkg${RESET} from AUR\n" "${NOTE}" printf "\n%s - Installing ${SKY_BLUE}$pkg${RESET} from AUR\n" "${NOTE}"
# Check if folder exists and remove it # Check if directory exists and remove it
if [ -d "$pkg" ]; then if [ -d "$pkg" ]; then
rm -rf "$pkg" rm -rf "$pkg"
fi fi
@@ -45,7 +45,7 @@ fi
cd $pkg || { printf "%s - Failed to enter $pkg directory\n" "${ERROR}"; exit 1; } cd $pkg || { printf "%s - Failed to enter $pkg directory\n" "${ERROR}"; exit 1; }
makepkg -si --noconfirm 2>&1 | tee -a "$LOG" || { printf "%s - Failed to install ${YELLOW}$pkg${RESET} from AUR\n" "${ERROR}"; exit 1; } makepkg -si --noconfirm 2>&1 | tee -a "$LOG" || { printf "%s - Failed to install ${YELLOW}$pkg${RESET} from AUR\n" "${ERROR}"; exit 1; }
# moving install logs in to Install-Logs folder # moving install logs in to Install-Logs directory
mv install*.log ../Install-Logs/ || true mv install*.log ../Install-Logs/ || true
cd .. cd ..
fi fi

View File

@@ -37,7 +37,7 @@ if [ -n "$ISAUR" ]; then
else else
printf "\n%s - Installing ${SKY_BLUE}$pkg${RESET} from AUR\n" "${NOTE}" printf "\n%s - Installing ${SKY_BLUE}$pkg${RESET} from AUR\n" "${NOTE}"
# Check if folder exists and remove it # Check if directory exists and remove it
if [ -d "$pkg" ]; then if [ -d "$pkg" ]; then
rm -rf "$pkg" rm -rf "$pkg"
fi fi
@@ -45,7 +45,7 @@ fi
cd $pkg || { printf "%s - Failed to enter $pkg directory\n" "${ERROR}"; exit 1; } cd $pkg || { printf "%s - Failed to enter $pkg directory\n" "${ERROR}"; exit 1; }
makepkg -si --noconfirm 2>&1 | tee -a "$LOG" || { printf "%s - Failed to install ${YELLOW}$pkg${RESET} from AUR\n" "${ERROR}"; exit 1; } makepkg -si --noconfirm 2>&1 | tee -a "$LOG" || { printf "%s - Failed to install ${YELLOW}$pkg${RESET} from AUR\n" "${ERROR}"; exit 1; }
# moving install logs in to Install-Logs folder # moving install logs in to Install-Logs directory
mv install*.log ../Install-Logs/ || true mv install*.log ../Install-Logs/ || true
cd .. cd ..
fi fi