import app from "ags/gtk4/app"; import style from "./style.scss"; import Overlay from "./widget/Overlay/Index"; import Bar from "./widget/Bar/Index"; import { niriEvent } from "./lib/niri"; app.start({ css: style, main() { niriEvent.connect(); app.connect("shutdown", () => niriEvent.disconnect()); Bar(); Overlay(); }, });