1

Modules/Ags: Deprecate module

This commit is contained in:
2025-07-05 18:11:20 +02:00
parent cf62da3667
commit a51e86b122
10 changed files with 14 additions and 0 deletions

View File

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