Adds setup for hour reminder

This commit is contained in:
Michel Fedde 2025-07-07 22:39:51 +02:00
parent 869b01ee34
commit cf87410312
2 changed files with 10 additions and 1 deletions

View file

@ -0,0 +1,9 @@
#!/bin/env sh
setupHourReminders() {
systemctl --user daemon-reload
systemctl --user enable hour-reminder.timer
systemctl --user start hour-reminder.timer
}
addActions setupHourReminders

View file

@ -111,5 +111,5 @@ echo "# Executing actions... (${#actions[@]})"
for action in "${actions[@]}"; for action in "${actions[@]}";
do do
echo "==> Now executing: ${action}" echo "==> Now executing: ${action}"
$action $action > /dev/null
done done