12 lines
210 B
TypeScript
12 lines
210 B
TypeScript
import { App } from "astal/gtk3"
|
|
import style from "./style.css"
|
|
import Bar from "./widget/Bar"
|
|
|
|
App.start({
|
|
css: style,
|
|
main() {
|
|
Bar(0)
|
|
// Bar(1) // initialize other monitors
|
|
},
|
|
})
|