From d19cb4ef92f647cc3f26082c0cb9cf02c16d1c0b Mon Sep 17 00:00:00 2001 From: Or Bin Date: Sat, 2 Nov 2024 01:31:51 +0200 Subject: [PATCH] Update sleep reminder settings --- tasks/configuration.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/tasks/configuration.yml b/tasks/configuration.yml index 1fc218c..8c939e3 100644 --- a/tasks/configuration.yml +++ b/tasks/configuration.yml @@ -62,17 +62,17 @@ - name: Add notify_sleep.sh to cron ansible.builtin.cron: - name: notify_sleep 12 AM - minute: "*/15" - hour: "0" + name: "notify_sleep 23:XX" + minute: "*/30" + hour: "23" job: "{{ notify_sleep_script.dest }}" when: computer_type == "personal" - name: Add notify_sleep.sh to cron ansible.builtin.cron: - name: notify_sleep 1-4 AM + name: "notify_sleep 00:XX-04:XX" minute: "*/5" - hour: "1-4" + hour: "0-4" job: "{{ notify_sleep_script.dest }}" when: computer_type == "personal"