mirror of
https://github.com/JannisHeydemann/BoredOS.git
synced 2026-05-30 02:16:58 +00:00
1.50 is a version with not that many "os-related" updates, but it does bring something new: BoredOS! Since BrewOS was already being used for a custom operating system for smart coffee machines, i decided to copy the naming of my github username: BoreddevNL and turned that into, well BoredOS. Anyways this update brings some extra stability and graphical bug fixes, that's about it. Oh yeah also a mouse sensitivity slider in the control panel. Enjoy!
18 lines
581 B
C
18 lines
581 B
C
#include "cli_utils.h"
|
|
|
|
void cli_cmd_cowsay(char *args) {
|
|
if (!args || !*args) args = (char*)"Bored!";
|
|
size_t len = cli_strlen(args);
|
|
|
|
cli_write(" ");
|
|
for(size_t i=0; i<len+2; i++) cli_write("_");
|
|
cli_write("\n< "); cli_write(args); cli_write(" >\n ");
|
|
for(size_t i=0; i<len+2; i++) cli_write("-");
|
|
cli_write("\n");
|
|
cli_write(" \\ ^__^\n");
|
|
cli_write(" \\ (oo)\\_______\n");
|
|
cli_write(" (__)\\ )\\/\\\n");
|
|
cli_write(" ||----w |\n");
|
|
cli_write(" || ||\n\n");
|
|
}
|