ags/app.ts
Benjamin Palko bed410a904 commit
2025-04-04 10:32:59 -04:00

10 lines
180 B
TypeScript

import { App } from "astal/gtk4";
import style from "./style.scss";
import Bar from "./widget/Bar";
App.start({
css: style,
main() {
App.get_monitors().map(Bar);
},
});