summaryrefslogtreecommitdiff
path: root/app.ts
diff options
context:
space:
mode:
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..7e8cc7c
--- /dev/null
+++ b/app.ts
@@ -0,0 +1,10 @@
+import { App } from "astal/gtk4"
+import style from "./style.scss"
+import Bar from "./widget/Bar"
+
+App.start({
+ css: style,
+ main() {
+ App.get_monitors().map(Bar)
+ },
+})