diff options
author | Ian Moffett <ian@osmora.org> | 2025-06-04 00:03:45 -0400 |
---|---|---|
committer | Ian Moffett <ian@osmora.org> | 2025-06-04 00:03:45 -0400 |
commit | 27a3e69356db7d50603e675d8ecc81df86dab594 (patch) | |
tree | 6b11f3b290f81ba7c3f79cb631a46425ab3a6cca /usr.bin/osh/osh.c | |
parent | 6a9e551dbf0426172317f75e811e5e49f2161317 (diff) |
usr.bin: kfgwm: Add initial WM sourcesmain
- Add basic structures and defines for describing a window
- Add basic window drawing routines
- Draw demo/test window
Signed-off-by: Ian Moffett <ian@osmora.org>
Diffstat (limited to 'usr.bin/osh/osh.c')
-rw-r--r-- | usr.bin/osh/osh.c | 2 |
1 files changed, 2 insertions, 0 deletions
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} }; |