From 7f729d18d9d85f914b6cb1f4df81207caeee4b61 Mon Sep 17 00:00:00 2001 From: Jasper Ras Date: Thu, 28 Nov 2024 10:03:42 +0100 Subject: init --- app.ts | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 app.ts (limited to 'app.ts') diff --git a/app.ts b/app.ts new file mode 100644 index 0000000..83217ef --- /dev/null +++ b/app.ts @@ -0,0 +1,10 @@ +import { App } from "astal/gtk3" +import style from "./style.scss" +import Bar from "./widget/Bar" + +App.start({ + css: style, + main() { + App.get_monitors().map(Bar) + }, +}) -- cgit v1.2.3