feat: add astal status bar

This commit is contained in:
2025-06-22 20:59:41 -07:00
parent adc21bdc69
commit 2ac6585c55
14 changed files with 606 additions and 8 deletions

10
astal/app.ts Normal file
View File

@@ -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);
},
});