Add systemd timer and desktop notifications #3

Merged
schaefera merged 6 commits from worktree-add-systemd-timer into master 2026-09-20 08:02:07 +00:00
Showing only changes of commit 1f84460a65 - Show all commits

View file

@ -1,14 +1,17 @@
# Periodic, not persistent (see docs/SPEC.md > Vision): no catch-up burst
# for missed ticks. The laptop is only on while logged in, so the user
# manager starting (= login) is what matters: OnStartupSec runs a check
# right after login (10s, so the session bus and network are up) instead of waiting up to an hour for the next tick.
# right after login (10s, so the session bus and network are up) instead
# of waiting up to an hour for the next tick.
#
# No RandomizedDelaySec: it applies to every trigger, including the
# startup one, and a single machine has no herd to spread out anyway.
[Unit]
Description=Run pkgwatch hourly
Description=Run pkgwatch at login and hourly
[Timer]
OnStartupSec=10s
OnCalendar=hourly
RandomizedDelaySec=5min
Persistent=false
[Install]