Raised minimum to 2.0.

This commit is contained in:
retoor 2024-12-11 20:58:01 +01:00
parent 2d4cae33f7
commit df74604bfa
2 changed files with 1 additions and 1 deletions

BIN
dot

Binary file not shown.

2
dot.c
View File

@ -17,7 +17,7 @@ void print_load() {
perror("getloadavg failed");
return;
}
if(loadavg[0] > 1.0){
if(loadavg[0] > 2.0){
int result = system("ps aux");
(void)result;
}