Files
astal/app.ts
2025-11-10 09:26:56 +01:00

11 lines
173 B
TypeScript

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