diff options
| author | Xavier Del Campo Romero <xavi.dcr@tutanota.com> | 2023-01-07 11:35:13 +0100 |
|---|---|---|
| committer | Xavier Del Campo Romero <xavi.dcr@tutanota.com> | 2023-01-07 11:35:13 +0100 |
| commit | 36df069e73f042a41c84e90b4cc879a2941894ee (patch) | |
| tree | a03115defa7398fa2607ab5a94c1a859d538e9c3 | |
| parent | 4e6fa06ea036129c4a815fc5d4494556578624e1 (diff) | |
| download | temp-throttle-36df069e73f042a41c84e90b4cc879a2941894ee.tar.gz | |
temp_throttle.sh: change delay to 0.5s
| -rwxr-xr-x | temp_throttle.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/temp_throttle.sh b/temp_throttle.sh index 3f02d9e..b7a98f1 100755 --- a/temp_throttle.sh +++ b/temp_throttle.sh @@ -151,5 +151,5 @@ while true; do elif [ $TEMP -le $LOW_TEMP ]; then # Unthrottle if cool. unthrottle fi - sleep 3 # The amount of time between checking temperatures. + sleep 0.5 # The amount of time between checking temperatures. done |
