- The Makefile now includes installation instructions for Debian/Ubuntu based systems. - The README has been updated with more detailed descriptions of the script's purpose, how it works, and how to use it. - The service file has been added to manage the remindme_caldav daemon on a systemd-based system.
15 lines
320 B
Desktop File
15 lines
320 B
Desktop File
[Unit]
|
|
Description=Calendar Alerting Daemon
|
|
After=network.target
|
|
StartLimitIntervalSec=0
|
|
|
|
[Service]
|
|
Type=simple
|
|
Restart=always
|
|
RestartSec=1
|
|
User=root
|
|
ExecStart=/opt/remindme_caldav/.venv/bin/python3 /opt/remindme_caldav/remindme_caldav.py --config /etc/remindme_caldav/config.toml
|
|
|
|
[Install]
|
|
WantedBy=multi-user.target
|
|
|