Files
nixos/packages/ags/custom/app.ts
T
2025-05-13 19:53:24 -05:00

11 lines
185 B
TypeScript

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