A no-nonsense fortune-mod replacement written in C#
Go to file
Valerie Wolfe b3252e7f1e updated fortunes 2024-03-14 17:20:25 -04:00
data updated fortunes 2024-03-14 17:20:25 -04:00
src removed unneeded prng de/init 2024-03-06 20:03:19 -05:00
.gitignore added justfile and updated README 2024-03-06 18:51:46 -05:00
README.md updated README 2024-03-06 19:15:50 -05:00
justfile added justfile and updated README 2024-03-06 18:51:46 -05:00

README.md

Fortune

A no-nonsense, user-extensible fortune-mod replacement.

Goals

  • Sensible: I'm fed up with fortunes about men hating their wives.
  • Straightforward: No weird formats. Plain text with \n escape sequences; easy to add or remove content.

This project was originally built in Rust, and I migrated it to C# primarily to test out bflat.

Methodology

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.

Installation

Application

Release Binary

Copy the compiled binary from the releases page to a directory in $PATH, such as /usr/bin/.

From Source

Clone the source repository and either use the prewritten just recipe with the command just build, or run bflat build ./src/Program.cs if you'd rather set your build options manually.

Base Fortunes

Release Tarball

Copy the base-fortunes.tar.gz tarball from the releases page, extract the archive using tar xzf base-fortunes.tar.gz, and move the resulting .txt files to /usr/share/fortune-cs/.

From Source

Clone the source repository and copy the files from the data/ directory to /usr/share/fortune-cs.

Dependencies