Add emoji icons to feature list and fix typos in README
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
parent
8a3939bf11
commit
1655a64ab3
1 changed files with 13 additions and 0 deletions
13
README.md
13
README.md
|
|
@ -6,6 +6,14 @@
|
|||
|
||||
A cron/at-like interface for systemd user timers. Create, manage, and monitor scheduled jobs without writing unit files by hand.
|
||||
|
||||
Because you want to use systemd, but miss the ease of ~crontab~`systab -e`!
|
||||
|
||||
- 🚀 create one-time or recurring jobs with one command
|
||||
- ✏️ use your $EDITOR to manage `systab` timers in a single line format
|
||||
- 📊 quickly see the status of your timers
|
||||
- 📋 access the logs of timers
|
||||
- 💪 enable and disable timers
|
||||
|
||||
<table>
|
||||
<tr>
|
||||
<td width="33%"><img src="demo/quickstart.gif" alt="Quick start demo"></td>
|
||||
|
|
@ -193,8 +201,13 @@ After cloning, enable the pre-commit hook (runs ShellCheck + tests):
|
|||
git config core.hooksPath .githooks
|
||||
```
|
||||
|
||||
|
||||
## FAQ
|
||||
|
||||
Why this wrapper?
|
||||
|
||||
I was missing the simplicity of `at` and `crontab` commands. `systemd` has many features and benefits that those tools do not have, but convenience for the user to set a quick timer is not one of them.
|
||||
|
||||
**What's the difference between `-c` and `-f`?**
|
||||
|
||||
`-f` validates that the file exists and is executable at creation time, catching typos and permission issues early. With `-c`, errors only surface when systemd runs the job later (visible via `systab -L`). Under the hood, both produce the same `ExecStart` line.
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue