Update astal

Signed-off-by: Nikolaos Karaolidis <nick@karaolidis.com>
This commit is contained in:
2025-06-30 00:39:34 +01:00
parent b8c43dc5d8
commit 68e6eddd22
15 changed files with 132 additions and 114 deletions

View File

@@ -1,17 +1,19 @@
import { App, Astal, Gtk, Gdk } from "astal/gtk3";
import { Astal, Gtk, Gdk } from "ags/gtk3";
import Date from "./components/Date";
import Hidden from "./components/Hidden";
import app from "ags/gtk3/app";
export default (monitor: Gdk.Monitor) => (
<window
className="root"
visible
class="root"
gdkmonitor={monitor}
exclusivity={Astal.Exclusivity.IGNORE}
anchor={Astal.WindowAnchor.TOP}
application={App}
application={app}
>
<Hidden>
<box className="widgets" hexpand halign={Gtk.Align.CENTER}>
<box class="widgets" hexpand halign={Gtk.Align.CENTER}>
<Date />
</box>
</Hidden>