diff options
author | Kevin Lange <k@dakko.us> | 2011-12-04 04:16:31 -0600 |
---|---|---|
committer | Kevin Lange <k@dakko.us> | 2011-12-04 04:16:31 -0600 |
commit | 6ec206094eeec8649bbae8cf4a3a1feb21d56562 (patch) | |
tree | ae8bb6b5ea1a6aa928a434c5b5c760289d3eb674 /src | |
parent | bbeebb1208374a0f2d8f6b4459736450ef20ea6f (diff) | |
download | nyancat-6ec206094eeec8649bbae8cf4a3a1feb21d56562.tar.gz |
Fix up the MOTD a bit
Diffstat (limited to '')
-rw-r--r-- | src/nyancat.c | 24 |
1 files changed, 12 insertions, 12 deletions
diff --git a/src/nyancat.c b/src/nyancat.c index 64f0271..65e516d 100644 --- a/src/nyancat.c +++ b/src/nyancat.c @@ -506,23 +506,23 @@ ready: int countdown_clock = 5; for (k = 0; k < countdown_clock; ++k) { newline(3); - printf(" Nyancat Telnet Server"); + printf(" \033[1mNyancat Telnet Server\033[0m"); newline(2); - printf(" written and run by \033[1;32mKevin Lange\033[1;34m @kevinlange\033[0m"); + printf(" written and run by \033[1;32mKevin Lange\033[1;34m @kevinlange\033[0m"); newline(2); - printf(" If things don't look right, try:"); + printf(" If things don't look right, try:"); newline(1); - printf(" TERM=fallback telnet ..."); - newline(1); - printf(" Or on Windows:"); - newline(1); - printf(" telnet -t vtnt ..."); + printf(" TERM=fallback telnet ..."); newline(2); - printf(" Problems? I am also a webserver:"); + printf(" Or on Windows:"); newline(1); - printf(" \033[1;34mhttp://miku.acm.uiuc.edu\033[0m"); - newline(2); - printf(" Starting in %d... \n", countdown_clock-k); + printf(" telnet -t vtnt ..."); + newline(3); + printf(" Problems? I am also a webserver:"); + newline(1); + printf(" \033[1;34mhttp://miku.acm.uiuc.edu\033[0m"); + newline(4); + printf(" Starting in %d... \n", countdown_clock-k); fflush(stdout); usleep(400000); |