VoidShell/app.ts
2024-10-31 15:39:18 -06:00

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
},
})