Compare commits
57 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 8ed5f104b2 | |||
| cbaa802797 | |||
| e2a1792388 | |||
| 656e448927 | |||
| 93516b31fb | |||
| 918c07c419 | |||
| 15188b9990 | |||
| 19696298d0 | |||
| 4be7602316 | |||
| 8f6e8582c9 | |||
| 3d2da0a4bc | |||
| a17441cda3 | |||
| c4f5835424 | |||
| 7773c3b808 | |||
| b8e861cf9e | |||
| 318ce6c064 | |||
| 1a4d8253f7 | |||
| 86786ba831 | |||
| bfd027f6c3 | |||
| b46810bc0f | |||
| c4abd1e8e5 | |||
| df9bc3e1eb | |||
| 90a4e19751 | |||
| 5da4001a32 | |||
| 9011cd48f2 | |||
| e065acd37d | |||
| b4afd6d4dc | |||
| 1ae379868b | |||
| 8d4e51284d | |||
| 9f46347179 | |||
| 5a6c3ccd72 | |||
| c977c61714 | |||
| e615efceb9 | |||
| 88623f32d7 | |||
| 265ff05436 | |||
| 2b86856a97 | |||
| a858af73f4 | |||
| ecb5a568cd | |||
| 5e9bc796ea | |||
| 04f402c686 | |||
| 1d3d9dc402 | |||
| c7f45ecf3b | |||
| c23b9113ab | |||
| 50ceb02124 | |||
| 717c240d70 | |||
| 822a7bd2e4 | |||
| 4543c98de8 | |||
| d59a0fef6d | |||
| ed661b3fa6 | |||
| 6a19b77742 | |||
| 7b0f37f3f9 | |||
| e1e240924a | |||
| 185a8e233c | |||
| 84777c4db1 | |||
| fe4558d628 | |||
| c8a453f329 | |||
| 0ddac224fb |
@@ -1 +0,0 @@
|
||||
25
|
||||
@@ -1,30 +1 @@
|
||||
# Aerospike Gnome (Tiling Window Manager)
|
||||
|
||||
Aerospike is a simple and opinionated tiling window manager for gnome.
|
||||
|
||||
This project takes inspiration from previous gnome tiling window managers such
|
||||
as [forge](https://github.com/forge-ext/forge)
|
||||
and [cosmic-shell](https://github.com/pop-os/gnome-shell-extension-pop-cosmic) as well as
|
||||
MacOS tiling WMs, mainly [Aerospace](https://github.com/nikitabobko/AeroSpace) (not affiliated).
|
||||
|
||||
## Current Features
|
||||
|
||||
- Auto-tiling
|
||||
- Accordion layouts with variable sizes
|
||||
- Tabbed layouts
|
||||
- Tree-based (albeit set depth of 2 for now) container-window paired layout similar to Aerospace
|
||||
- Diagram for this is pending
|
||||
|
||||
## Planned functionality
|
||||
|
||||
- Full Keyboard control w/window movement
|
||||
- Sub-containers (more tree layers than the 1 supported for now)
|
||||
- Gap size customization
|
||||
|
||||
## Not currently planned
|
||||
|
||||
- Active window borders
|
||||
- See my other extension for a rainbow or static border - [PrettyBorders](https://github.com//pretty-borders)
|
||||
- complicated window dragging features and uis
|
||||
- Aerospace supports control + drag to combine windows while moving with the mouse, and normal window dragging.
|
||||
|
||||
# Aerospike Gnome (Tiling Window Manager)
|
||||
+12
-9
@@ -4,7 +4,6 @@ import * as Main from 'resource:///org/gnome/shell/ui/main.js';
|
||||
import Gio from 'gi://Gio';
|
||||
import Shell from 'gi://Shell';
|
||||
import WindowManager from './src/wm/windowManager.js'
|
||||
import {Direction} from './src/wm/container.js'
|
||||
import {Logger} from "./src/utils/logger.js";
|
||||
|
||||
export default class aerospike extends Extension {
|
||||
@@ -38,18 +37,14 @@ export default class aerospike extends Extension {
|
||||
|
||||
private keybindingActions(): Record<string, () => void> {
|
||||
return {
|
||||
'move-left': () => { Logger.info('Keybinding 1 was pressed!'); },
|
||||
'move-right': () => { Logger.info('Keybinding 2 was pressed!'); },
|
||||
'join-with-left': () => { Logger.info('Keybinding 3 was pressed!'); },
|
||||
'join-with-right': () => { Logger.info('Keybinding 4 was pressed!'); },
|
||||
'print-tree': () => { this.windowManager.printTreeStructure(); },
|
||||
'toggle-orientation': () => { this.windowManager.toggleActiveContainerOrientation(); },
|
||||
'reset-ratios': () => { this.windowManager.resetActiveContainerRatios(); },
|
||||
'toggle-tabbed': () => { this.windowManager.toggleActiveContainerTabbed(); },
|
||||
'focus-left': () => { this.windowManager.focusInDirection(Direction.LEFT); },
|
||||
'focus-right': () => { this.windowManager.focusInDirection(Direction.RIGHT); },
|
||||
'focus-up': () => { this.windowManager.focusInDirection(Direction.UP); },
|
||||
'focus-down': () => { this.windowManager.focusInDirection(Direction.DOWN); },
|
||||
'move-left': () => { this.windowManager.moveInDirection(Direction.LEFT); },
|
||||
'move-right': () => { this.windowManager.moveInDirection(Direction.RIGHT); },
|
||||
'move-up': () => { this.windowManager.moveInDirection(Direction.UP); },
|
||||
'move-down': () => { this.windowManager.moveInDirection(Direction.DOWN); },
|
||||
};
|
||||
}
|
||||
|
||||
@@ -61,6 +56,14 @@ export default class aerospike extends Extension {
|
||||
this.refreshKeybinding(name);
|
||||
});
|
||||
});
|
||||
|
||||
this.settings.connect('changed::dropdown-option', () => {
|
||||
log(`Dropdown option changed to: ${this.settings.get_string('dropdown-option')}`);
|
||||
});
|
||||
|
||||
this.settings.connect('changed::color-selection', () => {
|
||||
log(`Color selection changed to: ${this.settings.get_string('color-selection')}`);
|
||||
});
|
||||
}
|
||||
|
||||
private refreshKeybinding(settingName: string) {
|
||||
|
||||
@@ -8,7 +8,7 @@ packages:
|
||||
|
||||
build: packages && build-schemas
|
||||
rm -rf dist/*
|
||||
pnpm run build
|
||||
pnpm exec tsc
|
||||
cp metadata.json dist/
|
||||
cp stylesheet.css dist/
|
||||
mkdir -p dist/schemas
|
||||
@@ -47,12 +47,6 @@ test-coverage:
|
||||
ci-local:
|
||||
act -W .gitea/workflows/build.yaml
|
||||
|
||||
lint:
|
||||
pnpm run lint
|
||||
|
||||
clean:
|
||||
pnpm run clean
|
||||
|
||||
#pack: build
|
||||
# gnome-extensions pack dist \
|
||||
# --force \
|
||||
|
||||
+7
-10
@@ -1,7 +1,7 @@
|
||||
{
|
||||
"name": "aerospike",
|
||||
"version": "0.2.2",
|
||||
"description": "Simple, Opinionated Tiling Window Manager for Gnome written in Typescript",
|
||||
"version": "0.2.0",
|
||||
"description": "A TypeScript GNOME Extension for Pretty Borders",
|
||||
"type": "module",
|
||||
"private": true,
|
||||
"repository": {
|
||||
@@ -9,30 +9,27 @@
|
||||
"url": "git+https://gitlab.com/lucasoskorep/aerospike"
|
||||
},
|
||||
"author": "Lucas Oskorep <lucas.oskorep@gmail.com>",
|
||||
"license": "GPL-3.0-only",
|
||||
"license": "LGPL-3.0-or-later",
|
||||
"bugs": {
|
||||
"url": "https://github.com/lucasoskorep/aerospike-gnome/issues"
|
||||
"url": "https://github.com/example/my-extension/issues"
|
||||
},
|
||||
"homepage": "https://github.com/lucasoskorep/aerospike-gnome/#readme",
|
||||
"homepage": "https://github.com/example/my-extension#readme",
|
||||
"sideEffects": false,
|
||||
"scripts": {
|
||||
"build": "tsc",
|
||||
"clean": "rm -rf dist/*",
|
||||
"lint": "eslint .",
|
||||
"test": "jest",
|
||||
"test:watch": "jest --watch",
|
||||
"test:coverage": "jest --coverage"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@girs/gjs": "4.0.0-beta.38",
|
||||
"@girs/gnome-shell": "50.0.0",
|
||||
"@girs/gnome-shell": "49.1.0",
|
||||
"@jest/globals": "^30.0.0",
|
||||
"@types/jest": "^30.0.0",
|
||||
"eslint": "^10.0.0",
|
||||
"eslint-plugin-jsdoc": "^62.0.0",
|
||||
"jest": "^30.0.0",
|
||||
"ts-jest": "^29.1.2",
|
||||
"typescript": "^6.0.0"
|
||||
"typescript": "^5.9.2"
|
||||
},
|
||||
"dependencies": {
|
||||
"@girs/mtk-17": "17.0.0-4.0.0-beta.38"
|
||||
|
||||
Generated
+156
-166
@@ -34,8 +34,8 @@ importers:
|
||||
specifier: 4.0.0-beta.38
|
||||
version: 4.0.0-beta.38
|
||||
'@girs/gnome-shell':
|
||||
specifier: 50.0.0
|
||||
version: 50.0.0
|
||||
specifier: 49.1.0
|
||||
version: 49.1.0
|
||||
'@jest/globals':
|
||||
specifier: ^30.0.0
|
||||
version: 30.2.0
|
||||
@@ -53,10 +53,10 @@ importers:
|
||||
version: 30.2.0(@types/node@25.1.0)
|
||||
ts-jest:
|
||||
specifier: ^29.1.2
|
||||
version: 29.4.6(@babel/core@7.28.6)(@jest/transform@30.2.0)(@jest/types@30.2.0)(babel-jest@30.2.0(@babel/core@7.28.6))(jest-util@30.2.0)(jest@30.2.0(@types/node@25.1.0))(typescript@6.0.3)
|
||||
version: 29.4.6(@babel/core@7.28.6)(@jest/transform@30.2.0)(@jest/types@30.2.0)(babel-jest@30.2.0(@babel/core@7.28.6))(jest-util@30.2.0)(jest@30.2.0(@types/node@25.1.0))(typescript@5.9.3)
|
||||
typescript:
|
||||
specifier: ^6.0.0
|
||||
version: 6.0.3
|
||||
specifier: ^5.9.2
|
||||
version: 5.9.3
|
||||
|
||||
packages:
|
||||
|
||||
@@ -272,38 +272,38 @@ packages:
|
||||
resolution: {integrity: sha512-bIZEUzOI1jkhviX2cp5vNyXQc6olzb2ohewQubuYlMXZ2Q/XjBO0x0XhGPvc9fjSIiUN0vw+0hq53BJ4eQSJKQ==}
|
||||
engines: {node: ^20.19.0 || ^22.13.0 || >=24}
|
||||
|
||||
'@girs/accountsservice-1.0@1.0.0-4.0.0-rc.9':
|
||||
resolution: {integrity: sha512-8duXs1yABr8POmqhnJjnU8pIrOmSdzRMdFjHhHgJeqZslU9oNB5qY47k0tVeIhzGREQ3kTWM6Fx57mzPVn8Stw==}
|
||||
'@girs/accountsservice-1.0@1.0.0-4.0.0-beta.38':
|
||||
resolution: {integrity: sha512-6QzytM5dztmMynF2bxN73EuNK9ArMFxkP2L8wUC7IH45zBeBOfYcqL85BFh2PmkGmqRk+Rli5EFR8dAkx3Ig5Q==}
|
||||
|
||||
'@girs/adw-1@1.10.0-4.0.0-rc.9':
|
||||
resolution: {integrity: sha512-4B5U3QeEHnFUMs6YqKCq3SoCAamjtialC1VgCcMcL6J+aUaLb0cLKad0Vpld77FMyF7FuHmqBoTJGXudKnDDSw==}
|
||||
'@girs/adw-1@1.9.0-4.0.0-beta.38':
|
||||
resolution: {integrity: sha512-d9tPlKWLpI3gEz72s1G3tX57nNCQjLopOy6I3CNucOmqlF2PFC4f+Ubq8BOMrVFqbTOl/HkAu7vfGuRP+FjHNQ==}
|
||||
|
||||
'@girs/atk-1.0@2.60.0-4.0.0-rc.9':
|
||||
resolution: {integrity: sha512-HkLEKh/4jdY078iYQFILumcDXgtrpVwxWD4Db4HfFcMJMppy2/Rcw1Ng+teRPPkMAmtNNu/LsoyMMtJFFhUccg==}
|
||||
'@girs/atk-1.0@2.58.0-4.0.0-beta.38':
|
||||
resolution: {integrity: sha512-rfLlLlAecHE1uAqK81DHZT27E1nVwN/pAHtgbgDUcu70UdHoCYAsQymLjk/tuDcTX0Lwp6U9x6w+GHG1sbYlQA==}
|
||||
|
||||
'@girs/cairo-1.0@1.0.0-4.0.0-beta.38':
|
||||
resolution: {integrity: sha512-VJa0vw9teZjCydDzWIcbNBwT37MSej52rqwBuQ/ir7+72+7dpzeudkNOOif1nDIulGu+RLAy4cgWbguQhsUH/Q==}
|
||||
|
||||
'@girs/clutter-18@18.0.0-4.0.0-rc.9':
|
||||
resolution: {integrity: sha512-7Cc8eTIJjjZgBNpyxJL9bjttjzmK4aemHOPdWapepB8h36HGgniavmihlEmLLIq1MG2CBm9/yF/ZxLSeqfjEzA==}
|
||||
'@girs/clutter-17@17.0.0-4.0.0-beta.38':
|
||||
resolution: {integrity: sha512-RMEuc08wCaqIc3UcGdJr183kcN7VD0Q2v5WLczK9/Hn2gfo7xcc+BWjPcsSu4SuBpJPwF248jc+2IBbdXBGbCA==}
|
||||
|
||||
'@girs/cogl-18@18.0.0-4.0.0-rc.9':
|
||||
resolution: {integrity: sha512-BWhNUyNl31T7kItXyHeCHomhlasrhk+PJ1rfJmnah8b6qeMqg7MFn5Q0zlN4finhPUjpuq2iwwNNgElDYO2ECw==}
|
||||
'@girs/cogl-17@17.0.0-4.0.0-beta.38':
|
||||
resolution: {integrity: sha512-fj4lZ07ZfcOwXAE/orU6cfP3Tlf1LUhfEgVFE3CAQs6nfSOtWzPYDzcaWmg4fYd6CA7iP1NmXh3slCxhzcbuJg==}
|
||||
|
||||
'@girs/cogl-2.0@2.0.0-4.0.0-rc.9':
|
||||
resolution: {integrity: sha512-FPJJyAFsZIdikS/yzRkSTitBqh0da1U4iWZEUwV1+eHgoSsGbYa+03cL5n2n63RzdqobhqrykYGen2J/ONuNIg==}
|
||||
'@girs/cogl-2.0@2.0.0-4.0.0-beta.38':
|
||||
resolution: {integrity: sha512-CgCDd2htvMjLXkUaDrfpFhpw7XVBs9eEQpNVXhU6A8NXxN/FetLt7y9sPiwSWtlL3WYxLqO3Zn0hKR5j7CRAVA==}
|
||||
|
||||
'@girs/freetype2-2.0@2.0.0-4.0.0-beta.38':
|
||||
resolution: {integrity: sha512-543dlQheKHSVWIatqHNBiLceIWYzIJDXvofR3PfgarKMMi0IRkn1TndzxUxsLC4Eu24KgOKGZYjU1YPUMVGbgg==}
|
||||
|
||||
'@girs/gck-2@4.4.0-4.0.0-rc.9':
|
||||
resolution: {integrity: sha512-lvAZfNfe7vqTs+djPKGEJ8Nn/KhEyM+8dDbvvMM1sd7ODntOYG4iN9SyGEHWWI6a+UsMBqWHA46THMU84+J3QA==}
|
||||
'@girs/gck-2@4.4.0-4.0.0-beta.38':
|
||||
resolution: {integrity: sha512-yy8TDv4G4SsM1U7sfKf07A01YxD5DpUN4eHEQodj6NzgXogdaeS/vmM7clChedlw0LkOebn68JVIfTja3rJLJw==}
|
||||
|
||||
'@girs/gcr-4@4.4.0-4.0.0-rc.9':
|
||||
resolution: {integrity: sha512-yLyJE+QciI+t+jQ4A2kP2T4WQAxXIjCIPLZF2PxPCwsNt20ZQC6WppMg4FMbolVtnHnVZyb6+2Qx9ubTU6kQLg==}
|
||||
'@girs/gcr-4@4.4.0-4.0.0-beta.38':
|
||||
resolution: {integrity: sha512-dGEWwPhGWRBNgoI/TzX0whcGsKEbx9VXAcOWJdyHiB7HUefeECWxGHlcWK8NZD6mr0jhln+RjFiv/tB1QKUUDw==}
|
||||
|
||||
'@girs/gdesktopenums-3.0@3.0.0-4.0.0-rc.9':
|
||||
resolution: {integrity: sha512-0QVmQvhPoYhwGFIT1exQEDxRV9Ej5AnSdRjJD4T4dEPmiAYTkvhpLMmT7Vutyr1iRWYLYO3M2AXF0z2X6fVpDA==}
|
||||
'@girs/gdesktopenums-3.0@3.0.0-4.0.0-beta.38':
|
||||
resolution: {integrity: sha512-wOwzQ6Q2RQxuWY/oe4yiDqtNV2TrLosteu698asWum4R3BLRIks3oVOghpTMlgKeA54fkvqOQ165E1OOAoW8YQ==}
|
||||
|
||||
'@girs/gdk-4.0@4.0.0-4.0.0-beta.38':
|
||||
resolution: {integrity: sha512-hk6SG4pCcezKp2VNxJc0TC1gkZe3C8shD8sRQ3bUGyWl/9581WM2/8UU+W6fOf3SwXA1hquN6d3SjKbqkFNRKg==}
|
||||
@@ -311,20 +311,20 @@ packages:
|
||||
'@girs/gdkpixbuf-2.0@2.0.0-4.0.0-beta.38':
|
||||
resolution: {integrity: sha512-L8NE18rhj100lRGMnf7lNUdr6pHw2co1UtExxDnglba5lNee4NoyF/u8g4Mk3toPU0fAu+ug91HJ4o2mIJd7MQ==}
|
||||
|
||||
'@girs/gdm-1.0@1.0.0-4.0.0-rc.9':
|
||||
resolution: {integrity: sha512-0+Sr4mZGHI/b3J6XdVNrpW3M4AnqufBkdztHqb8PVdXI/4aPTBqxFnmHT11JljgoMSHd5NJtzsc9HNl7DJYpKA==}
|
||||
'@girs/gdm-1.0@1.0.0-4.0.0-beta.38':
|
||||
resolution: {integrity: sha512-THhxqOlt75mv3PmmLMe0Y5wdXIf0XbIIKuBuScSFO+3Vp5sgHJz+UXfktVzwKKCTN4PkAU01zBlMW6gRsyLsQA==}
|
||||
|
||||
'@girs/gio-2.0@2.86.0-4.0.0-beta.38':
|
||||
resolution: {integrity: sha512-hKCyDEqSIgqcZeFf63KNrUnrYtAuJ0yfIypbdLgNEMbJBPQ/e3ZiwzWa7i3OPCh52Cnl9qYRdj8MSbZndpyZiQ==}
|
||||
|
||||
'@girs/giounix-2.0@2.0.0-4.0.0-rc.9':
|
||||
resolution: {integrity: sha512-kxZrKi0Gp7jSAYuNLF9ioWVfHXSB2j/kDPwUk7UJP9aJWYqZ5OFOD7qVw3gf+XryX0s4/vyRIscjdbEdbW/pUQ==}
|
||||
'@girs/giounix-2.0@2.0.0-4.0.0-beta.38':
|
||||
resolution: {integrity: sha512-dSEbx3f/qFQTJLDFYy8DK5YRMtNc3RnWTuTaaKVN8FMeTiJRLVED+uv5LLR1zvjGac0R1mg0wqpwRTybVhfUXA==}
|
||||
|
||||
'@girs/gjs@4.0.0-beta.38':
|
||||
resolution: {integrity: sha512-eI/9lfI1mQpXN8RsKiNRFWJso6LgQe9Eb+YxLAdKarD5fccvIRx3chsyIyhw5tYH7VvgaZkqm1c4GX7pDDokBQ==}
|
||||
|
||||
'@girs/gl-1.0@1.0.0-4.0.0-rc.9':
|
||||
resolution: {integrity: sha512-3dLvDGURVM6nSV/WyvuSWCtDwDoZCROAObt8vLSY8erIr7tJL0/ejjXYEM/Fg08iBVUizH5yr51ewEwrHFEyYg==}
|
||||
'@girs/gl-1.0@1.0.0-4.0.0-beta.38':
|
||||
resolution: {integrity: sha512-ZcqPtWLEoaQraYgfhpk8tUAOCVp4aSOBdr+7XB/HhmTiG80hLktc11n1ETPFlTfeUhsnvBLhejZBax9diWLVcg==}
|
||||
|
||||
'@girs/glib-2.0@2.86.0-4.0.0-beta.38':
|
||||
resolution: {integrity: sha512-TFbrh5+Y3pb61synbhi37VrRzh0e+JQaRCzfGbe7oewUq0v7Sb8eSi2Fmj98r5tCizaRYptqgt6bxG7G5cFzVg==}
|
||||
@@ -332,17 +332,17 @@ packages:
|
||||
'@girs/gmodule-2.0@2.0.0-4.0.0-beta.38':
|
||||
resolution: {integrity: sha512-BmspJtwdBSfCJRZQMxn3gx6H9FNcoqCebFXK2UKknq18DIo8U2q4iN/jQBWPoLh2siK9LhCdL2egoyXteTy1NA==}
|
||||
|
||||
'@girs/gnome-shell@50.0.0':
|
||||
resolution: {integrity: sha512-ki3VBO/WUvinGRB8lSPa6Rn0qJwEs3cQOvZa/P8MzM/68mujLPy453qVT6fwyMPqHVusAv3JZuj9HnUewx1GeQ==}
|
||||
'@girs/gnome-shell@49.1.0':
|
||||
resolution: {integrity: sha512-14Re6+DIrozWOErzW9fqvTAn0o9/1rMZuSDQ7BPIC+MYxmNmIlqzjo0kecbkXMN4ZY1zRpgfahbkiFwjJYZmfQ==}
|
||||
|
||||
'@girs/gnomebg-4.0@4.0.0-4.0.0-rc.9':
|
||||
resolution: {integrity: sha512-JskLEUkDU4EFiiUcmJuVag0HZG8JrqLmWp7g+tThjsVwTqtN6NnfEzynY2OhaEuqzbzyWtorYTElpvcjgGTHhA==}
|
||||
'@girs/gnomebg-4.0@4.0.0-4.0.0-beta.38':
|
||||
resolution: {integrity: sha512-cTJIgX9ybCUIXJ0yDaBRICIAHoApqcjDdtSgbbYJQdRs7HCGPocblA9UP7Bmp155U/p4UIR2WMqpS+ttVbWBew==}
|
||||
|
||||
'@girs/gnomebluetooth-3.0@3.0.0-4.0.0-rc.9':
|
||||
resolution: {integrity: sha512-9o2G+V8/HhxXP/E74Y2MBw+ocENGtKzVzLR3A+EmJZgfncWgJddQvDN3udasKxhriPbWPa8unsElI3mNg4f6vg==}
|
||||
'@girs/gnomebluetooth-3.0@3.0.0-4.0.0-beta.38':
|
||||
resolution: {integrity: sha512-39h4y38Rw2BvMWj190zJhDoT5Ehnh4XsX5vqt1Ix88oFOtZ7hdxVQWJ4Vxg0nYMwKN3SIqGA1KeaGcwfeOYVXQ==}
|
||||
|
||||
'@girs/gnomedesktop-4.0@4.0.0-4.0.0-rc.9':
|
||||
resolution: {integrity: sha512-2vCY79lNR+IcrxT6g0u8vG7g/wLVsWUloryOBmk0BtwabABhfVPJ2xcecHCpmhQwGmutAlhDfxjAxRWgN219mg==}
|
||||
'@girs/gnomedesktop-4.0@4.0.0-4.0.0-beta.38':
|
||||
resolution: {integrity: sha512-dVeHh4R3HlWQ1Up9N1V09cMiOXst073WQFJ3pJfmJ45RkbJLLlNZrLjO5+e1GUyF9Bq1NzDgTBOUR4xCIIW6dw==}
|
||||
|
||||
'@girs/gobject-2.0@2.86.0-4.0.0-beta.38':
|
||||
resolution: {integrity: sha512-oYrm6Gb/tCQosMkN8Beu5jqGRkJ7LED4O1H1dKYOI4SnP1Ojb66A9ECy78yTO8piBtMopsbRODV81yKniVtKKA==}
|
||||
@@ -356,23 +356,20 @@ packages:
|
||||
'@girs/gtk-4.0@4.20.1-4.0.0-beta.38':
|
||||
resolution: {integrity: sha512-lNujJDta1YK3/9Inp5HrtF/JOMN5EmD+3U7diRTyWNzc2KdaN2jO2mk90taaGK28xhoCC+VESkFkQAgFTwZXWw==}
|
||||
|
||||
'@girs/gvc-1.0@1.0.0-4.0.0-rc.9':
|
||||
resolution: {integrity: sha512-irlujv9x1vqLMQJ5zA60ktky6JW/+f8RoG4yUE2Olbnraqfw4wZRB84isvMYmqeSOdjRgIQIRLPAdr0Qc8kC/w==}
|
||||
'@girs/gvc-1.0@1.0.0-4.0.0-beta.38':
|
||||
resolution: {integrity: sha512-AUJ+6Aj7y9Q/3RYTCQJBtr1sckUodwJaE3ue1Ap7bCOy/ybiZdCGlucJqSfpT8B3VV5SUztqlxEcOhyGgpvtNQ==}
|
||||
|
||||
'@girs/harfbuzz-0.0@11.5.0-4.0.0-beta.38':
|
||||
resolution: {integrity: sha512-XRf/neZYpEkinNZ8SCRKIao3RNVJzMeYcjuO1b1tbqVCrN7uVZ+MIaDW5NjWKi0K6IQSyZWdDgkzrtOrIN4CWQ==}
|
||||
|
||||
'@girs/meta-18@18.0.0-4.0.0-rc.9':
|
||||
resolution: {integrity: sha512-B1tH6ddFAFJCUd9dtgshBuwe6SlL6z1cptgvR0ndGSmjPFifoBx/+JzVYi/SBd3r72kfMu2pVAWhB9NLkMPciA==}
|
||||
'@girs/meta-17@17.0.0-4.0.0-beta.38':
|
||||
resolution: {integrity: sha512-mP2q0hcVSuEzdavw6Lp3X5dHnG5F5B37GN0JAKX8v3jnpJ28HlcrsadtW9SmCmX5EHDc5pVyslcnNoF3YD1fJQ==}
|
||||
|
||||
'@girs/mtk-17@17.0.0-4.0.0-beta.38':
|
||||
resolution: {integrity: sha512-1uTef46Q2rjjsSaUXJnKdN3vZC8dktn1xX1mpwaTDbSyZ85Og9DGa95N1ZJFSRqmXuR3roYh6m5WxhoF59E9zA==}
|
||||
|
||||
'@girs/mtk-18@18.0.0-4.0.0-rc.9':
|
||||
resolution: {integrity: sha512-RZNogW9fXniYULnehd1L90oC6mauFZwI8Kzvc0kNAfddmYu7wTWW0Nk5Ksa99F5zlAcLEps8zAVsjv/Z6b4l9A==}
|
||||
|
||||
'@girs/nm-1.0@1.56.0-4.0.0-rc.9':
|
||||
resolution: {integrity: sha512-DL3u2q9P76fD+rwb73tPNczaCd3NtvOpOQyW2y8z+PzlqPWGRcmFX3UM6pYI5oStFutzRkp4Wj/Fb9uA+bOJ6Q==}
|
||||
'@girs/nm-1.0@1.49.4-4.0.0-beta.38':
|
||||
resolution: {integrity: sha512-m0+qaufIW4LLrz7yx2qLCryF1Oq6MTzvLXb28KGv1iA99WVr+74ytGgUbvxCAh3fbPErSb1UCpemLr/7SmwT4g==}
|
||||
|
||||
'@girs/pango-1.0@1.57.0-4.0.0-beta.38':
|
||||
resolution: {integrity: sha512-fnTzVVhKb4XjGrnuqk9X++KDe2bk84Hg5472O2UrtIT1A6dzMS6gWhSvaw0ULZH/Ypj9WN12B0oceWynR6unLw==}
|
||||
@@ -380,29 +377,29 @@ packages:
|
||||
'@girs/pangocairo-1.0@1.0.0-4.0.0-beta.38':
|
||||
resolution: {integrity: sha512-BY4rEgQW0H1c/24v+FGBjSZgZ6rk2Y4+ka9/WldUs74N1ZOh6nS4lHKUyy0antylQ7x0Fnw5UHgN0PbpdjkGuQ==}
|
||||
|
||||
'@girs/polkit-1.0@1.0.0-4.0.0-rc.9':
|
||||
resolution: {integrity: sha512-pI033V7ALtm4Xu5vZLVsekvP+iCFgbNlhErmmgTZoEnNjsGBS1TFlR1V6ty633MzPGKjoohBiCJCIVmWXr6hiw==}
|
||||
'@girs/polkit-1.0@1.0.0-4.0.0-beta.38':
|
||||
resolution: {integrity: sha512-jcz4/vUtchFQyM3OjSzpEAahsZ2/TGttgxcuxDeEGUMXrIjh7YC4w1oq2CLsRbTyVe843ZLNEkmR+dNGsAMfvQ==}
|
||||
|
||||
'@girs/polkitagent-1.0@1.0.0-4.0.0-rc.9':
|
||||
resolution: {integrity: sha512-FxMTRAaHtDeKM+wnIBm/33NVmul+kCTpfP3p4eShMllGL+vSS5Sz9y5/PKzD0lE9dCUJ9JYOUshgQXvTE/bDWg==}
|
||||
'@girs/polkitagent-1.0@1.0.0-4.0.0-beta.38':
|
||||
resolution: {integrity: sha512-I4v8/4ID0nGm7z6muGr3KxdavMFTEZbCw5vTXfenRx6hptIjed3XspExY4komxO03ImGUQ9e+bsC0g2gSvMesg==}
|
||||
|
||||
'@girs/shell-18@18.0.0-4.0.0-rc.9':
|
||||
resolution: {integrity: sha512-xss5m61UlvhZfz2r/ORnzmQzo33T48Wqbq+TsW1/IRV1i7BRK9mZVbNpKHvrdSfH8B5Vd8Awsqx4grxn6su5Lw==}
|
||||
'@girs/shell-17@17.0.0-4.0.0-beta.38':
|
||||
resolution: {integrity: sha512-9NKUpq55Sp1XTnu8qAOr6mD0fpMS080BZIWaEpD7RplI38GL0UOmusME5DBkrCtPYoL08ZrQDnBy5w8FYhaWIw==}
|
||||
|
||||
'@girs/shew-0@0.0.0-4.0.0-rc.9':
|
||||
resolution: {integrity: sha512-uxRFPv5JQ7jXZQv0y0xc29fzli3YjWZXQYf6KKGzr41cWbMkrXRRj3w0C8iPpSvTm+11DYozte8bkT2C2t2vTA==}
|
||||
'@girs/shew-0@0.0.0-4.0.0-beta.38':
|
||||
resolution: {integrity: sha512-tNnIRXseBBrVXk2v5t5MkSM23sAcNvnUMrLLEJYyjn2iTmspImvIT/0s8obPkJk2rK+TwP3nlgPjJILkUDWnaw==}
|
||||
|
||||
'@girs/st-18@18.0.0-4.0.0-rc.9':
|
||||
resolution: {integrity: sha512-ixhU9uzWxFuKWsTVWxxgLFdSg467mSOnpCv4xOCM0+rvEUvJ2okx5uhWB7bM5fkIf1ovVIYPuP0x5v0wmEaZRw==}
|
||||
'@girs/st-17@17.0.0-4.0.0-beta.38':
|
||||
resolution: {integrity: sha512-AGW+9E2SRZl1fD1q7iiDSaeR8AWV8zxYnlMixjoSGDP+MYiG2tb15l5dERZiszDUoIe0s8COvVbzfLp1ocSSlw==}
|
||||
|
||||
'@girs/upowerglib-1.0@1.91.1-4.0.0-rc.9':
|
||||
resolution: {integrity: sha512-CBH7QfDMZ4eSJLbdobaKgF6qYPRs0AZf0AVPI387FI+xVdv/cfv2v0e34e88ZlDdDYSX4Q+ZrZnnxuO3nfjVkQ==}
|
||||
'@girs/upowerglib-1.0@0.99.1-4.0.0-beta.38':
|
||||
resolution: {integrity: sha512-tZTnoX4S1HbmgwsZfSWrs3uD+KKPdNX+YkEiu9Zz92dt6dPopV0oHa+10auo06hPjZbwaUMgTlGZ9bofeQCw6Q==}
|
||||
|
||||
'@girs/xfixes-4.0@4.0.0-4.0.0-rc.9':
|
||||
resolution: {integrity: sha512-16G3hIkM8ermzg5wqA3Hn4dpB07MFFp3NkNmAaQW6y8isTezk+N5rYA+MXUVwKfFFngSwwY8zEspZs7I+r71aQ==}
|
||||
'@girs/xfixes-4.0@4.0.0-4.0.0-beta.38':
|
||||
resolution: {integrity: sha512-wca07voYv60UdTCCr8gPJ9GARR+GZyLu6grZZs/GftZ0w00VP3NQK2kJedi28EGwK3Row2nQtsCtQHZGrXH/VA==}
|
||||
|
||||
'@girs/xlib-2.0@2.0.0-4.0.0-rc.9':
|
||||
resolution: {integrity: sha512-DeZWf8K5YShAVAvwTRMcBv9TXfdTps06kohAFZlc3jj4JFCOGASIQOHhUapLab5d0YBDvRBN/n21M8Jictu6Ng==}
|
||||
'@girs/xlib-2.0@2.0.0-4.0.0-beta.38':
|
||||
resolution: {integrity: sha512-PK3s6NowmlY65E/Y9BqwR1lVKsZSWQJm/za1I47SvL1IVWcEHYWRZdDtYZjfmbUlUqqKkfoMt+bUCmhmQk/eYQ==}
|
||||
|
||||
'@humanfs/core@0.19.1':
|
||||
resolution: {integrity: sha512-5DyQ4+1JEUzejeK1JGICcideyfUbGixgS9jNgex5nqkW+cY7WZhxBigmieN5Qnw9ZosSNVC9KQKyb+GUaGyKUA==}
|
||||
@@ -1713,8 +1710,8 @@ packages:
|
||||
resolution: {integrity: sha512-TeTSQ6H5YHvpqVwBRcnLDCBnDOHWYu7IvGbHT6N8AOymcr9PJGjc1GTtiWZTYg0NCgYwvnYWEkVChQAr9bjfwA==}
|
||||
engines: {node: '>=16'}
|
||||
|
||||
typescript@6.0.3:
|
||||
resolution: {integrity: sha512-y2TvuxSZPDyQakkFRPZHKFm+KKVqIisdg9/CZwm9ftvKXLP8NRWj38/ODjNbr43SsoXqNuAisEf1GdCxqWcdBw==}
|
||||
typescript@5.9.3:
|
||||
resolution: {integrity: sha512-jl1vZzPDinLr9eUt3J/t7V6FgNEw9QjvBPdysz9KfQDD41fQrC2Y4vKQdiaUpFT4bXlb1RHhLpp8wtm6M5TgSw==}
|
||||
engines: {node: '>=14.17'}
|
||||
hasBin: true
|
||||
|
||||
@@ -2038,7 +2035,7 @@ snapshots:
|
||||
'@eslint/core': 1.1.0
|
||||
levn: 0.4.1
|
||||
|
||||
'@girs/accountsservice-1.0@1.0.0-4.0.0-rc.9':
|
||||
'@girs/accountsservice-1.0@1.0.0-4.0.0-beta.38':
|
||||
dependencies:
|
||||
'@girs/gio-2.0': 2.86.0-4.0.0-beta.38
|
||||
'@girs/gjs': 4.0.0-beta.38
|
||||
@@ -2046,7 +2043,7 @@ snapshots:
|
||||
'@girs/gmodule-2.0': 2.0.0-4.0.0-beta.38
|
||||
'@girs/gobject-2.0': 2.86.0-4.0.0-beta.38
|
||||
|
||||
'@girs/adw-1@1.10.0-4.0.0-rc.9':
|
||||
'@girs/adw-1@1.9.0-4.0.0-beta.38':
|
||||
dependencies:
|
||||
'@girs/cairo-1.0': 1.0.0-4.0.0-beta.38
|
||||
'@girs/freetype2-2.0': 2.0.0-4.0.0-beta.38
|
||||
@@ -2064,7 +2061,7 @@ snapshots:
|
||||
'@girs/pango-1.0': 1.57.0-4.0.0-beta.38
|
||||
'@girs/pangocairo-1.0': 1.0.0-4.0.0-beta.38
|
||||
|
||||
'@girs/atk-1.0@2.60.0-4.0.0-rc.9':
|
||||
'@girs/atk-1.0@2.58.0-4.0.0-beta.38':
|
||||
dependencies:
|
||||
'@girs/gjs': 4.0.0-beta.38
|
||||
'@girs/glib-2.0': 2.86.0-4.0.0-beta.38
|
||||
@@ -2076,36 +2073,36 @@ snapshots:
|
||||
'@girs/glib-2.0': 2.86.0-4.0.0-beta.38
|
||||
'@girs/gobject-2.0': 2.86.0-4.0.0-beta.38
|
||||
|
||||
'@girs/clutter-18@18.0.0-4.0.0-rc.9':
|
||||
'@girs/clutter-17@17.0.0-4.0.0-beta.38':
|
||||
dependencies:
|
||||
'@girs/atk-1.0': 2.60.0-4.0.0-rc.9
|
||||
'@girs/atk-1.0': 2.58.0-4.0.0-beta.38
|
||||
'@girs/cairo-1.0': 1.0.0-4.0.0-beta.38
|
||||
'@girs/cogl-18': 18.0.0-4.0.0-rc.9
|
||||
'@girs/cogl-17': 17.0.0-4.0.0-beta.38
|
||||
'@girs/freetype2-2.0': 2.0.0-4.0.0-beta.38
|
||||
'@girs/gio-2.0': 2.86.0-4.0.0-beta.38
|
||||
'@girs/gjs': 4.0.0-beta.38
|
||||
'@girs/gl-1.0': 1.0.0-4.0.0-rc.9
|
||||
'@girs/gl-1.0': 1.0.0-4.0.0-beta.38
|
||||
'@girs/glib-2.0': 2.86.0-4.0.0-beta.38
|
||||
'@girs/gmodule-2.0': 2.0.0-4.0.0-beta.38
|
||||
'@girs/gobject-2.0': 2.86.0-4.0.0-beta.38
|
||||
'@girs/graphene-1.0': 1.0.0-4.0.0-beta.38
|
||||
'@girs/harfbuzz-0.0': 11.5.0-4.0.0-beta.38
|
||||
'@girs/mtk-18': 18.0.0-4.0.0-rc.9
|
||||
'@girs/mtk-17': 17.0.0-4.0.0-beta.38
|
||||
'@girs/pango-1.0': 1.57.0-4.0.0-beta.38
|
||||
|
||||
'@girs/cogl-18@18.0.0-4.0.0-rc.9':
|
||||
'@girs/cogl-17@17.0.0-4.0.0-beta.38':
|
||||
dependencies:
|
||||
'@girs/gjs': 4.0.0-beta.38
|
||||
'@girs/gl-1.0': 1.0.0-4.0.0-rc.9
|
||||
'@girs/gl-1.0': 1.0.0-4.0.0-beta.38
|
||||
'@girs/glib-2.0': 2.86.0-4.0.0-beta.38
|
||||
'@girs/gobject-2.0': 2.86.0-4.0.0-beta.38
|
||||
'@girs/graphene-1.0': 1.0.0-4.0.0-beta.38
|
||||
'@girs/mtk-18': 18.0.0-4.0.0-rc.9
|
||||
'@girs/mtk-17': 17.0.0-4.0.0-beta.38
|
||||
|
||||
'@girs/cogl-2.0@2.0.0-4.0.0-rc.9':
|
||||
'@girs/cogl-2.0@2.0.0-4.0.0-beta.38':
|
||||
dependencies:
|
||||
'@girs/gjs': 4.0.0-beta.38
|
||||
'@girs/gl-1.0': 1.0.0-4.0.0-rc.9
|
||||
'@girs/gl-1.0': 1.0.0-4.0.0-beta.38
|
||||
'@girs/glib-2.0': 2.86.0-4.0.0-beta.38
|
||||
'@girs/gobject-2.0': 2.86.0-4.0.0-beta.38
|
||||
|
||||
@@ -2114,7 +2111,7 @@ snapshots:
|
||||
'@girs/gjs': 4.0.0-beta.38
|
||||
'@girs/gobject-2.0': 2.86.0-4.0.0-beta.38
|
||||
|
||||
'@girs/gck-2@4.4.0-4.0.0-rc.9':
|
||||
'@girs/gck-2@4.4.0-4.0.0-beta.38':
|
||||
dependencies:
|
||||
'@girs/gio-2.0': 2.86.0-4.0.0-beta.38
|
||||
'@girs/gjs': 4.0.0-beta.38
|
||||
@@ -2122,16 +2119,16 @@ snapshots:
|
||||
'@girs/gmodule-2.0': 2.0.0-4.0.0-beta.38
|
||||
'@girs/gobject-2.0': 2.86.0-4.0.0-beta.38
|
||||
|
||||
'@girs/gcr-4@4.4.0-4.0.0-rc.9':
|
||||
'@girs/gcr-4@4.4.0-4.0.0-beta.38':
|
||||
dependencies:
|
||||
'@girs/gck-2': 4.4.0-4.0.0-rc.9
|
||||
'@girs/gck-2': 4.4.0-4.0.0-beta.38
|
||||
'@girs/gio-2.0': 2.86.0-4.0.0-beta.38
|
||||
'@girs/gjs': 4.0.0-beta.38
|
||||
'@girs/glib-2.0': 2.86.0-4.0.0-beta.38
|
||||
'@girs/gmodule-2.0': 2.0.0-4.0.0-beta.38
|
||||
'@girs/gobject-2.0': 2.86.0-4.0.0-beta.38
|
||||
|
||||
'@girs/gdesktopenums-3.0@3.0.0-4.0.0-rc.9':
|
||||
'@girs/gdesktopenums-3.0@3.0.0-4.0.0-beta.38':
|
||||
dependencies:
|
||||
'@girs/gjs': 4.0.0-beta.38
|
||||
'@girs/gobject-2.0': 2.86.0-4.0.0-beta.38
|
||||
@@ -2158,7 +2155,7 @@ snapshots:
|
||||
'@girs/gmodule-2.0': 2.0.0-4.0.0-beta.38
|
||||
'@girs/gobject-2.0': 2.86.0-4.0.0-beta.38
|
||||
|
||||
'@girs/gdm-1.0@1.0.0-4.0.0-rc.9':
|
||||
'@girs/gdm-1.0@1.0.0-4.0.0-beta.38':
|
||||
dependencies:
|
||||
'@girs/gio-2.0': 2.86.0-4.0.0-beta.38
|
||||
'@girs/gjs': 4.0.0-beta.38
|
||||
@@ -2173,7 +2170,7 @@ snapshots:
|
||||
'@girs/gmodule-2.0': 2.0.0-4.0.0-beta.38
|
||||
'@girs/gobject-2.0': 2.86.0-4.0.0-beta.38
|
||||
|
||||
'@girs/giounix-2.0@2.0.0-4.0.0-rc.9':
|
||||
'@girs/giounix-2.0@2.0.0-4.0.0-beta.38':
|
||||
dependencies:
|
||||
'@girs/gio-2.0': 2.86.0-4.0.0-beta.38
|
||||
'@girs/gjs': 4.0.0-beta.38
|
||||
@@ -2188,7 +2185,7 @@ snapshots:
|
||||
'@girs/glib-2.0': 2.86.0-4.0.0-beta.38
|
||||
'@girs/gobject-2.0': 2.86.0-4.0.0-beta.38
|
||||
|
||||
'@girs/gl-1.0@1.0.0-4.0.0-rc.9':
|
||||
'@girs/gl-1.0@1.0.0-4.0.0-beta.38':
|
||||
dependencies:
|
||||
'@girs/gjs': 4.0.0-beta.38
|
||||
'@girs/gobject-2.0': 2.86.0-4.0.0-beta.38
|
||||
@@ -2204,51 +2201,51 @@ snapshots:
|
||||
'@girs/glib-2.0': 2.86.0-4.0.0-beta.38
|
||||
'@girs/gobject-2.0': 2.86.0-4.0.0-beta.38
|
||||
|
||||
'@girs/gnome-shell@50.0.0':
|
||||
'@girs/gnome-shell@49.1.0':
|
||||
dependencies:
|
||||
'@girs/accountsservice-1.0': 1.0.0-4.0.0-rc.9
|
||||
'@girs/adw-1': 1.10.0-4.0.0-rc.9
|
||||
'@girs/atk-1.0': 2.60.0-4.0.0-rc.9
|
||||
'@girs/clutter-18': 18.0.0-4.0.0-rc.9
|
||||
'@girs/cogl-2.0': 2.0.0-4.0.0-rc.9
|
||||
'@girs/gcr-4': 4.4.0-4.0.0-rc.9
|
||||
'@girs/gdm-1.0': 1.0.0-4.0.0-rc.9
|
||||
'@girs/accountsservice-1.0': 1.0.0-4.0.0-beta.38
|
||||
'@girs/adw-1': 1.9.0-4.0.0-beta.38
|
||||
'@girs/atk-1.0': 2.58.0-4.0.0-beta.38
|
||||
'@girs/clutter-17': 17.0.0-4.0.0-beta.38
|
||||
'@girs/cogl-2.0': 2.0.0-4.0.0-beta.38
|
||||
'@girs/gcr-4': 4.4.0-4.0.0-beta.38
|
||||
'@girs/gdm-1.0': 1.0.0-4.0.0-beta.38
|
||||
'@girs/gio-2.0': 2.86.0-4.0.0-beta.38
|
||||
'@girs/giounix-2.0': 2.0.0-4.0.0-rc.9
|
||||
'@girs/giounix-2.0': 2.0.0-4.0.0-beta.38
|
||||
'@girs/gjs': 4.0.0-beta.38
|
||||
'@girs/glib-2.0': 2.86.0-4.0.0-beta.38
|
||||
'@girs/gnomebg-4.0': 4.0.0-4.0.0-rc.9
|
||||
'@girs/gnomebluetooth-3.0': 3.0.0-4.0.0-rc.9
|
||||
'@girs/gnomedesktop-4.0': 4.0.0-4.0.0-rc.9
|
||||
'@girs/gnomebg-4.0': 4.0.0-4.0.0-beta.38
|
||||
'@girs/gnomebluetooth-3.0': 3.0.0-4.0.0-beta.38
|
||||
'@girs/gnomedesktop-4.0': 4.0.0-4.0.0-beta.38
|
||||
'@girs/gobject-2.0': 2.86.0-4.0.0-beta.38
|
||||
'@girs/gtk-4.0': 4.20.1-4.0.0-beta.38
|
||||
'@girs/gvc-1.0': 1.0.0-4.0.0-rc.9
|
||||
'@girs/meta-18': 18.0.0-4.0.0-rc.9
|
||||
'@girs/mtk-18': 18.0.0-4.0.0-rc.9
|
||||
'@girs/polkit-1.0': 1.0.0-4.0.0-rc.9
|
||||
'@girs/shell-18': 18.0.0-4.0.0-rc.9
|
||||
'@girs/shew-0': 0.0.0-4.0.0-rc.9
|
||||
'@girs/st-18': 18.0.0-4.0.0-rc.9
|
||||
'@girs/upowerglib-1.0': 1.91.1-4.0.0-rc.9
|
||||
'@girs/gvc-1.0': 1.0.0-4.0.0-beta.38
|
||||
'@girs/meta-17': 17.0.0-4.0.0-beta.38
|
||||
'@girs/mtk-17': 17.0.0-4.0.0-beta.38
|
||||
'@girs/polkit-1.0': 1.0.0-4.0.0-beta.38
|
||||
'@girs/shell-17': 17.0.0-4.0.0-beta.38
|
||||
'@girs/shew-0': 0.0.0-4.0.0-beta.38
|
||||
'@girs/st-17': 17.0.0-4.0.0-beta.38
|
||||
'@girs/upowerglib-1.0': 0.99.1-4.0.0-beta.38
|
||||
|
||||
'@girs/gnomebg-4.0@4.0.0-4.0.0-rc.9':
|
||||
'@girs/gnomebg-4.0@4.0.0-4.0.0-beta.38':
|
||||
dependencies:
|
||||
'@girs/cairo-1.0': 1.0.0-4.0.0-beta.38
|
||||
'@girs/freetype2-2.0': 2.0.0-4.0.0-beta.38
|
||||
'@girs/gdesktopenums-3.0': 3.0.0-4.0.0-rc.9
|
||||
'@girs/gdesktopenums-3.0': 3.0.0-4.0.0-beta.38
|
||||
'@girs/gdk-4.0': 4.0.0-4.0.0-beta.38
|
||||
'@girs/gdkpixbuf-2.0': 2.0.0-4.0.0-beta.38
|
||||
'@girs/gio-2.0': 2.86.0-4.0.0-beta.38
|
||||
'@girs/gjs': 4.0.0-beta.38
|
||||
'@girs/glib-2.0': 2.86.0-4.0.0-beta.38
|
||||
'@girs/gmodule-2.0': 2.0.0-4.0.0-beta.38
|
||||
'@girs/gnomedesktop-4.0': 4.0.0-4.0.0-rc.9
|
||||
'@girs/gnomedesktop-4.0': 4.0.0-4.0.0-beta.38
|
||||
'@girs/gobject-2.0': 2.86.0-4.0.0-beta.38
|
||||
'@girs/harfbuzz-0.0': 11.5.0-4.0.0-beta.38
|
||||
'@girs/pango-1.0': 1.57.0-4.0.0-beta.38
|
||||
'@girs/pangocairo-1.0': 1.0.0-4.0.0-beta.38
|
||||
|
||||
'@girs/gnomebluetooth-3.0@3.0.0-4.0.0-rc.9':
|
||||
'@girs/gnomebluetooth-3.0@3.0.0-4.0.0-beta.38':
|
||||
dependencies:
|
||||
'@girs/gio-2.0': 2.86.0-4.0.0-beta.38
|
||||
'@girs/gjs': 4.0.0-beta.38
|
||||
@@ -2256,9 +2253,9 @@ snapshots:
|
||||
'@girs/gmodule-2.0': 2.0.0-4.0.0-beta.38
|
||||
'@girs/gobject-2.0': 2.86.0-4.0.0-beta.38
|
||||
|
||||
'@girs/gnomedesktop-4.0@4.0.0-4.0.0-rc.9':
|
||||
'@girs/gnomedesktop-4.0@4.0.0-4.0.0-beta.38':
|
||||
dependencies:
|
||||
'@girs/gdesktopenums-3.0': 3.0.0-4.0.0-rc.9
|
||||
'@girs/gdesktopenums-3.0': 3.0.0-4.0.0-beta.38
|
||||
'@girs/gdkpixbuf-2.0': 2.0.0-4.0.0-beta.38
|
||||
'@girs/gio-2.0': 2.86.0-4.0.0-beta.38
|
||||
'@girs/gjs': 4.0.0-beta.38
|
||||
@@ -2310,7 +2307,7 @@ snapshots:
|
||||
'@girs/pango-1.0': 1.57.0-4.0.0-beta.38
|
||||
'@girs/pangocairo-1.0': 1.0.0-4.0.0-beta.38
|
||||
|
||||
'@girs/gvc-1.0@1.0.0-4.0.0-rc.9':
|
||||
'@girs/gvc-1.0@1.0.0-4.0.0-beta.38':
|
||||
dependencies:
|
||||
'@girs/gio-2.0': 2.86.0-4.0.0-beta.38
|
||||
'@girs/gjs': 4.0.0-beta.38
|
||||
@@ -2325,26 +2322,26 @@ snapshots:
|
||||
'@girs/glib-2.0': 2.86.0-4.0.0-beta.38
|
||||
'@girs/gobject-2.0': 2.86.0-4.0.0-beta.38
|
||||
|
||||
'@girs/meta-18@18.0.0-4.0.0-rc.9':
|
||||
'@girs/meta-17@17.0.0-4.0.0-beta.38':
|
||||
dependencies:
|
||||
'@girs/atk-1.0': 2.60.0-4.0.0-rc.9
|
||||
'@girs/atk-1.0': 2.58.0-4.0.0-beta.38
|
||||
'@girs/cairo-1.0': 1.0.0-4.0.0-beta.38
|
||||
'@girs/clutter-18': 18.0.0-4.0.0-rc.9
|
||||
'@girs/cogl-18': 18.0.0-4.0.0-rc.9
|
||||
'@girs/clutter-17': 17.0.0-4.0.0-beta.38
|
||||
'@girs/cogl-17': 17.0.0-4.0.0-beta.38
|
||||
'@girs/freetype2-2.0': 2.0.0-4.0.0-beta.38
|
||||
'@girs/gdesktopenums-3.0': 3.0.0-4.0.0-rc.9
|
||||
'@girs/gdesktopenums-3.0': 3.0.0-4.0.0-beta.38
|
||||
'@girs/gio-2.0': 2.86.0-4.0.0-beta.38
|
||||
'@girs/gjs': 4.0.0-beta.38
|
||||
'@girs/gl-1.0': 1.0.0-4.0.0-rc.9
|
||||
'@girs/gl-1.0': 1.0.0-4.0.0-beta.38
|
||||
'@girs/glib-2.0': 2.86.0-4.0.0-beta.38
|
||||
'@girs/gmodule-2.0': 2.0.0-4.0.0-beta.38
|
||||
'@girs/gobject-2.0': 2.86.0-4.0.0-beta.38
|
||||
'@girs/graphene-1.0': 1.0.0-4.0.0-beta.38
|
||||
'@girs/harfbuzz-0.0': 11.5.0-4.0.0-beta.38
|
||||
'@girs/mtk-18': 18.0.0-4.0.0-rc.9
|
||||
'@girs/mtk-17': 17.0.0-4.0.0-beta.38
|
||||
'@girs/pango-1.0': 1.57.0-4.0.0-beta.38
|
||||
'@girs/xfixes-4.0': 4.0.0-4.0.0-rc.9
|
||||
'@girs/xlib-2.0': 2.0.0-4.0.0-rc.9
|
||||
'@girs/xfixes-4.0': 4.0.0-4.0.0-beta.38
|
||||
'@girs/xlib-2.0': 2.0.0-4.0.0-beta.38
|
||||
|
||||
'@girs/mtk-17@17.0.0-4.0.0-beta.38':
|
||||
dependencies:
|
||||
@@ -2353,14 +2350,7 @@ snapshots:
|
||||
'@girs/gobject-2.0': 2.86.0-4.0.0-beta.38
|
||||
'@girs/graphene-1.0': 1.0.0-4.0.0-beta.38
|
||||
|
||||
'@girs/mtk-18@18.0.0-4.0.0-rc.9':
|
||||
dependencies:
|
||||
'@girs/gjs': 4.0.0-beta.38
|
||||
'@girs/glib-2.0': 2.86.0-4.0.0-beta.38
|
||||
'@girs/gobject-2.0': 2.86.0-4.0.0-beta.38
|
||||
'@girs/graphene-1.0': 1.0.0-4.0.0-beta.38
|
||||
|
||||
'@girs/nm-1.0@1.56.0-4.0.0-rc.9':
|
||||
'@girs/nm-1.0@1.49.4-4.0.0-beta.38':
|
||||
dependencies:
|
||||
'@girs/gio-2.0': 2.86.0-4.0.0-beta.38
|
||||
'@girs/gjs': 4.0.0-beta.38
|
||||
@@ -2391,7 +2381,7 @@ snapshots:
|
||||
'@girs/harfbuzz-0.0': 11.5.0-4.0.0-beta.38
|
||||
'@girs/pango-1.0': 1.57.0-4.0.0-beta.38
|
||||
|
||||
'@girs/polkit-1.0@1.0.0-4.0.0-rc.9':
|
||||
'@girs/polkit-1.0@1.0.0-4.0.0-beta.38':
|
||||
dependencies:
|
||||
'@girs/gio-2.0': 2.86.0-4.0.0-beta.38
|
||||
'@girs/gjs': 4.0.0-beta.38
|
||||
@@ -2399,47 +2389,47 @@ snapshots:
|
||||
'@girs/gmodule-2.0': 2.0.0-4.0.0-beta.38
|
||||
'@girs/gobject-2.0': 2.86.0-4.0.0-beta.38
|
||||
|
||||
'@girs/polkitagent-1.0@1.0.0-4.0.0-rc.9':
|
||||
'@girs/polkitagent-1.0@1.0.0-4.0.0-beta.38':
|
||||
dependencies:
|
||||
'@girs/gio-2.0': 2.86.0-4.0.0-beta.38
|
||||
'@girs/gjs': 4.0.0-beta.38
|
||||
'@girs/glib-2.0': 2.86.0-4.0.0-beta.38
|
||||
'@girs/gmodule-2.0': 2.0.0-4.0.0-beta.38
|
||||
'@girs/gobject-2.0': 2.86.0-4.0.0-beta.38
|
||||
'@girs/polkit-1.0': 1.0.0-4.0.0-rc.9
|
||||
'@girs/polkit-1.0': 1.0.0-4.0.0-beta.38
|
||||
|
||||
'@girs/shell-18@18.0.0-4.0.0-rc.9':
|
||||
'@girs/shell-17@17.0.0-4.0.0-beta.38':
|
||||
dependencies:
|
||||
'@girs/atk-1.0': 2.60.0-4.0.0-rc.9
|
||||
'@girs/atk-1.0': 2.58.0-4.0.0-beta.38
|
||||
'@girs/cairo-1.0': 1.0.0-4.0.0-beta.38
|
||||
'@girs/clutter-18': 18.0.0-4.0.0-rc.9
|
||||
'@girs/cogl-18': 18.0.0-4.0.0-rc.9
|
||||
'@girs/clutter-17': 17.0.0-4.0.0-beta.38
|
||||
'@girs/cogl-17': 17.0.0-4.0.0-beta.38
|
||||
'@girs/freetype2-2.0': 2.0.0-4.0.0-beta.38
|
||||
'@girs/gck-2': 4.4.0-4.0.0-rc.9
|
||||
'@girs/gcr-4': 4.4.0-4.0.0-rc.9
|
||||
'@girs/gdesktopenums-3.0': 3.0.0-4.0.0-rc.9
|
||||
'@girs/gck-2': 4.4.0-4.0.0-beta.38
|
||||
'@girs/gcr-4': 4.4.0-4.0.0-beta.38
|
||||
'@girs/gdesktopenums-3.0': 3.0.0-4.0.0-beta.38
|
||||
'@girs/gdkpixbuf-2.0': 2.0.0-4.0.0-beta.38
|
||||
'@girs/gio-2.0': 2.86.0-4.0.0-beta.38
|
||||
'@girs/giounix-2.0': 2.0.0-4.0.0-rc.9
|
||||
'@girs/giounix-2.0': 2.0.0-4.0.0-beta.38
|
||||
'@girs/gjs': 4.0.0-beta.38
|
||||
'@girs/gl-1.0': 1.0.0-4.0.0-rc.9
|
||||
'@girs/gl-1.0': 1.0.0-4.0.0-beta.38
|
||||
'@girs/glib-2.0': 2.86.0-4.0.0-beta.38
|
||||
'@girs/gmodule-2.0': 2.0.0-4.0.0-beta.38
|
||||
'@girs/gobject-2.0': 2.86.0-4.0.0-beta.38
|
||||
'@girs/graphene-1.0': 1.0.0-4.0.0-beta.38
|
||||
'@girs/gvc-1.0': 1.0.0-4.0.0-rc.9
|
||||
'@girs/gvc-1.0': 1.0.0-4.0.0-beta.38
|
||||
'@girs/harfbuzz-0.0': 11.5.0-4.0.0-beta.38
|
||||
'@girs/meta-18': 18.0.0-4.0.0-rc.9
|
||||
'@girs/mtk-18': 18.0.0-4.0.0-rc.9
|
||||
'@girs/nm-1.0': 1.56.0-4.0.0-rc.9
|
||||
'@girs/meta-17': 17.0.0-4.0.0-beta.38
|
||||
'@girs/mtk-17': 17.0.0-4.0.0-beta.38
|
||||
'@girs/nm-1.0': 1.49.4-4.0.0-beta.38
|
||||
'@girs/pango-1.0': 1.57.0-4.0.0-beta.38
|
||||
'@girs/polkit-1.0': 1.0.0-4.0.0-rc.9
|
||||
'@girs/polkitagent-1.0': 1.0.0-4.0.0-rc.9
|
||||
'@girs/st-18': 18.0.0-4.0.0-rc.9
|
||||
'@girs/xfixes-4.0': 4.0.0-4.0.0-rc.9
|
||||
'@girs/xlib-2.0': 2.0.0-4.0.0-rc.9
|
||||
'@girs/polkit-1.0': 1.0.0-4.0.0-beta.38
|
||||
'@girs/polkitagent-1.0': 1.0.0-4.0.0-beta.38
|
||||
'@girs/st-17': 17.0.0-4.0.0-beta.38
|
||||
'@girs/xfixes-4.0': 4.0.0-4.0.0-beta.38
|
||||
'@girs/xlib-2.0': 2.0.0-4.0.0-beta.38
|
||||
|
||||
'@girs/shew-0@0.0.0-4.0.0-rc.9':
|
||||
'@girs/shew-0@0.0.0-4.0.0-beta.38':
|
||||
dependencies:
|
||||
'@girs/cairo-1.0': 1.0.0-4.0.0-beta.38
|
||||
'@girs/freetype2-2.0': 2.0.0-4.0.0-beta.38
|
||||
@@ -2457,30 +2447,30 @@ snapshots:
|
||||
'@girs/pango-1.0': 1.57.0-4.0.0-beta.38
|
||||
'@girs/pangocairo-1.0': 1.0.0-4.0.0-beta.38
|
||||
|
||||
'@girs/st-18@18.0.0-4.0.0-rc.9':
|
||||
'@girs/st-17@17.0.0-4.0.0-beta.38':
|
||||
dependencies:
|
||||
'@girs/atk-1.0': 2.60.0-4.0.0-rc.9
|
||||
'@girs/atk-1.0': 2.58.0-4.0.0-beta.38
|
||||
'@girs/cairo-1.0': 1.0.0-4.0.0-beta.38
|
||||
'@girs/clutter-18': 18.0.0-4.0.0-rc.9
|
||||
'@girs/cogl-18': 18.0.0-4.0.0-rc.9
|
||||
'@girs/clutter-17': 17.0.0-4.0.0-beta.38
|
||||
'@girs/cogl-17': 17.0.0-4.0.0-beta.38
|
||||
'@girs/freetype2-2.0': 2.0.0-4.0.0-beta.38
|
||||
'@girs/gdesktopenums-3.0': 3.0.0-4.0.0-rc.9
|
||||
'@girs/gdesktopenums-3.0': 3.0.0-4.0.0-beta.38
|
||||
'@girs/gdkpixbuf-2.0': 2.0.0-4.0.0-beta.38
|
||||
'@girs/gio-2.0': 2.86.0-4.0.0-beta.38
|
||||
'@girs/gjs': 4.0.0-beta.38
|
||||
'@girs/gl-1.0': 1.0.0-4.0.0-rc.9
|
||||
'@girs/gl-1.0': 1.0.0-4.0.0-beta.38
|
||||
'@girs/glib-2.0': 2.86.0-4.0.0-beta.38
|
||||
'@girs/gmodule-2.0': 2.0.0-4.0.0-beta.38
|
||||
'@girs/gobject-2.0': 2.86.0-4.0.0-beta.38
|
||||
'@girs/graphene-1.0': 1.0.0-4.0.0-beta.38
|
||||
'@girs/harfbuzz-0.0': 11.5.0-4.0.0-beta.38
|
||||
'@girs/meta-18': 18.0.0-4.0.0-rc.9
|
||||
'@girs/mtk-18': 18.0.0-4.0.0-rc.9
|
||||
'@girs/meta-17': 17.0.0-4.0.0-beta.38
|
||||
'@girs/mtk-17': 17.0.0-4.0.0-beta.38
|
||||
'@girs/pango-1.0': 1.57.0-4.0.0-beta.38
|
||||
'@girs/xfixes-4.0': 4.0.0-4.0.0-rc.9
|
||||
'@girs/xlib-2.0': 2.0.0-4.0.0-rc.9
|
||||
'@girs/xfixes-4.0': 4.0.0-4.0.0-beta.38
|
||||
'@girs/xlib-2.0': 2.0.0-4.0.0-beta.38
|
||||
|
||||
'@girs/upowerglib-1.0@1.91.1-4.0.0-rc.9':
|
||||
'@girs/upowerglib-1.0@0.99.1-4.0.0-beta.38':
|
||||
dependencies:
|
||||
'@girs/gio-2.0': 2.86.0-4.0.0-beta.38
|
||||
'@girs/gjs': 4.0.0-beta.38
|
||||
@@ -2488,12 +2478,12 @@ snapshots:
|
||||
'@girs/gmodule-2.0': 2.0.0-4.0.0-beta.38
|
||||
'@girs/gobject-2.0': 2.86.0-4.0.0-beta.38
|
||||
|
||||
'@girs/xfixes-4.0@4.0.0-4.0.0-rc.9':
|
||||
'@girs/xfixes-4.0@4.0.0-4.0.0-beta.38':
|
||||
dependencies:
|
||||
'@girs/gjs': 4.0.0-beta.38
|
||||
'@girs/gobject-2.0': 2.86.0-4.0.0-beta.38
|
||||
|
||||
'@girs/xlib-2.0@2.0.0-4.0.0-rc.9':
|
||||
'@girs/xlib-2.0@2.0.0-4.0.0-beta.38':
|
||||
dependencies:
|
||||
'@girs/gjs': 4.0.0-beta.38
|
||||
'@girs/gobject-2.0': 2.86.0-4.0.0-beta.38
|
||||
@@ -3969,7 +3959,7 @@ snapshots:
|
||||
'@sindresorhus/base62': 1.0.0
|
||||
reserved-identifiers: 1.2.0
|
||||
|
||||
ts-jest@29.4.6(@babel/core@7.28.6)(@jest/transform@30.2.0)(@jest/types@30.2.0)(babel-jest@30.2.0(@babel/core@7.28.6))(jest-util@30.2.0)(jest@30.2.0(@types/node@25.1.0))(typescript@6.0.3):
|
||||
ts-jest@29.4.6(@babel/core@7.28.6)(@jest/transform@30.2.0)(@jest/types@30.2.0)(babel-jest@30.2.0(@babel/core@7.28.6))(jest-util@30.2.0)(jest@30.2.0(@types/node@25.1.0))(typescript@5.9.3):
|
||||
dependencies:
|
||||
bs-logger: 0.2.6
|
||||
fast-json-stable-stringify: 2.1.0
|
||||
@@ -3980,7 +3970,7 @@ snapshots:
|
||||
make-error: 1.3.6
|
||||
semver: 7.7.3
|
||||
type-fest: 4.41.0
|
||||
typescript: 6.0.3
|
||||
typescript: 5.9.3
|
||||
yargs-parser: 21.1.1
|
||||
optionalDependencies:
|
||||
'@babel/core': 7.28.6
|
||||
@@ -4002,7 +3992,7 @@ snapshots:
|
||||
|
||||
type-fest@4.41.0: {}
|
||||
|
||||
typescript@6.0.3: {}
|
||||
typescript@5.9.3: {}
|
||||
|
||||
uglify-js@3.19.3:
|
||||
optional: true
|
||||
|
||||
@@ -1,72 +1,40 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<schemalist>
|
||||
<schema id="org.gnome.shell.extensions.aerospike" path="/org/gnome/shell/extensions/aerospike/">
|
||||
|
||||
<key name="focus-left" type="as">
|
||||
<default><![CDATA[['<Super>h']]]></default>
|
||||
<summary>Focus window to the left</summary>
|
||||
<description>Move focus to the window to the left of the current window. In tabbed mode, switches to the previous tab.</description>
|
||||
<key name="dropdown-option" type="s">
|
||||
<default>'option1'</default>
|
||||
<summary>Dropdown selection</summary>
|
||||
<description>Option selected from the dropdown menu</description>
|
||||
</key>
|
||||
|
||||
<key name="focus-right" type="as">
|
||||
<default><![CDATA[['<Super>l']]]></default>
|
||||
<summary>Focus window to the right</summary>
|
||||
<description>Move focus to the window to the right of the current window. In tabbed mode, switches to the next tab.</description>
|
||||
<key name="color-selection" type="s">
|
||||
<default>'rgb(255,0,0)'</default>
|
||||
<summary>Selected color</summary>
|
||||
<description>Color chosen from the color picker</description>
|
||||
</key>
|
||||
|
||||
<key name="focus-up" type="as">
|
||||
<default><![CDATA[['<Super>k']]]></default>
|
||||
<summary>Focus window above</summary>
|
||||
<description>Move focus to the window above the current window.</description>
|
||||
</key>
|
||||
|
||||
<key name="focus-down" type="as">
|
||||
<default><![CDATA[['<Super>j']]]></default>
|
||||
<summary>Focus window below</summary>
|
||||
<description>Move focus to the window below the current window.</description>
|
||||
</key>
|
||||
|
||||
|
||||
<key name="move-left" type="as">
|
||||
<default><![CDATA[['<Super><Shift>h']]]></default>
|
||||
<summary>Move window to the left</summary>
|
||||
<description>Move the active window one position to the left within its container</description>
|
||||
<default><![CDATA[['<Super>1']]]></default>
|
||||
<summary>Keybinding for action 1</summary>
|
||||
<description>Keyboard shortcut for triggering action 1</description>
|
||||
</key>
|
||||
|
||||
<key name="move-right" type="as">
|
||||
<default><![CDATA[['<Super><Shift>l']]]></default>
|
||||
<summary>Move window to the right</summary>
|
||||
<description>Move the active window one position to the right within its container</description>
|
||||
<default><![CDATA[['<Super>2']]]></default>
|
||||
<summary>Keybinding for action 2</summary>
|
||||
<description>Keyboard shortcut for triggering action 2</description>
|
||||
</key>
|
||||
|
||||
<key name="move-up" type="as">
|
||||
<default><![CDATA[['<Super><Shift>k']]]></default>
|
||||
<summary>Move window up</summary>
|
||||
<description>Move the active window one position up within its container</description>
|
||||
<key name="join-with-left" type="as">
|
||||
<default><![CDATA[['<Super>3']]]></default>
|
||||
<summary>Keybinding for action 3</summary>
|
||||
<description>Keyboard shortcut for triggering action 3</description>
|
||||
</key>
|
||||
|
||||
<key name="move-down" type="as">
|
||||
<default><![CDATA[['<Super><Shift>j']]]></default>
|
||||
<summary>Move window down</summary>
|
||||
<description>Move the active window one position down within its container</description>
|
||||
</key>
|
||||
|
||||
<key name="toggle-orientation" type="as">
|
||||
<default><![CDATA[['<Super>comma']]]></default>
|
||||
<summary>Toggle active container orientation</summary>
|
||||
<description>Toggles the orientation of the container holding the active window between horizontal and vertical</description>
|
||||
</key>
|
||||
|
||||
<key name="reset-ratios" type="as">
|
||||
<default><![CDATA[['<Super>z']]]></default>
|
||||
<summary>Reset container ratios to equal splits</summary>
|
||||
<description>Resets all window size ratios in the active window's container to equal splits</description>
|
||||
</key>
|
||||
|
||||
<key name="toggle-tabbed" type="as">
|
||||
<default><![CDATA[['<Super>slash']]]></default>
|
||||
<summary>Toggle tabbed container mode</summary>
|
||||
<description>Toggles the active window's container between tabbed and accordion layout modes</description>
|
||||
<key name="join-with-right" type="as">
|
||||
<default><![CDATA[['<Super>4']]]></default>
|
||||
<summary>Keybinding for action 4</summary>
|
||||
<description>Keyboard shortcut for triggering action 4</description>
|
||||
</key>
|
||||
|
||||
<key name="print-tree" type="as">
|
||||
@@ -75,5 +43,23 @@
|
||||
<description>Prints the current tree of containers and windows per monitor to logs</description>
|
||||
</key>
|
||||
|
||||
<key name="toggle-orientation" type="as">
|
||||
<default><![CDATA[['<Primary>comma']]]></default>
|
||||
<summary>Toggle active container orientation</summary>
|
||||
<description>Toggles the orientation of the container holding the active window between horizontal and vertical</description>
|
||||
</key>
|
||||
|
||||
<key name="reset-ratios" type="as">
|
||||
<default><![CDATA[['<Primary>z']]]></default>
|
||||
<summary>Reset container ratios to equal splits</summary>
|
||||
<description>Resets all window size ratios in the active window's container to equal splits</description>
|
||||
</key>
|
||||
|
||||
<key name="toggle-tabbed" type="as">
|
||||
<default><![CDATA[['<Primary>slash']]]></default>
|
||||
<summary>Toggle tabbed container mode</summary>
|
||||
<description>Toggles the active window's container between tabbed and accordion layout modes</description>
|
||||
</key>
|
||||
|
||||
</schema>
|
||||
</schemalist>
|
||||
+125
-95
@@ -2,7 +2,7 @@ import Adw from 'gi://Adw';
|
||||
import Gio from 'gi://Gio';
|
||||
import Gtk from 'gi://Gtk';
|
||||
import Gdk from 'gi://Gdk';
|
||||
import {ExtensionPreferences, gettext as _} from 'resource:///org/gnome/Shell/Extensions/js/extensions/prefs.js';
|
||||
import { ExtensionPreferences, gettext as _ } from 'resource:///org/gnome/Shell/Extensions/js/extensions/prefs.js';
|
||||
import {Logger} from "../utils/logger.js";
|
||||
import {EntryRow} from "./keybindings.js";
|
||||
|
||||
@@ -11,115 +11,160 @@ export default class AerospikeExtensions extends ExtensionPreferences {
|
||||
// Create settings object
|
||||
const settings = this.getSettings('org.gnome.shell.extensions.aerospike');
|
||||
|
||||
// Create keybindings page (top-level)
|
||||
const keybindingsPage = new Adw.PreferencesPage({
|
||||
title: _('Keybindings'),
|
||||
icon_name: 'input-keyboard-symbolic',
|
||||
// Create a preferences page
|
||||
const page = new Adw.PreferencesPage({
|
||||
title: _('Settings'),
|
||||
icon_name: 'preferences-system-symbolic',
|
||||
});
|
||||
window.add(keybindingsPage);
|
||||
window.add(page);
|
||||
|
||||
const keybindingMap = this.createKeybindingMap();
|
||||
|
||||
// Top-level Keybindings header group with syntax help
|
||||
const keybindingsHeader = new Adw.PreferencesGroup({
|
||||
title: _('Keybindings'),
|
||||
// Create options group
|
||||
const optionsGroup = new Adw.PreferencesGroup({
|
||||
title: _('Options'),
|
||||
});
|
||||
page.add(optionsGroup);
|
||||
|
||||
// Add dropdown
|
||||
const dropdownRow = new Adw.ComboRow({
|
||||
title: _('Select an option'),
|
||||
});
|
||||
optionsGroup.add(dropdownRow);
|
||||
|
||||
// Create dropdown model
|
||||
const dropdownModel = new Gtk.StringList();
|
||||
dropdownModel.append(_('Option 1'));
|
||||
dropdownModel.append(_('Option 2'));
|
||||
dropdownModel.append(_('Option 3'));
|
||||
dropdownModel.append(_('Option 4'));
|
||||
|
||||
dropdownRow.set_model(dropdownModel);
|
||||
|
||||
// Set the active option based on settings
|
||||
const currentOption = settings.get_string('dropdown-option');
|
||||
switch (currentOption) {
|
||||
case 'option1':
|
||||
dropdownRow.set_selected(0);
|
||||
break;
|
||||
case 'option2':
|
||||
dropdownRow.set_selected(1);
|
||||
break;
|
||||
case 'option3':
|
||||
dropdownRow.set_selected(2);
|
||||
break;
|
||||
case 'option4':
|
||||
dropdownRow.set_selected(3);
|
||||
break;
|
||||
default:
|
||||
dropdownRow.set_selected(0);
|
||||
}
|
||||
|
||||
// Connect dropdown change signal
|
||||
dropdownRow.connect('notify::selected', () => {
|
||||
const selected = dropdownRow.get_selected();
|
||||
let optionValue: string;
|
||||
|
||||
switch (selected) {
|
||||
case 0:
|
||||
optionValue = 'option1';
|
||||
break;
|
||||
case 1:
|
||||
optionValue = 'option2';
|
||||
break;
|
||||
case 2:
|
||||
optionValue = 'option3';
|
||||
break;
|
||||
case 3:
|
||||
optionValue = 'option4';
|
||||
break;
|
||||
default:
|
||||
optionValue = 'option1';
|
||||
}
|
||||
|
||||
settings.set_string('dropdown-option', optionValue);
|
||||
});
|
||||
|
||||
// Add color button
|
||||
const colorRow = new Adw.ActionRow({
|
||||
title: _('Choose a color'),
|
||||
});
|
||||
optionsGroup.add(colorRow);
|
||||
|
||||
const colorButton = new Gtk.ColorButton();
|
||||
colorRow.add_suffix(colorButton);
|
||||
colorRow.set_activatable_widget(colorButton);
|
||||
|
||||
// Set current color from settings
|
||||
const colorStr = settings.get_string('color-selection');
|
||||
const rgba = new Gdk.RGBA();
|
||||
rgba.parse(colorStr);
|
||||
colorButton.set_rgba(rgba);
|
||||
|
||||
// Connect color button signal
|
||||
colorButton.connect('color-set', () => {
|
||||
const color = colorButton.get_rgba().to_string();
|
||||
settings.set_string('color-selection', color);
|
||||
});
|
||||
|
||||
// Create keybindings group
|
||||
const keybindingsGroup = new Adw.PreferencesGroup({
|
||||
title: _('Keyboard Shortcuts'),
|
||||
description: `${_("Syntax")}: <Super>h, <Shift>g, <Super><Shift>h
|
||||
${_("Legend")}: <Super> - ${_("Windows key")}, <Primary> - ${_("Control key")}
|
||||
${_("Delete text to unset. Press Return key to accept.")}`,
|
||||
});
|
||||
keybindingsPage.add(keybindingsHeader);
|
||||
page.add(keybindingsGroup);
|
||||
|
||||
// --- Focus group ---
|
||||
const focusGroup = new Adw.PreferencesGroup({
|
||||
title: _('Focus'),
|
||||
});
|
||||
keybindingsPage.add(focusGroup);
|
||||
|
||||
focusGroup.add(
|
||||
// Add keybinding rows as EntryRows with proper mapping
|
||||
// Use the helper function to create the map object
|
||||
const keybindingMap = this.createKeybindingMap();
|
||||
|
||||
keybindingsGroup.add(
|
||||
new EntryRow({
|
||||
title: _('Focus Left'),
|
||||
settings: settings,
|
||||
bind: 'focus-left',
|
||||
map: keybindingMap
|
||||
})
|
||||
);
|
||||
|
||||
focusGroup.add(
|
||||
new EntryRow({
|
||||
title: _('Focus Right'),
|
||||
settings: settings,
|
||||
bind: 'focus-right',
|
||||
map: keybindingMap
|
||||
})
|
||||
);
|
||||
|
||||
focusGroup.add(
|
||||
new EntryRow({
|
||||
title: _('Focus Up'),
|
||||
settings: settings,
|
||||
bind: 'focus-up',
|
||||
map: keybindingMap
|
||||
})
|
||||
);
|
||||
|
||||
focusGroup.add(
|
||||
new EntryRow({
|
||||
title: _('Focus Down'),
|
||||
settings: settings,
|
||||
bind: 'focus-down',
|
||||
map: keybindingMap
|
||||
})
|
||||
);
|
||||
|
||||
// --- Move group ---
|
||||
const moveGroup = new Adw.PreferencesGroup({
|
||||
title: _('Move'),
|
||||
});
|
||||
keybindingsPage.add(moveGroup);
|
||||
|
||||
moveGroup.add(
|
||||
new EntryRow({
|
||||
title: _('Move Left'),
|
||||
title: _('Action 1'),
|
||||
settings: settings,
|
||||
bind: 'move-left',
|
||||
map: keybindingMap
|
||||
})
|
||||
);
|
||||
|
||||
moveGroup.add(
|
||||
|
||||
keybindingsGroup.add(
|
||||
new EntryRow({
|
||||
title: _('Move Right'),
|
||||
title: _('Action 2'),
|
||||
settings: settings,
|
||||
bind: 'move-right',
|
||||
map: keybindingMap
|
||||
})
|
||||
);
|
||||
|
||||
moveGroup.add(
|
||||
|
||||
keybindingsGroup.add(
|
||||
new EntryRow({
|
||||
title: _('Move Up'),
|
||||
title: _('Action 3'),
|
||||
settings: settings,
|
||||
bind: 'move-up',
|
||||
bind: 'join-with-left',
|
||||
map: keybindingMap
|
||||
})
|
||||
);
|
||||
|
||||
keybindingsGroup.add(
|
||||
new EntryRow({
|
||||
title: _('Action 4'),
|
||||
settings: settings,
|
||||
bind: 'join-with-right',
|
||||
map: keybindingMap
|
||||
})
|
||||
);
|
||||
|
||||
moveGroup.add(
|
||||
keybindingsGroup.add(
|
||||
new EntryRow({
|
||||
title: _('Move Down'),
|
||||
title: _('Print Tree Structure'),
|
||||
settings: settings,
|
||||
bind: 'move-down',
|
||||
bind: 'print-tree',
|
||||
map: keybindingMap
|
||||
})
|
||||
);
|
||||
|
||||
// --- Container Interactions group ---
|
||||
const containerGroup = new Adw.PreferencesGroup({
|
||||
title: _('Container Interactions'),
|
||||
});
|
||||
keybindingsPage.add(containerGroup);
|
||||
|
||||
containerGroup.add(
|
||||
keybindingsGroup.add(
|
||||
new EntryRow({
|
||||
title: _('Toggle Orientation'),
|
||||
settings: settings,
|
||||
@@ -128,7 +173,7 @@ export default class AerospikeExtensions extends ExtensionPreferences {
|
||||
})
|
||||
);
|
||||
|
||||
containerGroup.add(
|
||||
keybindingsGroup.add(
|
||||
new EntryRow({
|
||||
title: _('Reset Container Ratios to Equal'),
|
||||
settings: settings,
|
||||
@@ -137,7 +182,7 @@ export default class AerospikeExtensions extends ExtensionPreferences {
|
||||
})
|
||||
);
|
||||
|
||||
containerGroup.add(
|
||||
keybindingsGroup.add(
|
||||
new EntryRow({
|
||||
title: _('Toggle Tabbed Mode'),
|
||||
settings: settings,
|
||||
@@ -146,21 +191,6 @@ export default class AerospikeExtensions extends ExtensionPreferences {
|
||||
})
|
||||
);
|
||||
|
||||
// --- Debugging group ---
|
||||
const debuggingGroup = new Adw.PreferencesGroup({
|
||||
title: _('Debugging'),
|
||||
});
|
||||
keybindingsPage.add(debuggingGroup);
|
||||
|
||||
debuggingGroup.add(
|
||||
new EntryRow({
|
||||
title: _('Print Tree Structure'),
|
||||
settings: settings,
|
||||
bind: 'print-tree',
|
||||
map: keybindingMap
|
||||
})
|
||||
);
|
||||
|
||||
}
|
||||
|
||||
// Helper function to create a keybinding mapping object
|
||||
|
||||
+5
-169
@@ -10,13 +10,6 @@ export enum Layout {
|
||||
TABBED = 2,
|
||||
}
|
||||
|
||||
export enum Direction {
|
||||
LEFT = 'left',
|
||||
RIGHT = 'right',
|
||||
UP = 'up',
|
||||
DOWN = 'down',
|
||||
}
|
||||
|
||||
// Returns equal ratios summing exactly to 1.0, with float drift absorbed by the last slot.
|
||||
function equalRatios(n: number): number[] {
|
||||
if (n <= 0) return [];
|
||||
@@ -55,11 +48,7 @@ export default class WindowContainer {
|
||||
this._splitRatios = equalRatios(this._tiledItems.length);
|
||||
}
|
||||
|
||||
/**
|
||||
* Proportionally shrink existing ratios to carve out space for a new item
|
||||
* at the given index. If no index is supplied the ratio is appended at the end.
|
||||
*/
|
||||
private _addRatioForNewWindow(index?: number): void {
|
||||
private _addRatioForNewWindow(): void {
|
||||
const n = this._tiledItems.length;
|
||||
if (n <= 1) {
|
||||
this._splitRatios = [1.0];
|
||||
@@ -70,10 +59,7 @@ export default class WindowContainer {
|
||||
const scaled = this._splitRatios.map(r => r * scale);
|
||||
const partialSum = scaled.reduce((a, b) => a + b, 0) + newRatio;
|
||||
scaled[scaled.length - 1] += (1.0 - partialSum);
|
||||
|
||||
const insertAt = index ?? scaled.length;
|
||||
scaled.splice(insertAt, 0, newRatio);
|
||||
this._splitRatios = scaled;
|
||||
this._splitRatios = [...scaled, newRatio];
|
||||
}
|
||||
|
||||
private _totalDimension(): number {
|
||||
@@ -200,19 +186,10 @@ export default class WindowContainer {
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Add a window to this container.
|
||||
* If `index` is omitted the window is appended at the end.
|
||||
* A negative index (e.g. -1) is treated as "append at end".
|
||||
*/
|
||||
addWindow(winWrap: WindowWrapper, index?: number): void {
|
||||
const insertAt = (index === undefined || index < 0)
|
||||
? this._tiledItems.length
|
||||
: Math.min(index, this._tiledItems.length);
|
||||
|
||||
this._tiledItems.splice(insertAt, 0, winWrap);
|
||||
addWindow(winWrap: WindowWrapper): void {
|
||||
this._tiledItems.push(winWrap);
|
||||
this._tiledWindowLookup.set(winWrap.getWindowId(), winWrap);
|
||||
this._addRatioForNewWindow(insertAt);
|
||||
this._addRatioForNewWindow();
|
||||
|
||||
if (this.isTabbed()) {
|
||||
// TODO: make it so that when tabs are added they are made the current active tab
|
||||
@@ -560,145 +537,4 @@ export default class WindowContainer {
|
||||
this._resetRatios();
|
||||
this.drawWindows();
|
||||
}
|
||||
|
||||
// --- Directional Move (swap) ------------------------------------------------
|
||||
|
||||
/**
|
||||
* Swap the window at `windowId` with its neighbour in the given direction.
|
||||
* Returns true if the swap occurred, false if the window is already at the edge
|
||||
* or the direction is perpendicular to the container axis.
|
||||
*/
|
||||
swapWindowInDirection(windowId: number, direction: Direction): boolean {
|
||||
const currentIndex = this._getIndexOfWindow(windowId);
|
||||
if (currentIndex === -1) return false;
|
||||
|
||||
if (this.isTabbed()) {
|
||||
// Tabbed: left/up = swap toward start, right/down = swap toward end
|
||||
const delta = (direction === Direction.LEFT || direction === Direction.UP) ? -1 : 1;
|
||||
const newIndex = currentIndex + delta;
|
||||
if (newIndex < 0 || newIndex >= this._tiledItems.length) return false;
|
||||
|
||||
this._swapItems(currentIndex, newIndex);
|
||||
this._activeTabIndex = newIndex;
|
||||
this._updateTabBar();
|
||||
this.drawWindows();
|
||||
return true;
|
||||
}
|
||||
|
||||
// Accordion mode — only swap along the container's axis
|
||||
const isAlongAxis =
|
||||
(this._orientation === Layout.ACC_HORIZONTAL && (direction === Direction.LEFT || direction === Direction.RIGHT)) ||
|
||||
(this._orientation === Layout.ACC_VERTICAL && (direction === Direction.UP || direction === Direction.DOWN));
|
||||
|
||||
if (!isAlongAxis) return false;
|
||||
|
||||
const delta = (direction === Direction.LEFT || direction === Direction.UP) ? -1 : 1;
|
||||
const newIndex = currentIndex + delta;
|
||||
if (newIndex < 0 || newIndex >= this._tiledItems.length) return false;
|
||||
|
||||
this._swapItems(currentIndex, newIndex);
|
||||
this.drawWindows();
|
||||
return true;
|
||||
}
|
||||
|
||||
/**
|
||||
* Swap two items in `_tiledItems` and their corresponding split ratios.
|
||||
*/
|
||||
private _swapItems(indexA: number, indexB: number): void {
|
||||
[this._tiledItems[indexA], this._tiledItems[indexB]] =
|
||||
[this._tiledItems[indexB], this._tiledItems[indexA]];
|
||||
[this._splitRatios[indexA], this._splitRatios[indexB]] =
|
||||
[this._splitRatios[indexB], this._splitRatios[indexA]];
|
||||
}
|
||||
|
||||
// --- Directional Navigation ------------------------------------------------
|
||||
|
||||
/**
|
||||
* Given a window inside this container and a direction, return the window ID
|
||||
* that should receive focus, or null if the edge of the container is reached.
|
||||
*
|
||||
* Behaviour by layout mode:
|
||||
* - ACC_HORIZONTAL: left/right moves to the prev/next item; up/down → null
|
||||
* - ACC_VERTICAL: up/down moves to the prev/next item; left/right → null
|
||||
* - TABBED: left/right moves to the prev/next tab; up/down → null
|
||||
*/
|
||||
getAdjacentWindowId(windowId: number, direction: Direction): number | null {
|
||||
const currentIndex = this._getIndexOfWindow(windowId);
|
||||
if (currentIndex === -1) return null;
|
||||
|
||||
if (this.isTabbed()) {
|
||||
// Tabbed: left/right cycle through tabs
|
||||
if (direction === Direction.LEFT || direction === Direction.UP) {
|
||||
const newIndex = currentIndex - 1;
|
||||
if (newIndex < 0) return null;
|
||||
return this._windowIdAtIndex(newIndex);
|
||||
}
|
||||
if (direction === Direction.RIGHT || direction === Direction.DOWN) {
|
||||
const newIndex = currentIndex + 1;
|
||||
if (newIndex >= this._tiledItems.length) return null;
|
||||
return this._windowIdAtIndex(newIndex);
|
||||
}
|
||||
return null;
|
||||
}
|
||||
|
||||
// Accordion mode – only navigate along the container's axis
|
||||
const isAlongAxis =
|
||||
(this._orientation === Layout.ACC_HORIZONTAL && (direction === Direction.LEFT || direction === Direction.RIGHT)) ||
|
||||
(this._orientation === Layout.ACC_VERTICAL && (direction === Direction.UP || direction === Direction.DOWN));
|
||||
|
||||
if (!isAlongAxis) return null;
|
||||
|
||||
const delta = (direction === Direction.LEFT || direction === Direction.UP) ? -1 : 1;
|
||||
const newIndex = currentIndex + delta;
|
||||
if (newIndex < 0 || newIndex >= this._tiledItems.length) return null;
|
||||
|
||||
return this._windowIdAtIndex(newIndex);
|
||||
}
|
||||
|
||||
/**
|
||||
* Return the "representative" window ID for the item at `index`.
|
||||
* If the item is a WindowWrapper, return its ID directly.
|
||||
* If it's a nested WindowContainer, return the first (or last) leaf window.
|
||||
*/
|
||||
private _windowIdAtIndex(index: number): number | null {
|
||||
const item = this._tiledItems[index];
|
||||
if (!item) return null;
|
||||
|
||||
if (item instanceof WindowWrapper) {
|
||||
return item.getWindowId();
|
||||
}
|
||||
if (item instanceof WindowContainer) {
|
||||
return item._firstLeafWindowId();
|
||||
}
|
||||
return null;
|
||||
}
|
||||
|
||||
/**
|
||||
* Return the window ID of the first leaf window in this container (depth-first).
|
||||
*/
|
||||
_firstLeafWindowId(): number | null {
|
||||
for (const item of this._tiledItems) {
|
||||
if (item instanceof WindowWrapper) return item.getWindowId();
|
||||
if (item instanceof WindowContainer) {
|
||||
const id = item._firstLeafWindowId();
|
||||
if (id !== null) return id;
|
||||
}
|
||||
}
|
||||
return null;
|
||||
}
|
||||
|
||||
/**
|
||||
* Return the window ID of the last leaf window in this container (depth-first from end).
|
||||
*/
|
||||
_lastLeafWindowId(): number | null {
|
||||
for (let i = this._tiledItems.length - 1; i >= 0; i--) {
|
||||
const item = this._tiledItems[i];
|
||||
if (item instanceof WindowWrapper) return item.getWindowId();
|
||||
if (item instanceof WindowContainer) {
|
||||
const id = item._lastLeafWindowId();
|
||||
if (id !== null) return id;
|
||||
}
|
||||
}
|
||||
return null;
|
||||
}
|
||||
}
|
||||
|
||||
+2
-2
@@ -52,9 +52,9 @@ export default class Monitor {
|
||||
}
|
||||
}
|
||||
|
||||
addWindow(winWrap: WindowWrapper, index?: number) {
|
||||
addWindow(winWrap: WindowWrapper) {
|
||||
const window_workspace = winWrap.getWindow().get_workspace().index();
|
||||
this._workspaces[window_workspace].addWindow(winWrap, index);
|
||||
this._workspaces[window_workspace].addWindow(winWrap);
|
||||
}
|
||||
|
||||
tileWindows(): void {
|
||||
|
||||
@@ -47,10 +47,6 @@ export class WindowWrapper {
|
||||
return this._window.get_frame_rect();
|
||||
}
|
||||
|
||||
isFullscreen(): boolean {
|
||||
return this._window.is_fullscreen();
|
||||
}
|
||||
|
||||
getTabLabel(): string {
|
||||
const rawAppName = this._window.get_wm_class() ?? '';
|
||||
// Strip reverse-domain prefix (e.g. "org.gnome.Nautilus" -> "Nautilus")
|
||||
@@ -144,11 +140,6 @@ export class WindowWrapper {
|
||||
return;
|
||||
}
|
||||
|
||||
if (this.isFullscreen()) {
|
||||
Logger.info("STOPPED RESIZE BECAUSE WINDOW IS FULLSCREEN");
|
||||
return;
|
||||
}
|
||||
|
||||
const actor = this._window.get_compositor_private() as Clutter.Actor | null;
|
||||
if (!actor) {
|
||||
Logger.log("No actor available, can't resize safely yet");
|
||||
|
||||
+1
-198
@@ -5,7 +5,7 @@ import {WindowWrapper} from './window.js';
|
||||
import * as Main from "resource:///org/gnome/shell/ui/main.js";
|
||||
import {Logger} from "../utils/logger.js";
|
||||
import Monitor from "./monitor.js";
|
||||
import WindowContainer, {Direction, Layout} from "./container.js";
|
||||
import WindowContainer, {Layout} from "./container.js";
|
||||
import {Rect} from "../utils/rect.js";
|
||||
|
||||
|
||||
@@ -565,203 +565,6 @@ export default class WindowManager implements IWindowManager {
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Move the active window in the given direction.
|
||||
*
|
||||
* 1. Find the container holding the active window.
|
||||
* 2. Try to swap within the container (adjacent neighbour).
|
||||
* 3. If already at the container edge, move the window to the
|
||||
* nearest monitor in that direction instead.
|
||||
* 4. Re-tile to apply the new layout.
|
||||
*/
|
||||
public moveInDirection(direction: Direction): void {
|
||||
if (this._activeWindowId === null) {
|
||||
Logger.warn("No active window, cannot move in direction");
|
||||
return;
|
||||
}
|
||||
|
||||
const container = this._findContainerForWindowAcrossMonitors(this._activeWindowId);
|
||||
if (!container) {
|
||||
Logger.warn("Could not find container for active window");
|
||||
return;
|
||||
}
|
||||
|
||||
const swapped = container.swapWindowInDirection(this._activeWindowId, direction);
|
||||
if (swapped) {
|
||||
Logger.info(`Moved window ${this._activeWindowId} ${direction}`);
|
||||
this._tileMonitors();
|
||||
return;
|
||||
}
|
||||
|
||||
this._moveWindowCrossMonitor(this._activeWindowId, direction);
|
||||
}
|
||||
|
||||
/**
|
||||
* Move focus to the adjacent window in the given direction.
|
||||
*
|
||||
* 1. Find the container holding the active window.
|
||||
* 2. Ask the container for the adjacent window in that direction.
|
||||
* 3. If the container returns null (at the edge), try cross-monitor navigation.
|
||||
* 4. Activate (focus) the target window.
|
||||
*/
|
||||
public focusInDirection(direction: Direction): void {
|
||||
if (this._activeWindowId === null) {
|
||||
Logger.warn("No active window, cannot focus in direction");
|
||||
return;
|
||||
}
|
||||
|
||||
const container = this._findContainerForWindowAcrossMonitors(this._activeWindowId);
|
||||
if (!container) {
|
||||
Logger.warn("Could not find container for active window");
|
||||
return;
|
||||
}
|
||||
|
||||
const targetId = container.getAdjacentWindowId(this._activeWindowId, direction);
|
||||
if (targetId !== null) {
|
||||
this._activateWindowById(targetId);
|
||||
return;
|
||||
}
|
||||
|
||||
// At the edge of the container — try cross-monitor navigation
|
||||
const crossMonitorId = this._findCrossMonitorWindow(direction);
|
||||
if (crossMonitorId !== null) {
|
||||
this._activateWindowById(crossMonitorId);
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Focus a window by its ID. Finds the Meta.Window and calls activate().
|
||||
*/
|
||||
private _activateWindowById(windowId: number): void {
|
||||
for (const monitor of this._monitors.values()) {
|
||||
const wrapped = monitor.getWindow(windowId);
|
||||
if (wrapped) {
|
||||
const metaWindow = wrapped.getWindow();
|
||||
metaWindow.activate(global.get_current_time());
|
||||
return;
|
||||
}
|
||||
}
|
||||
Logger.warn(`_activateWindowById: window ${windowId} not found in any monitor`);
|
||||
}
|
||||
|
||||
/**
|
||||
* Find the adjacent monitor in the given direction from a current monitor.
|
||||
* Returns the monitor ID or null if none exists in that direction.
|
||||
*/
|
||||
private _findAdjacentMonitorId(currentMonitorId: number, direction: Direction): number | null {
|
||||
const currentMonitor = this._monitors.get(currentMonitorId)!;
|
||||
const currentArea = currentMonitor._workArea;
|
||||
const currentCenterX = currentArea.x + currentArea.width / 2;
|
||||
const currentCenterY = currentArea.y + currentArea.height / 2;
|
||||
|
||||
let bestMonitorId: number | null = null;
|
||||
let bestDistance = Infinity;
|
||||
|
||||
for (const [monId, monitor] of this._monitors.entries()) {
|
||||
if (monId === currentMonitorId) continue;
|
||||
|
||||
const area = monitor._workArea;
|
||||
const centerX = area.x + area.width / 2;
|
||||
const centerY = area.y + area.height / 2;
|
||||
|
||||
let isInDirection = false;
|
||||
let distance = Infinity;
|
||||
|
||||
switch (direction) {
|
||||
case Direction.LEFT:
|
||||
isInDirection = centerX < currentCenterX;
|
||||
distance = currentCenterX - centerX;
|
||||
break;
|
||||
case Direction.RIGHT:
|
||||
isInDirection = centerX > currentCenterX;
|
||||
distance = centerX - currentCenterX;
|
||||
break;
|
||||
case Direction.UP:
|
||||
isInDirection = centerY < currentCenterY;
|
||||
distance = currentCenterY - centerY;
|
||||
break;
|
||||
case Direction.DOWN:
|
||||
isInDirection = centerY > currentCenterY;
|
||||
distance = centerY - currentCenterY;
|
||||
break;
|
||||
}
|
||||
|
||||
if (isInDirection && distance < bestDistance) {
|
||||
bestDistance = distance;
|
||||
bestMonitorId = monId;
|
||||
}
|
||||
}
|
||||
|
||||
return bestMonitorId;
|
||||
}
|
||||
|
||||
/**
|
||||
* Return the monitor ID that contains the given window, or null.
|
||||
*/
|
||||
private _findMonitorIdForWindow(windowId: number): number | null {
|
||||
for (const [monId, monitor] of this._monitors.entries()) {
|
||||
if (monitor.getWindow(windowId) !== undefined) return monId;
|
||||
}
|
||||
return null;
|
||||
}
|
||||
|
||||
/**
|
||||
* When at the edge of a container, find the nearest window on the adjacent
|
||||
* monitor in the given direction.
|
||||
*
|
||||
* On the target monitor, picks the edge-most window:
|
||||
* - Navigating LEFT/UP → last (far-edge) leaf window
|
||||
* - Navigating RIGHT/DOWN → first (near-edge) leaf window
|
||||
*/
|
||||
private _findCrossMonitorWindow(direction: Direction): number | null {
|
||||
if (this._activeWindowId === null) return null;
|
||||
|
||||
const currentMonitorId = this._findMonitorIdForWindow(this._activeWindowId);
|
||||
if (currentMonitorId === null) return null;
|
||||
|
||||
const targetMonitorId = this._findAdjacentMonitorId(currentMonitorId, direction);
|
||||
if (targetMonitorId === null) return null;
|
||||
|
||||
const targetMonitor = this._monitors.get(targetMonitorId)!;
|
||||
const activeWorkspaceIndex = global.workspace_manager.get_active_workspace().index();
|
||||
if (activeWorkspaceIndex >= targetMonitor._workspaces.length) return null;
|
||||
|
||||
const targetContainer = targetMonitor._workspaces[activeWorkspaceIndex];
|
||||
if (targetContainer._tiledItems.length === 0) return null;
|
||||
|
||||
return (direction === Direction.LEFT || direction === Direction.UP)
|
||||
? targetContainer._lastLeafWindowId()
|
||||
: targetContainer._firstLeafWindowId();
|
||||
}
|
||||
|
||||
/**
|
||||
* Move a window to the adjacent monitor in the given direction.
|
||||
*
|
||||
* The window is inserted at the "entry edge" of the target container:
|
||||
* - Moving RIGHT/DOWN → position 0 (near edge)
|
||||
* - Moving LEFT/UP → end of the container (far edge)
|
||||
*/
|
||||
private _moveWindowCrossMonitor(windowId: number, direction: Direction): void {
|
||||
const currentMonitorId = this._findMonitorIdForWindow(windowId);
|
||||
if (currentMonitorId === null) return;
|
||||
|
||||
const targetMonitorId = this._findAdjacentMonitorId(currentMonitorId, direction);
|
||||
if (targetMonitorId === null) return;
|
||||
|
||||
const currentMonitor = this._monitors.get(currentMonitorId)!;
|
||||
const wrapped = currentMonitor.getWindow(windowId);
|
||||
if (!wrapped) return;
|
||||
|
||||
const targetMonitor = this._monitors.get(targetMonitorId)!;
|
||||
const insertIndex = (direction === Direction.RIGHT || direction === Direction.DOWN) ? 0 : undefined;
|
||||
|
||||
currentMonitor.removeWindow(wrapped);
|
||||
targetMonitor.addWindow(wrapped, insertIndex);
|
||||
|
||||
this._tileMonitors();
|
||||
Logger.info(`Moved window ${windowId} to monitor ${targetMonitorId} (${direction})`);
|
||||
}
|
||||
|
||||
public printTreeStructure(): void {
|
||||
Logger.info("=".repeat(80));
|
||||
Logger.info("WINDOW TREE STRUCTURE");
|
||||
|
||||
Reference in New Issue
Block a user