Adds no clear, and updated text to lets-go

This commit is contained in:
Alicia Sykes 2022-10-02 21:47:53 +01:00
parent 9fef020da6
commit 3c8f6ff5c2

View File

@ -2,8 +2,7 @@
###################################################################### ######################################################################
# Lissy93/dotfiles - Remote Runnable Dotfile Setup and Update Script # # Lissy93/dotfiles - Remote Runnable Dotfile Setup and Update Script #
# Licensed under MIT (C) Alicia Sykes 2022 <https://aliciasykes.com> # ######################################################################
# #
# This script will clone + install, or update dotfiles from git # # This script will clone + install, or update dotfiles from git #
# Be sure to read through the repo before running anything here # # Be sure to read through the repo before running anything here #
# For more info, read docs: https://github.com/Lissy93/dotfiles # # For more info, read docs: https://github.com/Lissy93/dotfiles #
@ -12,6 +11,8 @@
# - DOTFILES_REPO - Optionally sets the source repo to be cloned # # - DOTFILES_REPO - Optionally sets the source repo to be cloned #
# - DOTFILES_DIR - Optionally sets the local destination directory # # - DOTFILES_DIR - Optionally sets the local destination directory #
###################################################################### ######################################################################
# Licensed under MIT (C) Alicia Sykes 2022 <https://aliciasykes.com> #
######################################################################
# If not already set, specify dotfiles destination directory and source repo # If not already set, specify dotfiles destination directory and source repo
DOTFILES_DIR="${DOTFILES_DIR:-$HOME/Documents/config/dotfiles}" DOTFILES_DIR="${DOTFILES_DIR:-$HOME/Documents/config/dotfiles}"
@ -19,10 +20,10 @@ DOTFILES_REPO="${DOTFILES_REPO:-https://github.com/lissy93/dotfiles.git}"
# Print starting message # Print starting message
echo -e "\033[1;35m""Lissy93/Dotfiles Installation Script 🧰 echo -e "\033[1;35m""Lissy93/Dotfiles Installation Script 🧰
\033[0;35mThis script will install or update dotfiles from \033[4;35m\ \033[0;35mThis script will install or update specified dotfiles:
${DOTFILES_REPO}\033[0;35m into \033[4;35m${DOTFILES_DIR}\033[0;35m\n\ - From \033[4;35m${DOTFILES_REPO}\033[0;35m
Be sure that you have read and understood config which will be applied. - Into \033[4;35m${DOTFILES_DIR}\033[0;35m
If you don't want to proceed, press Ctrl+C to cancel now...\033[0m\n" Be sure you've read and understood the what will be applied.\033[0m\n"
# If dotfiles not yet present then clone # If dotfiles not yet present then clone
if [[ ! -d "$DOTFILES_DIR" ]]; then if [[ ! -d "$DOTFILES_DIR" ]]; then
@ -33,6 +34,6 @@ fi
# Execute setup or update script # Execute setup or update script
cd "${DOTFILES_DIR}" && \ cd "${DOTFILES_DIR}" && \
chmod +x ./install.sh && \ chmod +x ./install.sh && \
./install.sh ./install.sh --no-clear
# EOF # EOF