https://github.com/triole/fprint
figlet print, simple shell tool to print text to figlet fonts. comes as a single static binary, nothing else required
https://github.com/triole/fprint
command-line figlet figlet-fonts
Last synced: 4 months ago
JSON representation
figlet print, simple shell tool to print text to figlet fonts. comes as a single static binary, nothing else required
- Host: GitHub
- URL: https://github.com/triole/fprint
- Owner: triole
- Created: 2020-10-07T18:48:05.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2024-03-24T19:30:49.000Z (almost 2 years ago)
- Last Synced: 2025-08-24T18:33:58.653Z (5 months ago)
- Topics: command-line, figlet, figlet-fonts
- Language: Go
- Homepage:
- Size: 20.5 KB
- Stars: 3
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: readme.md
Awesome Lists containing this project
README
# Fprint 
- [Synopsis](#synopsis)
- [Usage](#usage)
- [Config files](#config-files)
- [Build](#build)
## Synopsis
Figlet print: a simple shell tool to print text strings with figlet fonts. Basically a wrapper of my fork of [go-figure](https://github.com/common-nighthawk/go-figure).
## Usage
```shell
fprint hello
# or
echo hello | fprint
```
Run `fprint -h` to find out what it can do.
## Config files
Settings can be passed by command line arguments or by config. Configs are in toml format and used with the `-k` parameter. This is how they look.
```toml
text = "main text"
font = "univers"
colour = "yellow"
pretext = "text before"
posttext = "text after"
```
## Build
Either build by hand or use [task](https://github.com/go-task/task).
```shell
# this
go build
# or that
task
# remember what you can do if you have 'task'
task -l
```