diff options
author | Alan Pearce | 2024-04-12 14:02:40 +0200 |
---|---|---|
committer | Alan Pearce | 2024-04-12 14:02:40 +0200 |
commit | 158681f4edd81d558024636dfe2bf0f03366c667 (patch) | |
tree | 4e77333e305768a085cfb071b4c778e6d4c493b1 | |
parent | bb05e47f6022227c64aad94677f8da9ef8ae227c (diff) | |
download | website-158681f4edd81d558024636dfe2bf0f03366c667.tar.lz website-158681f4edd81d558024636dfe2bf0f03366c667.tar.zst website-158681f4edd81d558024636dfe2bf0f03366c667.zip |
Keep awake for longer
-rw-r--r-- | src/sleep.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/sleep.ts b/src/sleep.ts index 94d7547..663d472 100644 --- a/src/sleep.ts +++ b/src/sleep.ts @@ -4,5 +4,5 @@ export function keepAwake() { if (sleepTimeout) clearTimeout(sleepTimeout); sleepTimeout = setTimeout(function () { process.exit(0); - }, 60_000); + }, 300_000); } |