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