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