Marquee

Documentation Crates.io

This is a CLI tool that will convert each line of stdin into a "marquee" style output. An example can be seen below.

GIF of marquee usage

Usage

sh echo "Hello World" | marquee

See marquee --help for advanced usage.

--json

If specifying the --json flag, the json values are as follows:

jsonc { "content": "required string", // The content of the string that will be rotating "prefix": "optional string", // The prefix before the string "suffix": "optional string", // The suffix after the string "rotate": "optional boolean" // If the string should rotate (default: true) }

Note: If specifying both --prefix and prefix in the JSON or --suffix and suffix in the JSON, then the output will take the form of {global_prefix}{prefix}{content}{suffix}{global_suffix}

Todo

Some of the todo items that I have in mind (feel free to create issues for more or PRs to implement these)