Merging upstream version 20240916 (Closes: #1079257).
Signed-off-by: Daniel Baumann <daniel@debian.org>
This commit is contained in:
parent
37100210a9
commit
af3a3f3a8f
122 changed files with 8062 additions and 6057 deletions
26
extensions/47/no-overview/extension.js
Normal file
26
extensions/47/no-overview/extension.js
Normal file
|
@ -0,0 +1,26 @@
|
|||
/*
|
||||
No overview at start-up
|
||||
GNOME Shell 45+ extension
|
||||
Contributors: @fthx
|
||||
License: GPL v3
|
||||
*/
|
||||
|
||||
import * as Main from 'resource:///org/gnome/shell/ui/main.js';
|
||||
|
||||
export default class NoOverviewExtension {
|
||||
enable() {
|
||||
if (!Main.layoutManager._startingUp) {
|
||||
return;
|
||||
}
|
||||
|
||||
Main.layoutManager.connectObject(
|
||||
'startup-complete',
|
||||
() => Main.overview.hide(),
|
||||
this
|
||||
);
|
||||
}
|
||||
|
||||
disable() {
|
||||
Main.layoutManager.disconnectObject(this);
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue