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

import style from "./style.scss"

import Bar from "./widget/bar/Bar"

const windows = [
  Bar,
];

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