coquille/app.ts
Anthony Rodriguez 0bb9279c61
chore!: split-up in components and widgets
The project has been split up in "components" and "widgets". Here's
what's meant by both:

- Components: big building blocks to coquille shell (i.e. the bar
itself, the app launcher...)
- Widgets: smaller building blocks, contained in components and
composing them (i.e. workspaces widget, wifi status...)
2025-02-16 14:03:42 +01:00

8 lines
182 B
TypeScript

import { App } from "astal/gtk4";
import style from "./style.scss";
import Bar from "@/components/Bar";
App.start({
css: style,
main: () => App.get_monitors().map(Bar),
});