main, LoginManager: Call GDM's RegisterSession()
So that it can know if we started up properly and use that to (e.g.) kill its greeter. https://gitlab.gnome.org/GNOME/gnome-shell/merge_requests/570
This commit is contained in:
parent
76dc77f617
commit
0e37cd2ec9
@ -48,6 +48,28 @@ function canLock() {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
function registerSessionWithGDM() {
|
||||||
|
log("Registering session with GDM");
|
||||||
|
Gio.DBus.system.call('org.gnome.DisplayManager',
|
||||||
|
'/org/gnome/DisplayManager/Manager',
|
||||||
|
'org.gnome.DisplayManager.Manager',
|
||||||
|
'RegisterSession',
|
||||||
|
GLib.Variant.new('(a{sv})', [{}]), null,
|
||||||
|
Gio.DBusCallFlags.NONE, -1, null,
|
||||||
|
(source, result) => {
|
||||||
|
try {
|
||||||
|
source.call_finish(result);
|
||||||
|
} catch (e) {
|
||||||
|
if (!e.matches(Gio.DBusError, Gio.DBusError.UNKNOWN_METHOD))
|
||||||
|
log(`Error registering session with GDM: ${e.message}`);
|
||||||
|
else
|
||||||
|
log("Not calling RegisterSession(): method not exported, GDM too old?");
|
||||||
|
}
|
||||||
|
}
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
let _loginManager = null;
|
let _loginManager = null;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -250,6 +250,8 @@ function _initializeUI() {
|
|||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
|
LoginManager.registerSessionWithGDM();
|
||||||
|
|
||||||
let perfModuleName = GLib.getenv("SHELL_PERF_MODULE");
|
let perfModuleName = GLib.getenv("SHELL_PERF_MODULE");
|
||||||
if (perfModuleName) {
|
if (perfModuleName) {
|
||||||
let perfOutput = GLib.getenv("SHELL_PERF_OUTPUT");
|
let perfOutput = GLib.getenv("SHELL_PERF_OUTPUT");
|
||||||
|
Loading…
Reference in New Issue
Block a user