blob: 32a9090a660284ad58c2c72dbe4e85ab4470ca00 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
|
/*
No overview at start-up
Contributors: @fthx, @fmuellner
License: GPL v3
*/
const Main = imports.ui.main;
class Extension {
constructor() {
this._realHasOverview = Main.sessionMode.hasOverview;
}
enable() {
if (!Main.layoutManager._startingUp) {
return;
}
Main.sessionMode.hasOverview = false;
Main.layoutManager.connect('startup-complete', () => {
Main.sessionMode.hasOverview = this._realHasOverview
});
// handle Ubuntu's method
if (Main.layoutManager.startInOverview) {
Main.layoutManager.startInOverview = false;
}
}
disable() {
Main.sessionMode.hasOverview = this._realHasOverview;
}
}
function init() {
return new Extension();
}
|