Fix monitor problems

Signed-off-by: Severin Kaderli <severin@kaderli.dev>
This commit is contained in:
Severin Kaderli 2019-06-06 21:31:12 +02:00
parent 92c15e04d0
commit be92d7f1b3
Signed by: severinkaderli
GPG key ID: F419F8835B72F0C4
12 changed files with 149 additions and 128 deletions

View file

@ -11,16 +11,16 @@
# This file is loaded on boot by crontab.
# Synchronize Google Drive every 15 minutes
*/15 * * * * grive -d -p $HOME/documents/ >> $HOME/.local/log/cron.log
*/15 * * * * grive -d -p $HOME/documents/ >> $HOME/.local/log/cron.log 2>&1
# Sync pacman databases every 15 minutes
*/15 * * * * sudo $HOME/.local/bin/sync-packages >> $HOME/.local/log/cron.log
*/15 * * * * sudo $HOME/.local/bin/sync-packages >> $HOME/.local/log/cron.log 2>&1
# Synchronize notes every 15 minutes
*/15 * * * * $HOME/.local/bin/sync-notes >> $HOME/.local/log/cron.log
*/15 * * * * $HOME/.local/bin/sync-notes >> $HOME/.local/log/cron.log 2>&1
# Synchronize tasks every 10 minutes
*/10 * * * * $HOME/.local/bin/sync-tasks >> $HOME/.local/log/cron.log
*/10 * * * * $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
*/15 * * * * $HOME/.local/bin/rss-sync >> $HOME/.local/log/cron.log 2>&1