dotfiles/.local/bin/cron/crontog

7 lines
451 B
Plaintext
Raw Normal View History

2020-07-04 14:23:27 +02:00
#!/bin/sh
# Toggles all cronjobs off/on.
2023-10-12 15:12:12 +02:00
# Stores disabled crontabs in ~/.config/cronsaved until restored.
2020-07-04 14:23:27 +02:00
2023-10-12 15:12:12 +02:00
([ -f "${XDG_CONFIG_HOME:-$HOME/.config}"/cronsaved ] && crontab - < "${XDG_CONFIG_HOME:-$HOME/.config}"/cronsaved && rm "${XDG_CONFIG_HOME:-$HOME/.config}"/cronsaved && notify-send "🕓 Cronjobs re-enabled.") || ( crontab -l > "${XDG_CONFIG_HOME:-$HOME/.config}"/cronsaved && crontab -r && notify-send "🕓 Cronjobs saved and disabled.")