Meta: Add files to repository

This commit is contained in:
Alec Murphy 2025-03-25 07:32:23 -04:00
parent 80a0428b66
commit 39198164cd
1029 changed files with 78311 additions and 0 deletions

View file

@ -0,0 +1,29 @@
// Gui.App();
U0 @event_loop(CTask* task)
{
Fs->ipc = task->ipc;
IpcMessage* msg;
while (1) {
msg = Ipc.MsgRecv();
if (msg) {
Free(msg);
}
Sleep(1);
}
}
Ipc.InitQueue(Fs);
Spawn(&@event_loop, Fs);
U0 Main()
{
System.Log(Fs, "Task running at 0x%08x", Fs);
Window* win = Compositor.CreateWindow(0, 0, Display.Width(), Display.Height(),
WIN_FLAGS_NO_REINDEX | WIN_FLAGS_SKIP,
"Wallpaper");
Compositor.SetWallpaper(Compositor.theme.wallpaper);
Suspend;
}
Main;