fortune-cs/README.md

70 lines
1.8 KiB
Markdown
Raw Normal View History

2024-03-06 13:00:16 -05:00
# Fortune
A no-nonsense, user-extensible `fortune-mod` replacement.
## Goals
- Sensible: I'm fed up with fortunes about men hating their wives.
2024-03-06 18:51:46 -05:00
- Straightforward: No weird formats. Plain text with `\n` escape sequences; easy to add or remove content.
2024-03-06 13:00:16 -05:00
2024-03-06 18:51:46 -05:00
This project was originally built in Rust, and I migrated it to C# primarily to
test out [bflat](https://github.com/bflattened/bflat).
2024-03-06 19:15:50 -05:00
<details>
<summary><h2>Methodology</h2></summary>
`fortune-cs` starts by selecting a category file, then a line, so the user will
see a normal representation of each file. Then, it selects a line from the file.
The fortune files themselves can be extended just by appending;
`cat b.txt >> a.txt` is a perfectly valid way of merging two files.
</details>
2024-03-06 18:51:46 -05:00
## Installation
### Application
<details>
<summary>Release Binary</summary>
Copy the compiled binary from the [releases page](https://git.vwolfe.io/valerie/fortune-cs/releases)
to a directory in `$PATH`, such as `/usr/bin/`.
</details>
<details>
<summary>From Source</summary>
Clone the source repository and either use the prewritten [just](https://github.com/casey/just)
recipe with the command `just build`, or run `bflat build ./src/Program.cs` if
you'd rather set your build options manually.
</details>
### Base Fortunes
<details>
<summary>Release Tarball</summary>
Copy the `base-fortunes.tar.gz` tarball from the [releases page](https://git.vwolfe.io/valerie/fortune-cs/releases),
extract the archive using `tar xzf base-fortunes.tar.gz`, and move the
resulting `.txt` files to `/usr/share/fortune-cs/`.
</details>
<details>
<summary>From Source</summary>
Clone the source repository and copy the files from the `data/` directory to
`/usr/share/fortune-cs`.
</details>
## Dependencies
- [bflat](https://github.com/bflattened/bflat): Compiler
- [just](https://github.com/casey/just): Build recipe
2024-03-06 13:00:16 -05:00