wayland: log compositor name in startup

This commit is contained in:
Vaxry 2024-09-25 11:45:04 +01:00
parent 203fc0f4e4
commit b82fdaff91
1 changed files with 3 additions and 0 deletions

View File

@ -82,6 +82,9 @@ bool Aquamarine::CWaylandBackend::start() {
return false;
}
auto XDGCURRENTDESKTOP = getenv("XDG_CURRENT_DESKTOP");
backend->log(AQ_LOG_DEBUG, std::format("Connected to a wayland compositor: {}", (XDGCURRENTDESKTOP ? XDGCURRENTDESKTOP : "unknown (XDG_CURRENT_DEKSTOP unset?)")));
waylandState.registry = makeShared<CCWlRegistry>((wl_proxy*)wl_display_get_registry(waylandState.display));
backend->log(AQ_LOG_DEBUG, std::format("Got registry at 0x{:x}", (uintptr_t)waylandState.registry->resource()));