diff options
| author | Paul Buetow <paul@buetow.org> | 2025-06-28 14:03:08 +0300 |
|---|---|---|
| committer | Paul Buetow <paul@buetow.org> | 2025-06-28 14:03:08 +0300 |
| commit | 1d4ab9102d46f9f1f41946aa600a1404f54696f9 (patch) | |
| tree | 1c813018741fcec1f4a485268fb30b54c30e7395 | |
| parent | 4ee76fb7666bcb20562cf07d95a9e7c03ed0bb86 (diff) | |
docs: add Taskwarrior filter usage examples to README
- Document that tasksamurai accepts Taskwarrior filters as CLI arguments
- Add examples showing various filter usage patterns
- Clarify that any valid Taskwarrior filter can be passed
🤖 Generated with [Claude Code](https://claude.ai/code)
Co-Authored-By: Claude <noreply@anthropic.com>
| -rw-r--r-- | README.md | 14 |
1 files changed, 14 insertions, 0 deletions
@@ -40,6 +40,20 @@ go-task install The second method requires [go-task](https://taskfile.dev/) to be installed. +### Usage + +```bash +# Start with default pending tasks +tasksamurai + +# Start with a Taskwarrior filter +tasksamurai +tag status:pending +tasksamurai project:work due:today +tasksamurai pri:H + +# Any valid Taskwarrior filter can be passed as arguments +``` + ### Flags - `--disco`: start Task Samurai in disco mode, changing the theme every time a task is modified. |
