ags-config/app.ts

11 lines
185 B
TypeScript
Raw Permalink Normal View History

2025-04-20 22:22:28 +02:00
import { App } from "astal/gtk4"
import style from "./style.scss"
import Bar from "./widget/Bar"
App.start({
css: style,
main() {
App.get_monitors().map(Bar)
},
})