diff options
| author | Tyler Hoang <tyler@tylerhoang.xyz> | 2021-11-06 21:07:20 -0700 |
|---|---|---|
| committer | Tyler Hoang <tyler@tylerhoang.xyz> | 2021-11-06 21:07:20 -0700 |
| commit | 3e5458c95c50c06523de4c3cd8dc425f67d4dea5 (patch) | |
| tree | 4d0d6e8e4c8d41b3b3e1b9072ce9b9503d8cd48f /cron/crontog | |
initial commit
Diffstat (limited to 'cron/crontog')
| -rwxr-xr-x | cron/crontog | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/cron/crontog b/cron/crontog new file mode 100755 index 0000000..5aba5e6 --- /dev/null +++ b/cron/crontog @@ -0,0 +1,6 @@ +#!/bin/sh + +# Toggles all cronjobs off/on. +# Stores disabled crontabs in ~/.consaved until restored. + +([ -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.") |
