added ags essentials

This commit is contained in:
biscuit
2025-05-13 19:53:24 -05:00
parent cc179c30a3
commit 97f24c894b
8 changed files with 106 additions and 1 deletions
+10
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)
},
})