dotfiles/homes/x86_64-linux/christopher@cobalt/niri/ags/app.ts
2025-12-15 12:02:08 +01:00

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