diff options
author | Jasper Ras <jras@hostnet.nl> | 2024-11-28 10:03:42 +0100 |
---|---|---|
committer | Jasper Ras <jras@hostnet.nl> | 2024-11-28 10:03:42 +0100 |
commit | 7f729d18d9d85f914b6cb1f4df81207caeee4b61 (patch) | |
tree | 76bc911d06112b6ca7593fec83b4ed48bea8cde7 /app.ts |
init
Diffstat (limited to 'app.ts')
-rw-r--r-- | app.ts | 10 |
1 files changed, 10 insertions, 0 deletions
@@ -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) + }, +}) |