chore: commit remaining docs and project updates

This commit is contained in:
2026-02-09 21:29:51 -08:00
parent 5c600b0cbe
commit ee5803883e
19 changed files with 2397 additions and 9 deletions

View File

@@ -32,7 +32,7 @@ export function detectCompositor(): Compositor {
if (process.platform === "darwin") return "macos";
if (process.env.HYPRLAND_INSTANCE_SIGNATURE) return "hyprland";
if (process.env.SWAYSOCK) return "sway";
if (process.env.XDG_SESSION_TYPE === "x11") return "x11";
if (process.platform === "linux") return "x11";
return null;
}