summaryrefslogtreecommitdiff
path: root/app.ts
diff options
context:
space:
mode:
authorJasper Ras <jras@hostnet.nl>2024-11-28 10:03:42 +0100
committerJasper Ras <jras@hostnet.nl>2024-11-28 10:03:42 +0100
commit7f729d18d9d85f914b6cb1f4df81207caeee4b61 (patch)
tree76bc911d06112b6ca7593fec83b4ed48bea8cde7 /app.ts
init
Diffstat (limited to 'app.ts')
-rw-r--r--app.ts10
1 files changed, 10 insertions, 0 deletions
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)
+ },
+})