# Phase 1 — Raylib Window Inside Xephyr --- ## Step 1.1 — Open a raylib window Update `main.c` to: 1. Call `InitWindow(1280, 800, "winman-raylib")`. 2. Enter a loop: `BeginDrawing()`, clear to dark blue, `DrawText("winman-raylib", ...)`, `EndDrawing()`. 3. `CloseWindow()` on exit. Update the Makefile to link raylib (`pkg-config --libs raylib`), plus `-lGL -lm -lpthread -ldl`. **Verify:** `./bin/run.sh` opens Xephyr and a raylib window appears inside it showing "winman-raylib" text on a dark blue background. The window responds to the close button / Escape key.