diff options
| author | Fuwn <[email protected]> | 2023-05-29 23:05:43 +0000 |
|---|---|---|
| committer | Fuwn <[email protected]> | 2023-05-29 23:05:43 +0000 |
| commit | 9623579cb6e231805ca9ec9c245955a926e01cd8 (patch) | |
| tree | 810c959a8907e5e111cbbcde772867f0ae9abe80 /src/bashly.yml | |
| download | nectar-9623579cb6e231805ca9ec9c245955a926e01cd8.tar.xz nectar-9623579cb6e231805ca9ec9c245955a926e01cd8.zip | |
feat: initial releasev0.1.0
Diffstat (limited to 'src/bashly.yml')
| -rw-r--r-- | src/bashly.yml | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/src/bashly.yml b/src/bashly.yml new file mode 100644 index 0000000..80e8132 --- /dev/null +++ b/src/bashly.yml @@ -0,0 +1,34 @@ +name: nectar +help: Command-line Honeyfeed Reader +version: 0.1.0 + +commands: + - name: chapter + alias: c + help: Read a chapter directly in your terminal + dependencies: [gum, curl, pup, pandoc, echo, glow] + + args: + - name: id + help: The ID of the target chapter + required: true + + - name: novel + alias: n + help: Select a chapter to read directly in your terminal + dependencies: [gum, curl, pup, pandoc, echo, glow] + + args: + - name: id + help: The ID of the target novel + required: true + + - name: search + alias: s + help: Search and select a novel to read directly in your terminal + dependencies: [gum, curl, pup, pandoc, echo, glow] + + args: + - name: title + help: A partial title of the target novel + required: true |