From fe978092e8c13b337eb4e58b9b08b9ea5cc93413 Mon Sep 17 00:00:00 2001 From: 2 * r + 2 * t <61896496+soramanew@users.noreply.github.com> Date: Tue, 25 Mar 2025 12:59:51 +1100 Subject: sidebar: create dashboard --- src/modules/sidebar/index.tsx | 34 ++++++++++++++++++++++++++++++++++ 1 file changed, 34 insertions(+) create mode 100644 src/modules/sidebar/index.tsx (limited to 'src/modules/sidebar/index.tsx') diff --git a/src/modules/sidebar/index.tsx b/src/modules/sidebar/index.tsx new file mode 100644 index 0000000..3b62d82 --- /dev/null +++ b/src/modules/sidebar/index.tsx @@ -0,0 +1,34 @@ +import type { Monitor } from "@/services/monitors"; +import { bind, register, Variable } from "astal"; +import { App, Astal, Gtk, Widget } from "astal/gtk3"; +import Dashboard from "./dashboard"; + +@register() +export default class SideBar extends Widget.Window { + readonly shown: Variable = Variable("dashboard"); + + constructor({ monitor }: { monitor: Monitor }) { + super({ + application: App, + name: "sidebar", + namespace: "caelestia-sidebar", + monitor: monitor.id, + anchor: Astal.WindowAnchor.LEFT | Astal.WindowAnchor.TOP | Astal.WindowAnchor.BOTTOM, + exclusivity: Astal.Exclusivity.EXCLUSIVE, + // visible: false, + }); + + this.add( + + + + + + ); + } +} -- cgit v1.2.3-freya