feat: initial commit

This commit is contained in:
tux
2025-05-31 14:00:56 +05:30
commit ec117cea00
19 changed files with 603 additions and 0 deletions

10
app.ts Normal file
View File

@@ -0,0 +1,10 @@
import { App } from "astal/gtk4";
import style from "./style.scss";
import windows from "./windows";
App.start({
css: style,
main() {
windows.map((win) => App.get_monitors().map(win));
},
});