dotfiles/system/.config/cron/crontab
Severin Kaderli 1a130f03f8
Update crontab
Signed-off-by: Severin Kaderli <severin@kaderli.dev>
2019-06-18 20:23:01 +02:00

23 lines
653 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
*/15 * * * * $HOME/.local/bin/sync-drive >> $HOME/.local/log/cron.log 2>&1
# Synchronize notes every 10 minutes
*/10 * * * * $HOME/.local/bin/sync-notes >> $HOME/.local/log/cron.log 2>&1
# Synchronize tasks every 5 minutes
*/5 * * * * $HOME/.local/bin/sync-tasks >> $HOME/.local/log/cron.log 2>&1
# Synchronize rss feeds every 15 minutes
*/15 * * * * $HOME/.local/bin/rss-sync >> $HOME/.local/log/cron.log 2>&1