dotfiles/modules/ags/config/app.ts

11 lines
197 B
TypeScript
Raw Normal View History

import { App } from "astal/gtk3"
import style from "./style.scss"
import LeftBar from "./widget/LeftBar"
App.start({
css: style,
main() {
App.get_monitors().map(LeftBar)
},
})