Compare commits

...

2 Commits

Author SHA1 Message Date
73eb6adb4a Made CPU and MEM thresholds be 1000ms 2023-08-12 16:19:51 -04:00
345de155fa Set return status of is_clear() to booleans 2023-08-12 16:19:01 -04:00
2 changed files with 3 additions and 3 deletions

View File

@ -167,9 +167,9 @@ is_clear () {
if [[ ${avg10} -lt ${clear_threshold} ]]; then
return 0
true
else
return 1
false
fi
}