coquille/app.ts

9 lines
178 B
TypeScript
Raw Normal View History

2025-02-11 17:51:09 +01:00
import { App } from "astal/gtk4";
2025-02-10 02:55:59 +01:00
import style from "./style.scss";
import Bar from "@/widget/Bar";
2025-02-10 02:55:59 +01:00
App.start({
css: style,
2025-02-11 17:51:09 +01:00
main: () => App.get_monitors().map(Bar),
2025-02-10 02:55:59 +01:00
});