Go to file
Moritz Böhme 323c2fba18
fix: add missing line break
2023-08-26 09:43:59 +02:00
src fix: add missing line break 2023-08-26 09:43:59 +02:00
.envrc
.gitignore
Cargo.lock
Cargo.toml
README.md
default.nix
flake.lock build: update inputs 2023-08-26 09:40:12 +02:00
flake.nix build: update inputs 2023-08-26 09:40:12 +02:00
shell.nix

README.md

time(rs)

A simple Rust program that implements a timer daemon and CLI. It allows users to interact with timers by adding, removing, and listing them. The daemon listens for incoming connections and handles commands sent by the CLI. The CLI provides a convenient interface for users to interact with the daemon.

Example Usage

Here is an example of how the timer daemon and CLI can be used together:

  1. Start the timer daemon by running the command timers daemon.
  2. In a separate terminal, use the CLI to interact with the timer daemon:
    • Add a timer: timers add <name> <duration_seconds>
    • List timers: timers list
    • Remove a timer: timers remove <name>

The timer daemon will receive the commands from the CLI and perform the requested actions. The CLI will display the responses from the timer daemon.