summaryrefslogtreecommitdiffstats
path: root/extensions/no-overview/extension.js
diff options
context:
space:
mode:
Diffstat (limited to 'extensions/no-overview/extension.js')
-rw-r--r--extensions/no-overview/extension.js38
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