Update status.inc

This commit is contained in:
2023-12-25 11:40:25 -06:00
parent a59b80c361
commit 6c69731806

View File

@@ -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