This Program is a Rust port of the CLI tool BLAHAJ.
The original program was written in Crystal, which to my knowledge has no way to flush I/O. That is annoying. The obvious solution was to write it in rust.
Arch Linux/Pacman users can install the AUR package.
$ git clone https://github.com/yoshisaac/BLAHAJ-rs.git
$ cd BLAHAJ-rs
$ cargo build --release
$ cargo run --release
$ #copy "./target/release/blahaj-rs" to which ever bin directory you want$ nano colors.yaml # Append something of this syntax to the end of the file
...
myflagname:
color:
- FFFFFF
- AAAAAA
- BBBBBB
- 000000
- 777777
...
$ python parse_colors_to_rust.py > src/flags.rs
$ cargo build --release
$ cargo run --release
$ #copy "./target/release/blahaj-rs" to which ever bin directory you wantSeriously? It's the MIT license.


