Questions tagged [figlet]

FIGlet is a computer program that generates text banners, in a variety of typefaces, composed of letters made up of conglomerations of smaller ASCII characters (see ASCII art).

FIGlet is a computer program that generates text banners, in a variety of typefaces, composed of letters made up of conglomerations of smaller ASCII characters (see ASCII art). The name derives from "Frank, Ian and Glen's letters".

Being free software, FIGlet is commonly included as part of many Unix-like operating systems (Linux, BSD, etc.) distributions, but it has been ported to other platforms as well. The official FIGlet FTP site includes precompiled ports for the Acorn, Amiga, Apple II, Atari ST, BeOS, Macintosh, MS-DOS, NextStep, OS/2, and Windows platforms, as well as a reimplementation in Perl (Text::FIGlet). There are third-party reimplementations of FIGlet in Java (including one embedded in the JavE ASCII art editor), JavaScript and PHP. FIGlet was featured as a Debian Package of the Day in 2007.

Wikipedia: http://en.wikipedia.org/wiki/FIGlet

19 questions
0
votes
0 answers

How can I change/define the terminal size for a build CLI Node.js Tool with Javascript?

I have built a small tool. This also works. I had made a banner with figlet for fun. On my normal screen it looks good. But when I try the tool on my 13 inch laptop the banner is shifted and you can't read it. I can now make it manually larger...…
0
votes
3 answers

bash logic inside command substitution

I have a little banner that I display at login fignow() { figlet -w $(tput cols) $(date +"%b %d, Week %V"); figlet -w $(tput cols) -f univers $(date +"%H:%M"); } This works fine if the additional fonts are installed to get univers, but that's not…
YorSubs
  • 3,194
  • 7
  • 37
  • 60
0
votes
1 answer

Figlet wrap in R: How to vary width/size of cat/message output?

Can I increase the size or width of a line? For example, the below is wrapped after the second 'a', and I'd like it all to be on one line. #install.packages("Rfiglet") library(Rfiglet) figlet('starwars', respect.linebreaks = FALSE, …
dca
  • 594
  • 4
  • 18
-1
votes
2 answers

How can I print colored pyfiglet text in windows cmd

Hello so I am using Python and I want to print out the name of the program with color while using figlet_format so I got it working fine in vscode but when I try to run the file in cmd it prints this: [34m _ _ _ _ | | | | ___| | | ___ | |_|…
retryoos
  • 3
  • 1
  • 4
1
2