From 4ba2f605f43362314f14941793f62653825f1bca Mon Sep 17 00:00:00 2001 From: Simon Ser Date: Fri, 17 Apr 2026 17:12:20 +0200 Subject: [PATCH] seat: change default seat name to "default" from "seat0" "seat0" is confusing because it's the name used by logind for physical seats. Logical Wayland seats are completely orthogonal to login physical seats, so let's switch the name to reduce mixups a bit. See the discussion in https://github.com/cage-kiosk/cage/pull/497 --- seat.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/seat.c b/seat.c index 5f659a4..050a097 100644 --- a/seat.c +++ b/seat.c @@ -816,9 +816,9 @@ seat_create(struct cg_server *server, struct wlr_backend *backend) return NULL; } - seat->seat = wlr_seat_create(server->wl_display, "seat0"); + seat->seat = wlr_seat_create(server->wl_display, "default"); if (!seat->seat) { - wlr_log(WLR_ERROR, "Cannot allocate seat0"); + wlr_log(WLR_ERROR, "Cannot allocate seat"); free(seat); return NULL; }