nixos/config/ags/app.ts
2024-11-16 00:04:30 +04:00

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