From 9a25baf3b37ad1e877d1b5bc0be8ccc3fa7e4299 Mon Sep 17 00:00:00 2001 From: www-data Date: Wed, 9 Sep 2020 12:36:34 -0400 Subject: [PATCH] fix width of figlet --- motd/index.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/motd/index.php b/motd/index.php index 43333e4..a05dd94 100644 --- a/motd/index.php +++ b/motd/index.php @@ -4,7 +4,7 @@ header("Content-Type: text/plain"); $node = $_GET["node"] ?? "hub"; -echo shell_exec("figlet -f slant -- " . escapeshellarg($node) . ".tilde.chat"); +echo shell_exec("figlet -w120 -f slant -- " . escapeshellarg($node) . ".tilde.chat"); echo "welcome to tilde.chat\n"; echo "this is the irc network for the tildeverse (https://tildeverse.org)\n";