import { App, Astal, Gdk, Gtk } from "astal/gtk4"; import Hyprland from "./modules/Hyprland"; import Calendar from "./modules/Calendar"; import QuickView from "./modules/QuickView"; import SystemInfo from "./modules/SystemInfo"; import { CenterBox } from "astal/gtk4/widget"; const Bar = (gdkmonitor: Gdk.Monitor) => { const { TOP, LEFT, RIGHT } = Astal.WindowAnchor; return ( } centerWidget={} endWidget={ } > } > ); }; const cliHandler = (args: string[]): string => { return "Not implemented"; }; export default { Bar, cliHandler, };