From 7ff81bfd15d8f9ac9357040bb3c7deef092d9e6d Mon Sep 17 00:00:00 2001 From: David Schroeder Date: Wed, 6 Dec 2023 23:37:53 -0600 Subject: [PATCH] Update status.inc --- inc/status.inc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/inc/status.inc b/inc/status.inc index 5d4a324f..59e1d859 100755 --- a/inc/status.inc +++ b/inc/status.inc @@ -831,7 +831,7 @@ STATUS_SCANTIMES(){ IFS=$'\n' read -rd '' -a last_scantimes <<<"${last_scantimes}" unset IFS - echo -e "${idsCL[LightCyan]}Last ${lastscansnum} Scan Times\n${idsCL[Green]}---------------------------------${idsCL[Default]}" + echo -e "${idsCL[LightCyan]}Last ${lastscansnum} Scan Times\n${idsCL[Green]}------------------------------------------${idsCL[Default]}" for scantime in "${last_scantimes[@]}"; do if [[ "${scantime}" = *"~"* ]]; then dt="${scantime%~*}" @@ -839,7 +839,7 @@ STATUS_SCANTIMES(){ else dt=" " fi - echo -e "${idsCL[White]} ${dt} (${scantime}s) $(SHOW_TIME ${scantime} s)${idsCL[Default]}" + echo -e "${idsCL[White]} ${dt} (${scantime}s) ${idsCL[LightCyan]}$(SHOW_TIME ${scantime} s)${idsCL[Default]}" done fi fi