summaryrefslogtreecommitdiff
path: root/examples/js/simple-bar/app.ts
blob: 05f043a887f8c4caa78c3d1805eca1c2bdc30577 (plain)
1
2
3
4
5
6
7
8
import { App } from "astal"
import style from "./style.scss"
import Bar from "./widget/Bar"

App.start({
    css: style,
    main: () => App.get_monitors().map(Bar),
})