Citadel changes to gnome-shell

This commit is contained in:
2021-12-03 14:04:05 -05:00
parent a2ffd14a35
commit f675f95c67
39 changed files with 3205 additions and 33 deletions

View File

@ -47,6 +47,7 @@ import * as PointerA11yTimeout from './pointerA11yTimeout.js';
import {formatError} from '../misc/errorUtils.js';
import * as ParentalControlsManager from '../misc/parentalControlsManager.js';
import * as Util from '../misc/util.js';
import * as RealmManager from './realms/realmManager.js'
const WELCOME_DIALOG_LAST_SHOWN_VERSION = 'welcome-dialog-last-shown-version';
// Make sure to mention the point release, otherwise it will show every time
@ -96,6 +97,7 @@ export let screenTimeDBus = null;
export let breakManagerDispatcher = null;
export let timeLimitsManager = null;
export let timeLimitsDispatcher = null;
export let realmManager = null;
let _startDate;
let _defaultCssStylesheet = null;
@ -328,6 +330,8 @@ async function _initializeUI() {
extensionManager = new ExtensionSystem.ExtensionManager();
extensionManager.init();
realmManager = new RealmManager.RealmManager();
if (sessionMode.isGreeter && screenShield) {
layoutManager.connect('startup-prepared', () => {
screenShield.showDialog();