diff options
author | EuAndreh <eu@euandre.org> | 2022-11-24 21:48:54 -0300 |
---|---|---|
committer | EuAndreh <eu@euandre.org> | 2022-11-24 21:48:54 -0300 |
commit | c696605a2c47f9404f1dabf1d212981fdb6692eb (patch) | |
tree | 5bef798596d3ffe15fbe8c986185fa2c68dc631c /etc/sh/cronjob.sh | |
parent | etc/guix/home.scm: Remove previous generation of email tools (diff) | |
download | dotfiles-c696605a2c47f9404f1dabf1d212981fdb6692eb.tar.gz dotfiles-c696605a2c47f9404f1dabf1d212981fdb6692eb.tar.xz |
etc/sh/cronjob.sh: Run cronjobs with increased niceness
Diffstat (limited to 'etc/sh/cronjob.sh')
-rwxr-xr-x | etc/sh/cronjob.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/etc/sh/cronjob.sh b/etc/sh/cronjob.sh index 0569b44..3ab071b 100755 --- a/etc/sh/cronjob.sh +++ b/etc/sh/cronjob.sh @@ -71,4 +71,4 @@ set +e set -e CMD="$*" -with-email -s "$CMD" -- "$@" 1>>"$XDG_LOG_HOME"/euandreh/mcron.log 2>&1 +with-email -s "$CMD" -- nice -n15 "$@" 1>>"$XDG_LOG_HOME"/euandreh/mcron.log 2>&1 |