Implement logind session SetType method to change session type to wayland

This commit is contained in:
Ryan Walklin 2020-06-25 22:56:56 +12:00 committed by Simon Ser
parent 30226eb1fb
commit f0d03fb892
1 changed files with 23 additions and 0 deletions

View File

@ -241,6 +241,24 @@ static bool take_control(struct logind_session *session) {
return ret >= 0;
}
static bool set_type(struct logind_session *session) {
int ret;
sd_bus_message *msg = NULL;
sd_bus_error error = SD_BUS_ERROR_NULL;
ret = sd_bus_call_method(session->bus, "org.freedesktop.login1",
session->path, "org.freedesktop.login1.Session", "SetType",
&error, &msg, "s", "wayland");
if (ret < 0) {
wlr_log(WLR_ERROR, "Failed to set session type for session: %s",
error.message);
}
sd_bus_error_free(&error);
sd_bus_message_unref(msg);
return ret >= 0;
}
static void release_control(struct logind_session *session) {
int ret;
sd_bus_message *msg = NULL;
@ -819,6 +837,11 @@ static struct wlr_session *logind_session_create(struct wl_display *disp) {
}
}
if (!set_type(session)) {
// Not fatal
wlr_log(WLR_INFO, "Failed to set logind session type to wayland");
}
wlr_log(WLR_INFO, "Successfully loaded logind session");
session->base.impl = &session_logind;