Compare commits

..

3 Commits

Author SHA1 Message Date
Renovate Bot 5ad78518ab chore(deps): update jest monorepo to v30.4.1
Build and Test / build (pull_request) Failing after 21s
Build and Test / release (pull_request) Has been skipped
2026-06-15 09:13:07 +00:00
Lucas Oskorep e49b923667 removing unused wingroup file and then updating for gnome 50 support
Build and Test / build (push) Failing after 20s
Build and Test / release (push) Has been skipped
2026-06-01 14:15:02 -04:00
Lucas Oskorep 75f2f107de fix: fullscreen/games should not be moved
Build and Test / build (push) Successful in 36s
Build and Test / release (push) Successful in 11s
2026-03-17 14:33:33 -04:00
5 changed files with 873 additions and 677 deletions
+2 -1
View File
@@ -5,7 +5,8 @@
"settings-schema": "org.gnome.shell.extensions.aerospike",
"shell-version": [
"48",
"49"
"49",
"50"
],
"gettext-domain": "aerospike@lucaso.io",
"url": "https://gitea.chaosdev.gay/lucasoskorep/aerospike@lucaso.io"
+1 -1
View File
@@ -1,6 +1,6 @@
{
"name": "aerospike",
"version": "0.2.2",
"version": "0.2.3",
"description": "Simple, Opinionated Tiling Window Manager for Gnome written in Typescript",
"type": "module",
"private": true,
+861 -675
View File
File diff suppressed because it is too large Load Diff
+9
View File
@@ -47,6 +47,10 @@ 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")
@@ -140,6 +144,11 @@ 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");
View File