diff options
Diffstat (limited to 'app.ts')
| -rw-r--r-- | app.ts | 12 |
1 files changed, 12 insertions, 0 deletions
@@ -0,0 +1,12 @@ +import { App } from "astal/gtk3" +import style from "./style.scss" +import Bar from "./widget/Bar" + +App.start({ + css: style, + main() { + const monitors = App.get_monitors() + monitors.sort(it => it.geometry.x) + Bar(monitors[0]) + }, +}) |
