home/natto/ags: init

Signed-off-by: Amneesh Singh <natto@weirdnatto.in>
This commit is contained in:
2024-06-01 17:59:52 +05:30
parent 00ea23f65c
commit c86fb8b6d3
37 changed files with 1658 additions and 33 deletions

View File

@@ -0,0 +1,41 @@
export const Padding = (name, { hexpand = true, vexpand = true } = {}) =>
Widget.EventBox({
hexpand,
vexpand,
can_focus: false,
setup: (w) => w.on("button-press-event", () => App.closeWindow(name)),
});
export const Revealer = ({
name,
child,
transition = "slide_down",
transitionDuration = 200,
}) =>
Widget.Box({
css: "padding: 1px;",
child: Widget.Revealer({
transition,
transitionDuration,
child: Widget.Box({
child,
}),
setup: (self) =>
self.hook(App, (_, window, visible) => {
if (window === name) self.reveal_child = visible;
}),
}),
});
export default ({ name, layout, ...props }) =>
Widget.Window({
name,
setup: (w) => w.keybind("Escape", () => App.closeWindow(name)),
visible: false,
keymode: "on-demand",
exclusivity: "normal",
layer: "top",
anchor: ["top", "bottom", "right", "left"],
child: layout,
...props,
});