229 lines
7.9 KiB
JavaScript
229 lines
7.9 KiB
JavaScript
/****************************************************************************
|
|
** Auto Activities - Show activities overlay when there are no windows.
|
|
** Copyright (C) 2022-2023 Cleo Menezes Jr., 2021 jan Sena <mi-jan-sena@proton.me>
|
|
**
|
|
** This program is free software: you can redistribute it and/or modify
|
|
** it under the terms of the GNU General Public License as published by
|
|
** the Free Software Foundation, either version 3 of the License, or
|
|
** (at your option) any later version.
|
|
**
|
|
** This program is distributed in the hope that it will be useful,
|
|
** but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
** MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
** GNU General Public License for more details.
|
|
**
|
|
** You should have received a copy of the GNU General Public License
|
|
** along with this program. If not, see <https://www.gnu.org/licenses/>.
|
|
****************************************************************************/
|
|
"use strict";
|
|
|
|
import * as Main from "resource:///org/gnome/shell/ui/main.js";
|
|
import GLib from "gi://GLib";
|
|
import GObject from "gi://GObject";
|
|
import St from "gi://St";
|
|
import Meta from "gi://Meta";
|
|
|
|
let windowCheckingDelay;
|
|
const ignoredWindowTypes = [
|
|
Meta.WindowType.DROPDOWN_MENU,
|
|
Meta.WindowType.NOTIFICATION,
|
|
Meta.WindowType.POPUP_MENU,
|
|
Meta.WindowType.SPLASHSCREEN,
|
|
];
|
|
|
|
export const AutoActivitiesManager = GObject.registerClass(
|
|
class ActivitiesManager extends St.Bin {
|
|
_init({ remoteModel, monitorIndex, settings }) {
|
|
this._remoteModel = remoteModel;
|
|
this._monitorIndex = monitorIndex;
|
|
this._windowRemovedEvents = [];
|
|
this._windowAddedEvents = [];
|
|
this._settings = settings;
|
|
|
|
for (let i = 0; i < global.workspace_manager.n_workspaces; i++) {
|
|
this._onWorkspaceAdded(global.workspace_manager, i);
|
|
}
|
|
|
|
this._workspaceAddedEvent = global.workspace_manager.connect(
|
|
"workspace-added",
|
|
this._onWorkspaceAdded.bind(this),
|
|
);
|
|
this._workspaceRemovedEvent = global.workspace_manager.connect(
|
|
"workspace-removed",
|
|
this._onWorkspaceRemoved.bind(this),
|
|
);
|
|
this._workspaceSwitchedEvent = global.workspace_manager.connect(
|
|
"workspace-switched",
|
|
this._onWorkspaceSwitched.bind(this),
|
|
);
|
|
this._workspacesReorderedEvent = global.workspace_manager.connect(
|
|
"workspaces-reordered",
|
|
this._onWorkspacesReordered.bind(this),
|
|
);
|
|
this._minimizedEvent = global.window_manager.connect(
|
|
"minimize",
|
|
this._onWindowMinimized.bind(this),
|
|
);
|
|
}
|
|
|
|
_onWorkspaceAdded(_sender, workspaceIndex) {
|
|
let windowRemovedEvent = global.workspace_manager
|
|
.get_workspace_by_index(workspaceIndex)
|
|
.connect("window-removed", this._onWindowRemoved.bind(this));
|
|
this._windowRemovedEvents.push(windowRemovedEvent);
|
|
let windowAddedEvent = global.workspace_manager
|
|
.get_workspace_by_index(workspaceIndex)
|
|
.connect("window-added", this._onWindowAdded.bind(this));
|
|
this._windowAddedEvents.push(windowAddedEvent);
|
|
}
|
|
|
|
_onWorkspaceRemoved(_sender, workspaceIndex) {
|
|
if (workspaceIndex < this._windowRemovedEvents.length) {
|
|
this._windowRemovedEvents.splice(workspaceIndex);
|
|
this._windowAddedEvents.splice(workspaceIndex);
|
|
}
|
|
}
|
|
|
|
_onWorkspaceSwitched(
|
|
_sender,
|
|
_oldWorkspaceIndex,
|
|
_newWorkspaceIndex,
|
|
_direction,
|
|
) {
|
|
if (!this._settings.get_boolean("skip-last-workspace")) {
|
|
this._checkAndShowOverview();
|
|
}
|
|
}
|
|
|
|
_onWorkspacesReordered(_sender) {
|
|
let firstWorkspaceIndex = -1;
|
|
let secondWorkspaceIndex = -1;
|
|
for (let i = 0; i < this._windowRemovedEvents.length; i++) {
|
|
if (
|
|
GObject.signal_handler_is_connected(
|
|
global.workspace_manager.get_workspace_by_index(i),
|
|
this._windowRemovedEvents[i],
|
|
)
|
|
) {
|
|
if (firstWorkspaceIndex < 0) firstWorkspaceIndex = i;
|
|
else secondWorkspaceIndex = i;
|
|
}
|
|
}
|
|
|
|
let tempFirstWorkspaceRemovedEvent =
|
|
this._windowRemovedEvents[firstWorkspaceIndex];
|
|
this._windowRemovedEvents[firstWorkspaceIndex] =
|
|
this._windowRemovedEvents[secondWorkspaceIndex];
|
|
this._windowRemovedEvents[secondWorkspaceIndex] =
|
|
tempFirstWorkspaceRemovedEvent;
|
|
|
|
let tempFirstWorkspaceAddedEvent =
|
|
this._windowAddedEvents[firstWorkspaceIndex];
|
|
this._windowAddedEvents[firstWorkspaceIndex] =
|
|
this._windowAddedEvents[secondWorkspaceIndex];
|
|
this._windowAddedEvents[secondWorkspaceIndex] =
|
|
tempFirstWorkspaceAddedEvent;
|
|
}
|
|
|
|
_onWindowMinimized(_sender, actor) {
|
|
if (
|
|
this._settings.get_boolean("detect-minimized") &&
|
|
!ignoredWindowTypes.includes(actor.meta_window.get_window_type())
|
|
) {
|
|
this._checkAndShowOverview();
|
|
}
|
|
}
|
|
|
|
_onWindowRemoved(_sender, removedWindow) {
|
|
if (!ignoredWindowTypes.includes(removedWindow.get_window_type())) {
|
|
this._checkAndShowOverview();
|
|
}
|
|
}
|
|
|
|
_onWindowAdded(_sender, addedWindow) {
|
|
if (
|
|
!ignoredWindowTypes.includes(addedWindow.get_window_type()) &&
|
|
this._settings.get_boolean("hide-on-new-window")
|
|
) {
|
|
if (Main.overview.visible) Main.overview.hide();
|
|
}
|
|
}
|
|
|
|
_checkAndShowOverview() {
|
|
let delay = 0;
|
|
let delaySetting = this._settings.get_int("window-checking-delay");
|
|
if (!isNaN(delaySetting) && delaySetting > 0) delay = delaySetting;
|
|
windowCheckingDelay = GLib.timeout_add(
|
|
GLib.PRIORITY_DEFAULT,
|
|
delay,
|
|
() => {
|
|
let windows = global.get_window_actors();
|
|
if (this._settings.get_boolean("isolate-workspaces")) {
|
|
windows = windows.filter(
|
|
(window) =>
|
|
window.meta_window.get_workspace().index() ===
|
|
global.workspace_manager.get_active_workspace().index(),
|
|
);
|
|
}
|
|
if (this._settings.get_boolean("isolate-monitors")) {
|
|
windows = windows.filter(
|
|
(window) =>
|
|
window.meta_window.get_monitor() === this._monitorIndex,
|
|
);
|
|
}
|
|
if (this._settings.get_boolean("skip-taskbar")) {
|
|
windows = windows.filter(
|
|
(window) => !window.meta_window.skip_taskbar,
|
|
);
|
|
}
|
|
if (this._settings.get_boolean("detect-minimized")) {
|
|
windows = windows.filter((window) => !window.meta_window.minimized);
|
|
}
|
|
|
|
if (windows.length < 1) {
|
|
if (this._settings.get_boolean("show-apps")) {
|
|
Main.overview
|
|
.showApps();
|
|
} else Main.overview.show();
|
|
}
|
|
},
|
|
);
|
|
}
|
|
|
|
destroy() {
|
|
global.workspace_manager.disconnect(this._workspaceAddedEvent);
|
|
global.workspace_manager.disconnect(this._workspaceRemovedEvent);
|
|
global.workspace_manager.disconnect(this._workspaceSwitchedEvent);
|
|
global.workspace_manager.disconnect(this._workspacesReorderedEvent);
|
|
global.window_manager.disconnect(this._minimizedEvent);
|
|
|
|
for (let i = 0; i < this._windowRemovedEvents.length; i++) {
|
|
if (
|
|
GObject.signal_handler_is_connected(
|
|
global.workspace_manager.get_workspace_by_index(i),
|
|
this._windowRemovedEvents[i],
|
|
)
|
|
) {
|
|
global.workspace_manager
|
|
.get_workspace_by_index(i)
|
|
.disconnect(this._windowRemovedEvents[i]);
|
|
}
|
|
}
|
|
|
|
for (let i = 0; i < this._windowAddedEvents.length; i++) {
|
|
if (
|
|
GObject.signal_handler_is_connected(
|
|
global.workspace_manager.get_workspace_by_index(i),
|
|
this._windowAddedEvents[i],
|
|
)
|
|
) {
|
|
global.workspace_manager
|
|
.get_workspace_by_index(i)
|
|
.disconnect(this._windowAddedEvents[i]);
|
|
}
|
|
}
|
|
GLib.Source.remove(windowCheckingDelay);
|
|
}
|
|
},
|
|
);
|