diff options
author | Baitinq <30861839+Baitinq@users.noreply.github.com> | 2019-11-06 13:59:25 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-11-06 13:59:25 +0000 |
commit | 23767a965b9de481342849163fc2cfe5b88562ef (patch) | |
tree | c68e9762534b8b5c09a5d01ebc57900033e3017b /modules/voidupdates | |
parent | 521863db533b6ed03bd941c302126cdddab893e2 (diff) | |
parent | 8f5c0b93c6d11760745bc2996909af728dce8592 (diff) |
Merge pull request #12 from thytom/delays
Added delays to the updates modules
Diffstat (limited to 'modules/voidupdates')
-rwxr-xr-x | modules/voidupdates | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/modules/voidupdates b/modules/voidupdates index 229fd42..9411637 100755 --- a/modules/voidupdates +++ b/modules/voidupdates @@ -13,4 +13,6 @@ get_updates() echo "$PREFIX$updates" } -get_updates +if [ $(( 10#$(date '+%M') % 3 )) -eq 0 ] && [ $(( 10#$(date '+%S') )) -eq 5 ]; then + get_updates +fi |