ags/app.ts
Benjamin Palko b0b1755154 init project
2025-01-31 16:24:16 -05: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)
},
})