nixos/config/ags/app.ts

11 lines
185 B
TypeScript
Raw Normal View History

2024-11-15 23:24:58 +04:00
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)
},
})