summaryrefslogtreecommitdiff
path: root/app.ts
blob: 7e8cc7c70ce96b789a321fa954859dd96bacdc90 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
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)
    },
})