initial commit

This commit is contained in:
2025-11-10 09:26:56 +01:00
commit d5a52891d0
7 changed files with 116 additions and 0 deletions

10
app.ts Normal file
View File

@@ -0,0 +1,10 @@
import app from "ags/gtk4/app"
import style from "./style.scss"
import Bar from "./widget/Bar"
app.start({
css: style,
main() {
app.get_monitors().map(Bar)
},
})