Skip to content

Commit

Permalink
Update sleep reminder settings
Browse files Browse the repository at this point in the history
  • Loading branch information
OrBin committed Nov 1, 2024
1 parent 4142359 commit d19cb4e
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions tasks/configuration.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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"

Expand Down

0 comments on commit d19cb4e

Please sign in to comment.