[AGS] Redo basic setup

This commit is contained in:
2025-04-19 15:20:50 +02:00
parent a9c7b7d7ee
commit 78e472beb8
18 changed files with 806 additions and 0 deletions

View File

@@ -0,0 +1,23 @@
import { createQuickActionsMenu } from "./QuickActions";
import { GLib } from "astal";
import { Astal, Gdk, Gtk } from "astal/gtk3";
const Bar = (gdkmonitor: Gdk.Monitor) => {
return (
<window gdkmonitor={gdkmonitor}
cssClasses={["Bar"]}>
<box orientation={Gtk.Orientation.HORIZONTAL} spacing={10}>
<box>
</box>
<label>{windowTitle}</label>
<box>
<tray />
<button icon="quickaction" menu={quickActionMenu} />
</box>
</box>
</window>
);
}
export default Bar;