summaryrefslogtreecommitdiff
path: root/app.ts
blob: b6bf451530f0138d190c61e54291ee42ebde57a8 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
import { App } from "astal/gtk4"
import style from "./style.scss"
import Bar from "./widget/Bar"

const windows = [
  Bar,
]

App.start({
  css: style,
  main() {
    windows.forEach(window => App.get_monitors().map(window))
  },
})