Dotfiles/.config/ags/app.ts
2025-01-28 10:57:40 +01:00

11 lines
185 B
TypeScript

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