From 0455c85b0c20aa0d54df91a8fc31e2e476d8ab83 Mon Sep 17 00:00:00 2001 From: saxnot Date: Sat, 30 May 2026 18:14:40 +0200 Subject: [PATCH] README now documents --time instead of outdated --hours --- README.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index ee843a9..14abbde 100644 --- a/README.md +++ b/README.md @@ -95,7 +95,7 @@ If location services are turned off when the request arrives, the phone posts a ### Subscribe (periodic updates) ``` -phonetrack subscribe [--dist N] [--freq N] [--hours N] +phonetrack subscribe [--dist N] [--freq N] [--time N] ``` Starts a recurring location subscription. The phone sends an immediate fix, then continues sending updates on a schedule until the subscription expires or you cancel it. @@ -104,7 +104,7 @@ Starts a recurring location subscription. The phone sends an immediate fix, then |--------|---------|---------| | `--dist N` | 200 m | Only send an update if you have moved more than N metres since the last one | | `--freq N` | 15 min | Send an update at most every N minutes (minimum: 1) | -| `--hours N` | 4 h | Cancel the subscription automatically after N hours | +| `--time N` | 4 h | Cancel the subscription automatically after N hours | **Examples:** @@ -114,12 +114,12 @@ phonetrack subscribe Updates every 15 minutes for 4 hours, skipped if you haven't moved 200 m. ``` -phonetrack subscribe --freq 5 --hours 1 +phonetrack subscribe --freq 5 --time 1 ``` Updates every 5 minutes for 1 hour. ``` -phonetrack subscribe --dist 0 --freq 10 --hours 8 +phonetrack subscribe --dist 0 --freq 10 --time 8 ``` Updates every 10 minutes for 8 hours regardless of movement.