pantheon/modules/programs/ags/app.ts
2025-04-02 00:18:34 +08:00

10 lines
185 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)
},
})