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...)
8 lines
182 B
TypeScript
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),
|
|
});
|