Metadata-Version: 2.4
Name: generate-systemd-timer
Version: 2.0.0
Summary: Generate a systemd unit.timer and unit.service pair
Project-URL: Repository, https://github.com/thomwiggers/systemd-timer-generator
Author-email: Thom Wiggers <thom@thomwiggers.nl>
License-Expression: MIT
Requires-Python: >=3.8
Requires-Dist: jinja2<4,>=3
Requires-Dist: python-editor<2,>=1.0
Requires-Dist: setuptools<76.0,>=70.3
Description-Content-Type: text/markdown

# Systemd generator for timer units

Generates systemd `.timer` and `.service` units to more easily add cron-like tasks to your system.

After editing the units, the tool can install them for you: copy them into
`/etc/systemd/system` or `$HOME/.config/systemd/user` (creating the directory if
needed), run `systemctl daemon-reload`, and enable and start the timer.

## Usage

```sh
generate-systemd-timer unit-name
# Now two editors will pop up to allow you to customize
# Afterwards you'll find unit-name.service and unit-name.timer in the current folder.
# Finally, you'll be asked whether to install, reload and enable the timer.
```
