diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-08 16:01:23 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-08 16:01:23 +0000 |
commit | 1abf39b42a49e237c6b1c5addac1877498899696 (patch) | |
tree | 2f61bbfe8b3ad7bd596eec217d29618a80032ef2 /extensions/no-overview/extension.js | |
parent | Adding middleclickclose entry in manpage. (diff) | |
download | gnome-shell-extensions-extra-1abf39b42a49e237c6b1c5addac1877498899696.tar.xz gnome-shell-extensions-extra-1abf39b42a49e237c6b1c5addac1877498899696.zip |
Adding no-overview version 12 [665d0e1].
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'extensions/no-overview/extension.js')
-rw-r--r-- | extensions/no-overview/extension.js | 38 |
1 files changed, 38 insertions, 0 deletions
diff --git a/extensions/no-overview/extension.js b/extensions/no-overview/extension.js new file mode 100644 index 0000000..32a9090 --- /dev/null +++ b/extensions/no-overview/extension.js @@ -0,0 +1,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(); +}
\ No newline at end of file |