chore: Rename project to service-update-alerts

Update project metadata, docs, and systemd unit names to match the new service-update-alerts naming.
This commit is contained in:
Jeena 2026-03-12 15:50:38 +00:00
parent 413766ed2b
commit 501a84e0a9
8 changed files with 19 additions and 19 deletions

View file

@ -1,4 +1,4 @@
# check-for-updates
# service-update-alerts
Small Python script to compare running service versions against upstream releases.
@ -57,14 +57,14 @@ Copy the unit files and enable the timer:
```bash
mkdir -p ~/.config/systemd/user
cp systemd/check-for-updates.service ~/.config/systemd/user/
cp systemd/check-for-updates.timer ~/.config/systemd/user/
cp systemd/service-update-alerts.service ~/.config/systemd/user/
cp systemd/service-update-alerts.timer ~/.config/systemd/user/
systemctl --user daemon-reload
systemctl --user enable --now check-for-updates.timer
systemctl --user enable --now service-update-alerts.timer
```
View logs:
```bash
journalctl --user -u check-for-updates.service
journalctl --user -u service-update-alerts.service
```