diff options
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/gtk4" +import style from "./style.scss" +import Bar from "./widget/Bar" + +App.start({ + css: style, + main() { + App.get_monitors().map(Bar) + }, +}) |