blob: 50e314e8351eb918d65e45a24a1ad2beedf866da (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
import { App } from "astal/gtk3"
import style from "./style.scss"
import OSD from "./osd/OSD"
App.start({
instanceName: "osd-example",
css: style,
main() {
App.get_monitors().map(OSD)
},
})
|