coquille/app.ts
Anthony Rodriguez eb7c276914
feat: check for matcha availability
We want to check if matcha will be available both as a binary and as a
daemon, as it needs to be running in the background. If those are not
met, the idle inhibitor cannot be shown.
2025-02-16 13:05:34 +01:00

8 lines
178 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),
});