From 4294456cdcdf0a28f5adbdbef83aefccc00d6701 Mon Sep 17 00:00:00 2001 From: vaxerski Date: Sun, 25 Jun 2023 13:51:40 +0200 Subject: [PATCH] xwayland: remove spaces from output names --- src/managers/XWaylandManager.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/managers/XWaylandManager.cpp b/src/managers/XWaylandManager.cpp index bee412795..af4bafa82 100644 --- a/src/managers/XWaylandManager.cpp +++ b/src/managers/XWaylandManager.cpp @@ -325,7 +325,7 @@ void CHyprXWaylandManager::setXWaylandScale(std::optional scale) { if (VERSION >= WL_OUTPUT_SCALE_SINCE_VERSION) wl_output_send_scale(res, (uint32_t)ceil(scale.value_or(m->scale))); - wl_output_send_name(res, getFormat("HL X11 %d", m->ID).c_str()); + wl_output_send_name(res, getFormat("HL-X11-%d", m->ID).c_str()); outputResource = res; needsDone = true;