11 lines
173 B
TypeScript
11 lines
173 B
TypeScript
import app from "ags/gtk4/app"
|
|
import style from "./style.scss"
|
|
import Bar from "./widget/Bar"
|
|
|
|
app.start({
|
|
css: style,
|
|
main() {
|
|
app.get_monitors().map(Bar)
|
|
},
|
|
})
|