From 9c6de8da54333e5e412589d6e0b1d2e37e7f5f06 Mon Sep 17 00:00:00 2001 From: JaKooLit Date: Thu, 13 Mar 2025 23:16:53 +0900 Subject: [PATCH] replaced folders//folder with directories/directory --- assets/.zshrc | 2 +- install-scripts/ags.sh | 4 ++-- install-scripts/dotfiles.sh | 2 +- install-scripts/fonts.sh | 4 ++-- install-scripts/gtk_themes.sh | 4 ++-- install-scripts/hypridle.sh | 2 +- install-scripts/hyprlang.sh | 2 +- install-scripts/hyprlock.sh | 2 +- install-scripts/rofi-wayland.sh | 2 +- install-scripts/swww.sh | 2 +- 10 files changed, 13 insertions(+), 13 deletions(-) diff --git a/assets/.zshrc b/assets/.zshrc index afe2a99..1565342 100644 --- a/assets/.zshrc +++ b/assets/.zshrc @@ -22,7 +22,7 @@ source $ZSH/oh-my-zsh.sh # fastfetch. Will be disabled if above colorscript was chosen to install 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 l='ls -l' alias la='ls -a' diff --git a/install-scripts/ags.sh b/install-scripts/ags.sh index 5eaadc2..9d7b6d5 100755 --- a/install-scripts/ags.sh +++ b/install-scripts/ags.sh @@ -78,9 +78,9 @@ sudo npm install --global typescript 2>&1 | tee -a "$LOG" # ags v1 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 - printf "${NOTE} Removing existing ags folder...\n" + printf "${NOTE} Removing existing ags directory...\n" rm -rf "ags" fi diff --git a/install-scripts/dotfiles.sh b/install-scripts/dotfiles.sh index 7c73e49..5980b62 100755 --- a/install-scripts/dotfiles.sh +++ b/install-scripts/dotfiles.sh @@ -56,7 +56,7 @@ if curl -L "$tarball_url" -o "Hyprland-Dots-${specific_version}.tar.gz"; then chmod +x copy.sh ./copy.sh - echo -e "${OK} Hyprland-Dots-${specific_version} release downloaded, extracted, and processed successfully. Check JaKooLit-Hyprland-Dots folder for more detailed install logs" 2>&1 | tee -a "../Install-Logs/install-$(date +'%d-%H%M%S')_dotfiles.log" + echo -e "${OK} Hyprland-Dots-${specific_version} release downloaded, extracted, and processed successfully. Check JaKooLit-Hyprland-Dots directory for more detailed install logs" 2>&1 | tee -a "../Install-Logs/install-$(date +'%d-%H%M%S')_dotfiles.log" else echo -e "${ERROR} Failed to download Hyprland-Dots-${specific_version} release." 2>&1 | tee -a "../Install-Logs/install-$(date +'%d-%H%M%S')_dotfiles.log" exit 1 diff --git a/install-scripts/fonts.sh b/install-scripts/fonts.sh index 8ea46c6..af29604 100755 --- a/install-scripts/fonts.sh +++ b/install-scripts/fonts.sh @@ -46,13 +46,13 @@ for ((ATTEMPT = 1; ATTEMPT <= MAX_ATTEMPTS; ATTEMPT++)); do sleep 2 done -# Check if the JetBrainsMono folder exists and delete it if it does +# Check if the JetBrainsMono directory exists and delete it if it does if [ -d ~/.local/share/fonts/JetBrainsMonoNerd ]; then rm -rf ~/.local/share/fonts/JetBrainsMonoNerd 2>&1 | tee -a "$LOG" fi mkdir -p ~/.local/share/fonts/JetBrainsMonoNerd 2>&1 | tee -a "$LOG" -# Extract the new files into the JetBrainsMono folder and log the output +# Extract the new files into the JetBrainsMono directory and log the output tar -xJkf JetBrainsMono.tar.xz -C ~/.local/share/fonts/JetBrainsMonoNerd 2>&1 | tee -a "$LOG" # Fantasque Mono Nerd Font diff --git a/install-scripts/gtk_themes.sh b/install-scripts/gtk_themes.sh index 5b7e1a7..e7cc6fd 100755 --- a/install-scripts/gtk_themes.sh +++ b/install-scripts/gtk_themes.sh @@ -31,7 +31,7 @@ done # Check if the directory exists and delete it if present 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" fi @@ -41,7 +41,7 @@ if git clone --depth=1 https://github.com/JaKooLit/GTK-themes-icons.git ; then chmod +x auto-extract.sh ./auto-extract.sh 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 echo "$ERROR Download failed for GTK themes and Icons.." 2>&1 | tee -a "$LOG" fi diff --git a/install-scripts/hypridle.sh b/install-scripts/hypridle.sh index a9710d0..b07f942 100755 --- a/install-scripts/hypridle.sh +++ b/install-scripts/hypridle.sh @@ -37,7 +37,7 @@ for PKG1 in "${idle[@]}"; do fi done -# Check if hypridle folder exists and remove it +# Check if hypridle directory exists and remove it if [ -d "hypridle" ]; then rm -rf "hypridle" fi diff --git a/install-scripts/hyprlang.sh b/install-scripts/hyprlang.sh index ad8d0ef..c043955 100755 --- a/install-scripts/hyprlang.sh +++ b/install-scripts/hyprlang.sh @@ -26,7 +26,7 @@ MLOG="install-$(date +%d-%H%M%S)_hyprlang2.log" # Installation of dependencies printf "\n%s - Installing ${YELLOW}hyprlang dependencies${RESET} .... \n" "${INFO}" -# Check if hyprlang folder exists and remove it +# Check if hyprlang directory exists and remove it if [ -d "hyprlang" ]; then rm -rf "hyprlang" fi diff --git a/install-scripts/hyprlock.sh b/install-scripts/hyprlock.sh index e2b2437..f220076 100755 --- a/install-scripts/hyprlock.sh +++ b/install-scripts/hyprlock.sh @@ -38,7 +38,7 @@ for PKG1 in "${lock[@]}"; do re_install_package "$PKG1" "$LOG" done -# Check if hyprlock folder exists and remove it +# Check if hyprlock directory exists and remove it if [ -d "hyprlock" ]; then rm -rf "hyprlock" fi diff --git a/install-scripts/rofi-wayland.sh b/install-scripts/rofi-wayland.sh index d0d6c66..25cce16 100755 --- a/install-scripts/rofi-wayland.sh +++ b/install-scripts/rofi-wayland.sh @@ -64,7 +64,7 @@ printf "\n%.0s" {1..2} # Clone and build rofi - wayland printf "${NOTE} Installing ${SKY_BLUE}rofi-wayland${RESET}...\n" -# Check if rofi folder exists +# Check if rofi directory exists if [ -d "rofi-$rofi_tag" ]; then rm -rf "rofi-$rofi_tag" fi diff --git a/install-scripts/swww.sh b/install-scripts/swww.sh index 17ae1b5..1d4f493 100755 --- a/install-scripts/swww.sh +++ b/install-scripts/swww.sh @@ -47,7 +47,7 @@ done printf "\n%.0s" {1..2} -# Check if swww folder exists +# Check if swww directory exists if [ -d "swww" ]; then cd swww || exit 1 git pull origin main 2>&1 | tee -a "$MLOG"