diff --git a/scripts/menu/message/markers.sh b/scripts/menu/message/markers.sh index 191f863..dde8687 100755 --- a/scripts/menu/message/markers.sh +++ b/scripts/menu/message/markers.sh @@ -2,44 +2,45 @@ function isSuccessful() { - echo -e "${GREEN}SUCCESS:${NC} $1" + echo -e "${GREEN}✓ Success${NC} $1" } function isError() { - echo -e "${RED}ERROR:${NC} $1" + echo -e "${RED}✗ Error${NC} $1" } function isFatalError() { - echo -e "${RED}ERROR:${NC} $1" + echo -e "${RED}✗ Error${NC} $1" } function isFatalErrorExit() { - echo -e "${RED}ERROR:${NC} $1" + echo -e "${RED}✗ Error${NC} $1" echo "" exit 1 } function isNotice() { - echo -e "${YELLOW}NOTICE:${NC} $1" + echo -e "${YELLOW}! Notice${NC} $1" } +# Interactive markers use the portal chevron ❯ — the moments you "step through". function isQuestion() { - echo -e -n "${BLUE}QUESTION:${NC} $1 " + echo -e -n "${BLUE}❯ Question${NC} $1 " } function isOptionMenu() { - echo -e -n "${PINK}OPTION:${NC} $1" + echo -e -n "${PINK}❯ Option${NC} $1" } function isOption() { - echo -e "${PINK}OPTION:${NC} $1" + echo -e "${PINK}❯ Option${NC} $1" } function isHeader()