From 153bbb5e57d24807af34c6675d8d7d1cbe5190f6 Mon Sep 17 00:00:00 2001 From: Pocco81 Date: Mon, 17 Jan 2022 22:53:06 -0500 Subject: [PATCH] fix: colors not properly resetting --- resources/meow.sh | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/resources/meow.sh b/resources/meow.sh index 8054018..372b25a 100755 --- a/resources/meow.sh +++ b/resources/meow.sh @@ -7,6 +7,9 @@ BIN_NAME=$(basename "$0") COMMAND_NAME=$1 COMMAND_ARGS=$2 +esc="" +reset="${esc}[0m" + # ----- print kitty ----- # @@ -53,7 +56,7 @@ sub_print () { ;; esac - + echo "${reset}" } @@ -112,4 +115,4 @@ case $COMMAND_NAME in fi ;; -esac \ No newline at end of file +esac