adjust figlet width

This commit is contained in:
Ben Harris 2021-03-05 13:56:56 -05:00
parent 69c4029b0e
commit 53df19ec9c
1 changed files with 1 additions and 1 deletions

View File

@ -27,7 +27,7 @@ elseif (isset($_GET["fonts"])) { // get list of fonts
elseif (isset($_GET["text"])) { // run figlet
header("Content-Type: text/plain");
echo shell_exec(
"/usr/bin/figlet -d fonts -w 80 -f " .
"/usr/bin/figlet -d fonts -w 76 -f " .
escapeshellarg($_GET["font"] ?? "standard") . " -- " .
escapeshellarg($_GET["text"])
);