From cfc3bbd4b66ac2caf573258a6dd5a54a7ea24c50 Mon Sep 17 00:00:00 2001 From: JaKooLit Date: Thu, 6 Feb 2025 01:33:59 +0900 Subject: [PATCH] color coding & script tweaks --- install-scripts/sddm.sh | 2 +- install-scripts/zsh.sh | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/install-scripts/sddm.sh b/install-scripts/sddm.sh index 7872205..0e489c6 100755 --- a/install-scripts/sddm.sh +++ b/install-scripts/sddm.sh @@ -67,7 +67,7 @@ while [ "$valid_input" != true ]; do read -n 1 -r -p "${CAT} OPTIONAL - Would you like to install ${YELLOW}additional SDDM themes?${RESET} (y/n)" install_sddm_theme fi if [[ $install_sddm_theme =~ ^[Yy]$ ]]; then - printf "\n%s - Installing ${BLUE}Additional SDDM Theme${RESET}\n" "${NOTE}" + printf "\n%s - Installing ${SKY_BLUE}Additional SDDM Theme${RESET}\n" "${NOTE}" # Check if /usr/share/sddm/themes/sequoia_2 exists and remove if it does if [ -d "/usr/share/sddm/themes/sequoia_2" ]; then diff --git a/install-scripts/zsh.sh b/install-scripts/zsh.sh index 044451b..f4b6c28 100755 --- a/install-scripts/zsh.sh +++ b/install-scripts/zsh.sh @@ -79,13 +79,13 @@ if command -v zsh >/dev/null; then if [ ! -d "$HOME/.oh-my-zsh/custom/plugins/zsh-autosuggestions" ]; then git clone https://github.com/zsh-users/zsh-autosuggestions ${ZSH_CUSTOM:-$HOME/.oh-my-zsh/custom}/plugins/zsh-autosuggestions || true else - echo "${INFO} Directory zsh-autosuggestions already exists. Skipping cloning." 2>&1 | tee -a "$LOG" + echo "${INFO} Directory zsh-autosuggestions already exists. Cloning Skipped." 2>&1 | tee -a "$LOG" fi if [ ! -d "$HOME/.oh-my-zsh/custom/plugins/zsh-syntax-highlighting" ]; then git clone https://github.com/zsh-users/zsh-syntax-highlighting.git ${ZSH_CUSTOM:-$HOME/.oh-my-zsh/custom}/plugins/zsh-syntax-highlighting || true else - echo "${INFO} Directory zsh-syntax-highlighting already exists. Skipping cloning." 2>&1 | tee -a "$LOG" + echo "${INFO} Directory zsh-syntax-highlighting already exists. Cloning Skipped." 2>&1 | tee -a "$LOG" fi # Check if ~/.zshrc and .zprofile exists, create a backup, and copy the new configuration