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";
|
2025-02-16 13:38:16 +01:00
|
|
|
import Bar from "@/components/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
|
|
|
});
|