summaryrefslogtreecommitdiffstats
path: root/.local/bin/cron/crontog
blob: 9889d76946559cea6705d2e04183abbd2fb19440 (plain) (blame)
1
2
3
4
5
6
#!/bin/sh

# Toggles all cronjobs off/on.
# Stores disabled crontabs in ~/.consaved until restored.

([ -f $XDG_CONFIG_HOME/cronsaved ] && crontab - < $XDG_CONFIG_HOME/cronsaved  && rm $XDG_CONFIG_HOME/cronsaved && notify-send "🕓 Cronjobs re-enabled.") || ( crontab -l > $XDG_CONFIG_HOME/cronsaved && crontab -r && notify-send "🕓 Cronjobs saved and disabled.")