From 27a3e69356db7d50603e675d8ecc81df86dab594 Mon Sep 17 00:00:00 2001 From: Ian Moffett Date: Wed, 4 Jun 2025 00:03:45 -0400 Subject: usr.bin: kfgwm: Add initial WM sources - Add basic structures and defines for describing a window - Add basic window drawing routines - Draw demo/test window Signed-off-by: Ian Moffett --- usr.bin/osh/osh.c | 2 ++ 1 file changed, 2 insertions(+) (limited to 'usr.bin/osh/osh.c') diff --git a/usr.bin/osh/osh.c b/usr.bin/osh/osh.c index 583f29a..120145f 100644 --- a/usr.bin/osh/osh.c +++ b/usr.bin/osh/osh.c @@ -52,6 +52,7 @@ "shutdown - Power off the machine\n" \ "kmsg - Print kernel message buffer\n" \ "fetch - System information\n" \ + "kfg - Start up kfgwm\n" \ "exit - Exit the shell\n" #define PROMPT "[root::osmora]~ " @@ -190,6 +191,7 @@ struct command cmds[] = { {"shutdown", NULL, cmd_shutdown}, {"kmsg", "/usr/bin/kmsg", NULL}, {"fetch", "/usr/bin/fetch", NULL}, + {"kfg", "/usr/bin/kfgwm", NULL}, {NULL, NULL} }; -- cgit v1.2.3