From 0ce0d18ab8578634ccf42ed0d17906f0332b6a5d Mon Sep 17 00:00:00 2001 From: Vincent Riquer Date: Thu, 23 Jan 2025 00:26:48 +0100 Subject: [PATCH] atom: indent fix --- atom | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/atom b/atom index 993c32c..b88bc65 100755 --- a/atom +++ b/atom @@ -712,19 +712,19 @@ do then concurrency="$fixed_workers" else - if [ -z "$quit" ] \ - && (( ! pause )) \ - && (( $(date +%s)-concurrencychange >= loadinterval )) - then - if (( concurrency > 1 )) \ - && (( load > maxload )) + if [ -z "$quit" ] \ + && (( ! pause )) \ + && (( $(date +%s)-concurrencychange >= loadinterval )) then - concurrencychange=$(date +%s) - (( --concurrency )) - elif (( load < maxload )) && (( active > concurrency - 1 )) - then - concurrencychange=$(date +%s) - (( ++concurrency )) + if (( concurrency > 1 )) \ + && (( load > maxload )) + then + concurrencychange=$(date +%s) + (( --concurrency )) + elif (( load < maxload )) && (( active > concurrency - 1 )) + then + concurrencychange=$(date +%s) + (( ++concurrency )) fi fi fi