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"; const Bar = (gdkmonitor: Gdk.Monitor) => { const { TOP, LEFT, RIGHT } = Astal.WindowAnchor; return ( }> ); } const cliHandler = ( args: string[] ): string => { return 'Not implemented'; } export default { Bar, cliHandler };