ags: add ask popup, make notifications work(finally :3) and more improvements

This commit is contained in:
retrozinndev
2025-03-09 13:45:07 -03:00
parent 161c811841
commit 59ef5e4aa7
67 changed files with 2005 additions and 731 deletions
+2 -2
View File
@@ -7,7 +7,7 @@ import { CenterWindow } from "./window/CenterWindow";
import { FloatingNotifications } from "./window/FloatingNotifications";
import { GObject, register } from "astal";
import { LogoutMenu } from "./window/LogoutMenu";
import { Wallpaper } from "./window/Wallpaper";
import { AppsWindow } from "./window/AppsWindow";
/**
* get open windows / interact with windows(e.g.: close, open or toggle)
@@ -23,7 +23,7 @@ class WindowsClass extends GObject.Object {
this.setWindow("center-window", CenterWindow);
this.setWindow("logout-menu", LogoutMenu);
this.setWindow("floating-notifications", FloatingNotifications);
this.setWindow("wallpaper", Wallpaper);
this.setWindow("apps-window", AppsWindow);
}
public static setWindow(name: string, window: Gtk.Window): void {