mirror of
https://github.com/hyprwm/wlroots-hyprland.git
synced 2024-11-04 20:55:58 +01:00
Don't set XDG_SESSION_TYPE unless logind SetType succeeds
This commit is contained in:
parent
e81d2086c0
commit
7e990a2991
1 changed files with 6 additions and 2 deletions
|
@ -257,12 +257,16 @@ static bool set_type(struct logind_session *session) {
|
|||
sd_bus_error_free(&error);
|
||||
sd_bus_message_unref(msg);
|
||||
|
||||
if (ret < 0) {
|
||||
return false;
|
||||
}
|
||||
|
||||
ret = setenv("XDG_SESSION_TYPE", "wayland", 1);
|
||||
if (ret < 0) {
|
||||
wlr_log(WLR_ERROR, "Failed to set XDG_SESSION_TYPE for session");
|
||||
return false;
|
||||
}
|
||||
|
||||
return ret >= 0;
|
||||
return true;
|
||||
}
|
||||
|
||||
static void release_control(struct logind_session *session) {
|
||||
|
|
Loading…
Reference in a new issue