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!
21 lines
862 B
C
21 lines
862 B
C
#include "cli_utils.h"
|
|
|
|
void cli_cmd_help(char *args) {
|
|
(void)args;
|
|
cli_write("Available commands:\n");
|
|
cli_write(" HELP - Display this help message\n");
|
|
cli_write(" DATE - Display current date and time\n");
|
|
cli_write(" CLEAR - Clear the screen\n");
|
|
cli_write(" BOREDVER - Gives version info\n");
|
|
cli_write(" MATH - math <op> <a> <b> (e.g. math + 1 2)\n");
|
|
cli_write(" MAN - Show user manual (interactive)\n");
|
|
cli_write(" LICENSE - Show license (interactive)\n");
|
|
cli_write(" UPTIME - System uptime\n");
|
|
cli_write(" BEEP - Make a sound\n");
|
|
cli_write(" COWSAY - cowsay <msg>\n");
|
|
cli_write(" REBOOT - Reboot system\n");
|
|
cli_write(" SHUTDOWN - Shutdown system\n");
|
|
cli_write(" MEMINFO - Gives memory info\n");
|
|
cli_write(" CC - C compiler\n");
|
|
}
|