From f3117c696f748e534bc2a3524daf4da370c1a267 Mon Sep 17 00:00:00 2001 From: Jose Llamas Date: Tue, 4 Aug 2026 02:43:18 -0700 Subject: [PATCH] Enable x11 feature by default for Linux X11 session support Add x11 to default features alongside wayland so mewnala works out of the box on X11-only sessions (i3, openbox, etc.) without requiring users to recompile with --features x11. Previously mewnala would fail on X11 sessions with: GLFW Error: Wayland: Platform not initialized --- Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index acc5c3a..e6922fa 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -8,7 +8,7 @@ autoexamples = false workspace = true [features] -default = ["wayland"] +default = ["wayland", "x11"] wayland = ["processing_render/wayland"] x11 = ["processing_render/x11"] webcam = ["dep:processing_webcam"]