diff --git a/includes/gs-colors.sh b/includes/gs-colors.sh index f7e7888..32e5d23 100644 --- a/includes/gs-colors.sh +++ b/includes/gs-colors.sh @@ -21,6 +21,7 @@ GOOD="[${GREEN}✓${NC}]" STAT="[${CYAN}e${NC}]" INFO="[${YELLOW}i${NC}]" NEED="[${BLUE}?${NC}]" +LOGO="[${PURPLE}∞${NC}]" ## Echo Stack ### Informative @@ -53,6 +54,11 @@ function echo_need { echo -en "${NEED} ${MESSAGE}: " } +### Gravity Sync Logo +function echo_grav { + echo -e "${LOGO} ${BOLD}${MESSAGE}${NC}" +} + ### Lines function echo_lines { echo -e "========================================================" diff --git a/includes/gs-core.sh b/includes/gs-core.sh index 599f884..385e36b 100644 --- a/includes/gs-core.sh +++ b/includes/gs-core.sh @@ -66,7 +66,7 @@ function ph_type { # Standard Output function start_gs { MESSAGE="${PROGRAM} ${VERSION} Executing" - echo_info + echo_grav cd ${LOCAL_FOLDR} import_gs @@ -92,7 +92,7 @@ function start_gs { # Standard Output No Config function start_gs_noconfig { MESSAGE="${PROGRAM} ${VERSION} Executing" - echo_info + echo_grav cd ${LOCAL_FOLDR} MESSAGE="Evaluating Arguments" diff --git a/includes/gs-exit.sh b/includes/gs-exit.sh index 014d3ce..c5a6245 100644 --- a/includes/gs-exit.sh +++ b/includes/gs-exit.sh @@ -15,7 +15,7 @@ function exit_nochange { MESSAGE="${PROGRAM} ${TASKTYPE} Aborting ($((SCRIPT_END-SCRIPT_START)) seconds)" fi - echo_info + echo_grav exit 0 } @@ -30,7 +30,7 @@ function exit_withchange { MESSAGE="${PROGRAM} ${TASKTYPE} Completed ($((SCRIPT_END-SCRIPT_START)) seconds)" fi - echo_info + echo_grav exit 0 }