dotfiles/system/.config/cron/crontab
Severin Kaderli 4d0e12faeb
Update crontab
Signed-off-by: Severin Kaderli <severin@kaderli.dev>
2019-07-01 20:16:13 +02:00

20 lines
526 B
Text

# SCRIPT NAME:
# .config/cron/crontab
#
# AUTHOR:
# Severin Kaderli <severin@kaderli.dev>
#
# DESCRIPTION:
# This file contains my cronjobs.
#
# USAGE:
# This file is loaded on boot by crontab.
# Synchronize Google Drive every 15 minutes
0/15 * * * * $HOME/.local/bin/sync-drive 2>> $HOME/.local/log/cron.log
# Synchronize notes every 10 minutes
2/10 * * * * $HOME/.local/bin/sync-notes 2>> $HOME/.local/log/cron.log
# Synchronize tasks every 5 minutes
0/5 * * * * $HOME/.local/bin/sync-tasks 2>> $HOME/.local/log/cron.log