From 6c6973180600f26af1aa172bf9fdbda087ca6c83 Mon Sep 17 00:00:00 2001 From: David Schroeder Date: Mon, 25 Dec 2023 11:40:25 -0600 Subject: [PATCH] Update status.inc --- inc/status.inc | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/inc/status.inc b/inc/status.inc index a862ffa0..687c8fc0 100755 --- a/inc/status.inc +++ b/inc/status.inc @@ -902,7 +902,14 @@ STATUS_SCANTIMES(){ else dt=" " fi - echo -e "${idsCL[White]} ${dt} (${scantime}s) ${idsCL[Yellow]}$(SHOW_TIME ${scantime} s)${idsCL[Default]}" + echo -en "${idsCL[White]} ${dt} (${scantime}s) ${idsCL[Yellow]}$(SHOW_TIME ${scantime} s) " + if [ ${scantime} -ge 30 ] && [ ${scantime} -le 60 ]; then + echo -e "<-- Replication Run${idsCL[Default]}" + elif [ ${scantime} -gt 60 ]; then + echo -e "${idsCL[LightRed]}<-- Extreme Run${idsCL[Default]}" + else + echo + fi done fi fi